mirror of
https://github.com/Cxbx-Reloaded/unicorn.git
synced 2024-12-13 05:56:09 +00:00
Merge pull request #285 from practicalswift/invalid_read_in_tb_flush_x86_64
Crash case: Invalid read of size 8 in tb_flush_x86_64 (#284)
This commit is contained in:
commit
d03edf2f16
27
tests/regress/invalid_read_in_tb_flush_x86_64.c
Normal file
27
tests/regress/invalid_read_in_tb_flush_x86_64.c
Normal file
@ -0,0 +1,27 @@
|
||||
#include <unicorn/unicorn.h>
|
||||
|
||||
#define HARDWARE_ARCHITECTURE UC_ARCH_X86
|
||||
#define HARDWARE_MODE UC_MODE_64
|
||||
|
||||
#define MEMORY_STARTING_ADDRESS 0x1000000
|
||||
#define MEMORY_SIZE 2 * 1024 * 1024
|
||||
#define MEMORY_PERMISSIONS UC_PROT_READ
|
||||
|
||||
#define BINARY_CODE "\x90"
|
||||
|
||||
int main(int argc, char **argv, char **envp) {
|
||||
uc_engine *uc;
|
||||
if (uc_open(HARDWARE_ARCHITECTURE, HARDWARE_MODE, &uc)) {
|
||||
printf("uc_open(…) failed\n");
|
||||
return 1;
|
||||
}
|
||||
uc_mem_map(uc, MEMORY_STARTING_ADDRESS, MEMORY_SIZE, MEMORY_PERMISSIONS);
|
||||
if (uc_mem_write(uc, MEMORY_STARTING_ADDRESS, BINARY_CODE, sizeof(BINARY_CODE) - 1)) {
|
||||
printf("uc_mem_write(…) failed\n");
|
||||
return 1;
|
||||
}
|
||||
printf("uc_emu_start(…)\n");
|
||||
uc_emu_start(uc, MEMORY_STARTING_ADDRESS, MEMORY_STARTING_ADDRESS + sizeof(BINARY_CODE) - 1, 0, 20);
|
||||
printf("done\n");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user