We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all,
I have tried a very simple problem, but failed. someone can help me?
00_angr_find.zip
by the way , I it seems ok if i try in console:
def solve(): # create project proj = angr.Project('00_angr_find') # entry point init_state = proj.factory.entry_state() # create simulation simulation = proj.factory.simgr(init_state) # expected address print_good = 0x0804868C # start explore simulation.explore(find=print_good) if simulation.found: solution = simulation.found[0] print('flag: ', solution.posix.dumps(0)) else: print('no solution') solve() flag: b'IICLTGRK'
The text was updated successfully, but these errors were encountered:
I'm sure this is a bug in how angr management uses/references SimStates... I do not have cycles to fix it right now, but we will get to it soon.
Sorry, something went wrong.
Thanks for reporting!
ltfish
No branches or pull requests
Question
Hi all,
I have tried a very simple problem, but failed. someone can help me?
00_angr_find.zip
by the way , I it seems ok if i try in console:
The text was updated successfully, but these errors were encountered: