├── .gitignore ├── LICENSE ├── README.md ├── bpf-test ├── README.md ├── bpf.bin ├── bpftest.py ├── crackme.pcap ├── crackme_mod.pcap ├── test_bpf.c ├── testeval.py └── testtool.py ├── bpf └── README.md ├── esilburner ├── README.md └── esilburner.py ├── esilstring ├── README.md └── esilstring.py ├── ggpack ├── Makefile ├── bin_ggpack.c ├── gglib.c ├── gglib.h ├── io_ggpack.c ├── r_ggpack.h └── scripts │ ├── ggexport.py │ ├── ggimport.py │ └── tests.py └── mipstring ├── README.md └── mipstring.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/README.md -------------------------------------------------------------------------------- /bpf-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/README.md -------------------------------------------------------------------------------- /bpf-test/bpf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/bpf.bin -------------------------------------------------------------------------------- /bpf-test/bpftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/bpftest.py -------------------------------------------------------------------------------- /bpf-test/crackme.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/crackme.pcap -------------------------------------------------------------------------------- /bpf-test/crackme_mod.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/crackme_mod.pcap -------------------------------------------------------------------------------- /bpf-test/test_bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/test_bpf.c -------------------------------------------------------------------------------- /bpf-test/testeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/testeval.py -------------------------------------------------------------------------------- /bpf-test/testtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf-test/testtool.py -------------------------------------------------------------------------------- /bpf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/bpf/README.md -------------------------------------------------------------------------------- /esilburner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/esilburner/README.md -------------------------------------------------------------------------------- /esilburner/esilburner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/esilburner/esilburner.py -------------------------------------------------------------------------------- /esilstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/esilstring/README.md -------------------------------------------------------------------------------- /esilstring/esilstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/esilstring/esilstring.py -------------------------------------------------------------------------------- /ggpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/Makefile -------------------------------------------------------------------------------- /ggpack/bin_ggpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/bin_ggpack.c -------------------------------------------------------------------------------- /ggpack/gglib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/gglib.c -------------------------------------------------------------------------------- /ggpack/gglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/gglib.h -------------------------------------------------------------------------------- /ggpack/io_ggpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/io_ggpack.c -------------------------------------------------------------------------------- /ggpack/r_ggpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/r_ggpack.h -------------------------------------------------------------------------------- /ggpack/scripts/ggexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/scripts/ggexport.py -------------------------------------------------------------------------------- /ggpack/scripts/ggimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/scripts/ggimport.py -------------------------------------------------------------------------------- /ggpack/scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/ggpack/scripts/tests.py -------------------------------------------------------------------------------- /mipstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/mipstring/README.md -------------------------------------------------------------------------------- /mipstring/mipstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacete/r2scripts/HEAD/mipstring/mipstring.py --------------------------------------------------------------------------------