glibc/tests/Regression/double_free_exploit/exploit2.c
Sergey Kolosov 823c0aee76 CI Tests: add fmf test plan
Resolves: RHEL-65327
2025-01-08 19:01:11 +00:00

15 lines
399 B
C

#include <stdlib.h>
#include <stdio.h>
int main()
{
int *a,*b,*c,*d,*e;
b=malloc(8);
c=malloc(10); /* Essential so we don't coalesce */
free(b);
free(b); /* this should die */
d=malloc(8); /* we'll get the old b block */
e=malloc(8); /* the double free flaw means we get the old b block again! */
if (d==e) { printf("FAIL: Exploitable double free behaviour\n"); }
}