Created
February 14, 2017 11:37
-
-
Save hyuunnn/4bb3fb859e93f4c3025ef8d891096864 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import angr | |
p = angr.Project("./angrybird") | |
init = p.factory.blank_state(addr=0x4007da) | |
path_group = p.factory.path_group(init,threads=8) | |
aa = path_group.explore(find=0x404fda, avoid=0x404f97) | |
print path_group.found[0].state.posix.dumps(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment