mirror of
https://github.com/radareorg/radare2.git
synced 2025-04-03 18:11:38 +00:00
9 lines
181 B
Python
9 lines
181 B
Python
import r2pipe
|
|
r2 = r2pipe.open()
|
|
r2.cmd('aa')
|
|
print('\nFunction names:')
|
|
for func in r2.cmdj('aflj'):
|
|
print(func['name'])
|
|
print('\nDisassembly of entry0:')
|
|
print(r2.cmd('pdf'))
|