├── .gitignore ├── LICENSE ├── README.md ├── ida2pwntools.py └── screenshot ├── 1wait_for_debugger.png ├── 2start_plugin.png ├── 3attached_in_pwntools.png └── 4attached_in_ida.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/README.md -------------------------------------------------------------------------------- /ida2pwntools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/ida2pwntools.py -------------------------------------------------------------------------------- /screenshot/1wait_for_debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/screenshot/1wait_for_debugger.png -------------------------------------------------------------------------------- /screenshot/2start_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/screenshot/2start_plugin.png -------------------------------------------------------------------------------- /screenshot/3attached_in_pwntools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/screenshot/3attached_in_pwntools.png -------------------------------------------------------------------------------- /screenshot/4attached_in_ida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anic/ida2pwntools/HEAD/screenshot/4attached_in_ida.png --------------------------------------------------------------------------------