├── README.md ├── tut0-hello ├── Makefile └── hello.c ├── tut1-patchme ├── Makefile └── patchme.S ├── tut2-memory ├── Makefile └── xor.c ├── tut3-esil ├── Makefile └── esil.S └── tut4-exploit ├── Makefile └── hackme.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/README.md -------------------------------------------------------------------------------- /tut0-hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut0-hello/Makefile -------------------------------------------------------------------------------- /tut0-hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut0-hello/hello.c -------------------------------------------------------------------------------- /tut1-patchme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut1-patchme/Makefile -------------------------------------------------------------------------------- /tut1-patchme/patchme.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut1-patchme/patchme.S -------------------------------------------------------------------------------- /tut2-memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut2-memory/Makefile -------------------------------------------------------------------------------- /tut2-memory/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut2-memory/xor.c -------------------------------------------------------------------------------- /tut3-esil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut3-esil/Makefile -------------------------------------------------------------------------------- /tut3-esil/esil.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut3-esil/esil.S -------------------------------------------------------------------------------- /tut4-exploit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut4-exploit/Makefile -------------------------------------------------------------------------------- /tut4-exploit/hackme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosource/radare2-explorations-binaries/HEAD/tut4-exploit/hackme.c --------------------------------------------------------------------------------