Commit Graph

270 Commits

Author SHA1 Message Date
Chris Eagle
7f63d76908 add comments to source for ro_mem_test.c 2015-08-28 12:58:53 -07:00
mothran
feb8ced027 fixed the FPIP updates to correctly only work with non-control instructions and make sure the pc addr is correct 2015-08-28 10:39:11 -07:00
Sean Heelan
340acf9176 Added a regression script for issue #65 2015-08-29 00:31:27 +07:00
Nguyen Anh Quynh
10464408a5 Merge branch 'const-gen' of https://github.com/lunixbochs/unicorn into lunixbochs-const-gen 2015-08-29 00:42:38 +08:00
Nguyen Anh Quynh
3f771abe73 python: add sample_all.sh 2015-08-29 00:26:34 +08:00
Nguyen Anh Quynh
d3de7aa567 samples: add sample code for hooking SYSCALL instruction in sample_x86.c 2015-08-29 00:22:11 +08:00
Nguyen Anh Quynh
162728c1b1 samples: add shellcode to sample_all.sh 2015-08-29 00:02:52 +08:00
Nguyen Anh Quynh
110dc9c248 regress: fix nr_mem_test.c 2015-08-28 22:56:25 +08:00
Ryan Hileman
40ba1ea1b0 improve const generator; emit unicorn.h consts 2015-08-28 07:32:25 -07:00
Nguyen Anh Quynh
c7c5226142 regress: code style 2015-08-28 22:23:44 +08:00
Nguyen Anh Quynh
07286c811d regress: add nr_mem_test.c to Makefile 2015-08-28 22:23:26 +08:00
Nguyen Anh Quynh
cb2da12e94 Merge branch 'mem_map_ex' of https://github.com/cseagle/unicorn into mem_map_ex 2015-08-28 22:20:43 +08:00
Nguyen Anh Quynh
b57d120a72 indentation 2015-08-28 22:20:14 +08:00
Nguyen Anh Quynh
6e75340363 regress: fix Makefile & ro_mem_test.c 2015-08-28 18:55:58 +08:00
Chris Eagle
c8d64cfdb0 Add regress check to handle non-readable memory 2015-08-28 03:52:51 -07:00
Nguyen Anh Quynh
b69180ad5a Merge branch 'mem_map_ex' of https://github.com/cseagle/unicorn into cseagle-mem_map_ex 2015-08-28 18:47:18 +08:00
Chris Eagle
3452b47f7c Add code to handle non-readable memory 2015-08-28 03:42:25 -07:00
Nguyen Anh Quynh
b0ba598981 update .gitignore 2015-08-28 18:27:55 +08:00
Nguyen Anh Quynh
d957d1efee regress: fix code style 2015-08-28 18:21:36 +08:00
mothran
933ef379b4 restricted fpip updates to only non-control instructions 2015-08-28 03:19:10 -07:00
Nguyen Anh Quynh
5de0d5ca70 regress: fix an warning in map_write.c 2015-08-28 18:15:38 +08:00
Nguyen Anh Quynh
3b5df362d7 chmod -x <some source code> 2015-08-28 18:12:56 +08:00
Nguyen Anh Quynh
96a274c4aa Merge branch 'mem_map_ex' of https://github.com/cseagle/unicorn into cseagle-mem_map_ex 2015-08-28 18:11:10 +08:00
Chris Eagle
aa509cc00f delete redundant function 2015-08-28 02:20:56 -07:00
Chris Eagle
adc254cc74 Roll back uc_mem_protect changes 2015-08-28 01:37:49 -07:00
Nguyen Anh Quynh
4a1c5ff071 x86: verify until address early when translating block in frontend. this should fix issue #63 2015-08-28 16:06:06 +08:00
Chris Eagle
71ddad9474 Doc cleanup 2015-08-28 00:30:50 -07:00
Chris Eagle
4f11d88d28 Makefile cleanup 2015-08-28 00:17:33 -07:00
Chris Eagle
b31bb9638c cleanup for pull request 2015-08-28 00:00:09 -07:00
Chris Eagle
a4b87ed840 Merge branch 'master' into mem_map_ex 2015-08-27 23:33:02 -07:00
Chris Eagle
ef1d70a514 Merge remote-tracking branch 'upstream/master' 2015-08-27 23:32:07 -07:00
Chris Eagle
9530b2daff Remove MemoryBlock struct by consolidating in MemoryRegion. add new API uc_mem_protect. Add regress/mem_protect.c. Drop UC_PROT_EXEC for time being 2015-08-27 23:19:32 -07:00
mothran
59b09a71bf first shot at getting FPIP working, need to remove all FP control instructions from being updated 2015-08-27 21:54:23 -07:00
Nguyen Anh Quynh
adec227dad Merge pull request #64 from lunixbochs/go-bindings
add Go bindings
2015-08-28 12:22:46 +08:00
Ryan Hileman
c5bcb02847 add Go bindings 2015-08-27 21:22:30 -07:00
Chris Eagle
bf32753c29 Merge branch 'master' into mem_map_ex 2015-08-27 19:17:06 -07:00
Chris Eagle
527f4e7ff4 Merge remote-tracking branch 'upstream/master' 2015-08-27 19:16:15 -07:00
Chris Eagle
140e9f9ae2 fix perms on files 2015-08-27 18:04:05 -07:00
Chris Eagle
686acb7e6e Detect all occurences of write to read only page. Add callback capability on write to read only. Add new error type UC_ERR_MEM_WRITE_RO and new access type UC_MEM_WRITE_RO for use in callback 2015-08-27 18:03:17 -07:00
Nguyen Anh Quynh
b335cf016c do not generate basic-block callback when translation is broken in the middle due to full cache (all the remaining archs) 2015-08-27 21:09:00 +08:00
Chris Eagle
f357f4de21 Improve status reporting in regress/ro_mem_test.c 2015-08-26 23:35:23 -07:00
Chris Eagle
980ec8b087 Demonstrate continued correct behavior on invalid memory access 2015-08-26 23:21:41 -07:00
Chris Eagle
5264fc7026 Merge branch 'master' into mem_map_ex 2015-08-26 21:54:00 -07:00
Chris Eagle
d31b580055 Merge remote-tracking branch 'upstream/master' 2015-08-26 21:51:36 -07:00
Chris Eagle
a5cc88d00d Eliminate clang warnings in ro_mem_test.c 2015-08-26 21:47:15 -07:00
Chris Eagle
9442b46601 regress/Makefile conflict resolution 2015-08-26 21:38:24 -07:00
Chris Eagle
dec793e984 setup stack pointer in ro_mem_test 2015-08-26 21:28:36 -07:00
Chris Eagle
33821727b3 Merge branch 'java_dev' 2015-08-26 20:00:28 -07:00
Nguyen Anh Quynh
2fcc8528ae chmod -x SampleNetworkAuditing.java 2015-08-27 10:47:49 +08:00
Nguyen Anh Quynh
3d650fec92 Merge pull request #62 from cseagle/java_dev
Port sample_network_auditing.py to java
2015-08-27 10:46:26 +08:00