2015-08-24 11:00:54 +00:00
|
|
|
#include <unicorn/unicorn.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define UC_BUG_WRITE_SIZE 13000
|
2015-08-28 10:21:36 +00:00
|
|
|
#define UC_BUG_WRITE_ADDR 0x1000
|
2015-08-24 11:00:54 +00:00
|
|
|
|
2015-08-28 10:21:36 +00:00
|
|
|
int main()
|
|
|
|
{
|
2015-08-24 12:21:57 +00:00
|
|
|
int size;
|
|
|
|
uint8_t *buf;
|
2015-09-05 03:20:32 +00:00
|
|
|
uc_engine *uc;
|
2015-08-26 13:29:28 +00:00
|
|
|
uc_err err = uc_open (UC_ARCH_X86, UC_MODE_64, &uc);
|
2015-08-24 12:21:57 +00:00
|
|
|
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);
|
2015-08-30 04:02:33 +00:00
|
|
|
if (!uc_mem_map (uc, UC_BUG_WRITE_ADDR, size, UC_PROT_ALL)) {
|
|
|
|
uc_mem_write (uc, UC_BUG_WRITE_ADDR, buf, size);
|
2015-08-24 12:21:57 +00:00
|
|
|
}
|
2015-08-26 13:29:28 +00:00
|
|
|
uc_close(uc);
|
2015-08-24 12:21:57 +00:00
|
|
|
return 0;
|
2015-08-24 11:00:54 +00:00
|
|
|
}
|