├── LICENSE ├── README.md ├── __init__.py ├── aslrMods.py ├── badBytes.py ├── config.cfg ├── gadgetChecker.py ├── gadgets.py ├── genCode.py ├── helpers.py ├── lists.py ├── parseconf.py ├── rop rocket_screenshots ├── aslr_bypass1.png ├── aslr_bypass2.png ├── captureESP.png ├── logo2024.png ├── logo2024_90324.png ├── rop_rocket.png ├── screenshot1.jpg ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png ├── screenshot6.png ├── screenshot7.png └── screenshot8.png ├── rop2.py ├── rop2FuncTester - Copy.py ├── rop2FuncTester.py ├── rop_pat.py ├── rop_tester_syscall.zip ├── ropemu.py ├── setup.py └── ui.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from parseconf import * 3 | 4 | -------------------------------------------------------------------------------- /aslrMods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/aslrMods.py -------------------------------------------------------------------------------- /badBytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/badBytes.py -------------------------------------------------------------------------------- /config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/config.cfg -------------------------------------------------------------------------------- /gadgetChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/gadgetChecker.py -------------------------------------------------------------------------------- /gadgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/gadgets.py -------------------------------------------------------------------------------- /genCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/genCode.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/helpers.py -------------------------------------------------------------------------------- /lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/lists.py -------------------------------------------------------------------------------- /parseconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/parseconf.py -------------------------------------------------------------------------------- /rop rocket_screenshots/aslr_bypass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/aslr_bypass1.png -------------------------------------------------------------------------------- /rop rocket_screenshots/aslr_bypass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/aslr_bypass2.png -------------------------------------------------------------------------------- /rop rocket_screenshots/captureESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/captureESP.png -------------------------------------------------------------------------------- /rop rocket_screenshots/logo2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/logo2024.png -------------------------------------------------------------------------------- /rop rocket_screenshots/logo2024_90324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/logo2024_90324.png -------------------------------------------------------------------------------- /rop rocket_screenshots/rop_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/rop_rocket.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot2.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot3.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot4.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot5.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot6.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot7.png -------------------------------------------------------------------------------- /rop rocket_screenshots/screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop rocket_screenshots/screenshot8.png -------------------------------------------------------------------------------- /rop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop2.py -------------------------------------------------------------------------------- /rop2FuncTester - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop2FuncTester - Copy.py -------------------------------------------------------------------------------- /rop2FuncTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop2FuncTester.py -------------------------------------------------------------------------------- /rop_pat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop_pat.py -------------------------------------------------------------------------------- /rop_tester_syscall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/rop_tester_syscall.zip -------------------------------------------------------------------------------- /ropemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/ropemu.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/setup.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bw3ll/ROP_ROCKET/HEAD/ui.py --------------------------------------------------------------------------------