unicorn/tests/regress/map_crash.c

33 lines
719 B
C
Raw Normal View History

2015-08-24 14:00:54 +03:00
#include <unicorn/unicorn.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define UC_BUG_WRITE_SIZE 13000
2015-08-28 13:21:36 +03:00
#define UC_BUG_WRITE_ADDR 0x1000
2015-08-24 14:00:54 +03:00
2015-08-28 13:21:36 +03:00
int main()
{
int size;
uint8_t *buf;
uc_engine *uc;
uc_err err = uc_open (UC_ARCH_X86, UC_MODE_64, &uc);
if (err) {
fprintf (stderr, "Cannot initialize unicorn\n");
return 1;
}
size = UC_BUG_WRITE_SIZE;
buf = malloc (size);
if (!buf) {
fprintf (stderr, "Cannot allocate\n");
return 1;
}
memset (buf, 0, size);
if (!uc_mem_map (uc, UC_BUG_WRITE_ADDR, size, UC_PROT_ALL)) {
uc_mem_write (uc, UC_BUG_WRITE_ADDR, buf, size);
}
uc_close(uc);
2020-05-02 13:18:18 +03:00
free(buf);
return 0;
2015-08-24 14:00:54 +03:00
}