Skip to content

Instantly share code, notes, and snippets.

@hyuunnn
Created February 14, 2017 11:37
Show Gist options
  • Save hyuunnn/4bb3fb859e93f4c3025ef8d891096864 to your computer and use it in GitHub Desktop.
Save hyuunnn/4bb3fb859e93f4c3025ef8d891096864 to your computer and use it in GitHub Desktop.
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