glibc/tests/Regression/double_free_exploit/exploit2.c
Martin Coufal 82e9f5dfc6 CI Tests: fix /tests/Regression/double_free_exploit
* add missing casts to int
* add missing includes
2024-02-02 14:30:22 +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"); }
}