This commit is contained in:
firmianay
2017-12-03 22:11:11 +08:00
parent 5089993f80
commit 571cc031eb
5 changed files with 49 additions and 12 deletions

View File

@ -1,10 +1,10 @@
import angr
main = 0x004007da
find = 0x00404fc1
find = 0x00404fda # leave;ret
avoid = 0x00400590 # puts@plt
p = angr.Project('./angrybird_mod')
p = angr.Project('./angrybird_org')
init = p.factory.blank_state(addr=main)
pg = p.factory.simgr(init, threads=4)
ex = pg.explore(find=find, avoid=avoid)