Files
frida-frida-python/README.md
T
Ole André Vadla Ravnås d8dae52512 Add a stub README.md
2013-12-29 17:10:18 +01:00

200 B

Frida lets you build your own reverse-engineering tools in a few lines of Python.

import frida
p = frida.attach("skype")
for m in p.enumerate_modules():
    print m.enumerate_exports()