mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
9 lines
200 B
Markdown
9 lines
200 B
Markdown
Frida lets you build your own reverse-engineering tools in a few lines of Python.
|
|
|
|
```python
|
|
import frida
|
|
p = frida.attach("skype")
|
|
for m in p.enumerate_modules():
|
|
print m.enumerate_exports()
|
|
```
|