* intermediate example commit * Added more state_explore examples (w/ new_symbolic_buffer) * Actually comment out verbosity * rename * Add comment mentioning symbolicate_buffer * Update comments * Fix issue with limited exploration * Clear up wording * Update descriptions * Remove reference to symbolicate_buffer * Clean up state_explore.c header * move .c to src/
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
|
|
import sys
|
|
from manticore import Manticore
|
|
|
|
'''
|
|
Demonstrates the ability to guide Manticore's state exploration. In this case,
|
|
abandoning a state we're no longer interested in.
|
|
|
|
Usage:
|
|
|
|
$ gcc -static -g src/state_explore.c -o state_explore # -static is optional
|
|
$ ADDRESS=0x$(objdump -S state_explore | grep -A 1 'value == 0x41' |
|
|
tail -n 1 | sed 's|^\s*||g' | cut -f1 -d:)
|
|
$ python ./state_control.py state_explore $ADDRESS
|
|
|
|
'''
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) < 3:
|
|
sys.stderr.write("Usage: %s [binary] [address]\n"%(sys.argv[0],))
|
|
sys.exit(2)
|
|
|
|
m = Manticore(sys.argv[1])
|
|
|
|
# Uncomment to see debug output
|
|
#m.verbosity = 2
|
|
|
|
# Set to the address of the conditional at state_explore.c:38, which will be
|
|
# abandoned. If line 36 of this script is commented out, Manticore will
|
|
# explore all reachable states.
|
|
to_abandon = int(sys.argv[2], 0)
|
|
|
|
@m.hook(to_abandon)
|
|
def explore(state):
|
|
print "Abandoning state at PC: ", hex(state.cpu.PC)
|
|
state.abandon()
|
|
|
|
print "Adding hook to: {:x}".format(to_abandon)
|
|
|
|
m.run()
|