├── README.md ├── angr ├── babyre_solver.py └── bomb_lab_solver.py ├── idapython_codepath_tracer ├── README.md ├── crunchatize.py └── tracer.py ├── idapython_gdbinit_gen ├── README.md └── gdbinit_gen.py ├── misc ├── backdoor_gcp.py ├── heap_unlink.py ├── heapdump.gdbinit └── runc-cve-2019-5736.c ├── pin_play ├── basic_block.cpp └── ghetto_strace.cpp └── stegoextract ├── README.md ├── extractstego.py └── writestego.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/README.md -------------------------------------------------------------------------------- /angr/babyre_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/angr/babyre_solver.py -------------------------------------------------------------------------------- /angr/bomb_lab_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/angr/bomb_lab_solver.py -------------------------------------------------------------------------------- /idapython_codepath_tracer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/idapython_codepath_tracer/README.md -------------------------------------------------------------------------------- /idapython_codepath_tracer/crunchatize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/idapython_codepath_tracer/crunchatize.py -------------------------------------------------------------------------------- /idapython_codepath_tracer/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/idapython_codepath_tracer/tracer.py -------------------------------------------------------------------------------- /idapython_gdbinit_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/idapython_gdbinit_gen/README.md -------------------------------------------------------------------------------- /idapython_gdbinit_gen/gdbinit_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/idapython_gdbinit_gen/gdbinit_gen.py -------------------------------------------------------------------------------- /misc/backdoor_gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/misc/backdoor_gcp.py -------------------------------------------------------------------------------- /misc/heap_unlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/misc/heap_unlink.py -------------------------------------------------------------------------------- /misc/heapdump.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/misc/heapdump.gdbinit -------------------------------------------------------------------------------- /misc/runc-cve-2019-5736.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/misc/runc-cve-2019-5736.c -------------------------------------------------------------------------------- /pin_play/basic_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/pin_play/basic_block.cpp -------------------------------------------------------------------------------- /pin_play/ghetto_strace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/pin_play/ghetto_strace.cpp -------------------------------------------------------------------------------- /stegoextract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/stegoextract/README.md -------------------------------------------------------------------------------- /stegoextract/extractstego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/stegoextract/extractstego.py -------------------------------------------------------------------------------- /stegoextract/writestego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ancat/scripts/HEAD/stegoextract/writestego.py --------------------------------------------------------------------------------