├── .gitignore ├── Makefile ├── README.md ├── main.go └── shellcode ├── Makefile ├── README.md ├── lpc1343fhn33.syms ├── main.c └── shellcode.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/main.go -------------------------------------------------------------------------------- /shellcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/shellcode/Makefile -------------------------------------------------------------------------------- /shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/shellcode/README.md -------------------------------------------------------------------------------- /shellcode/lpc1343fhn33.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/shellcode/lpc1343fhn33.syms -------------------------------------------------------------------------------- /shellcode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/shellcode/main.c -------------------------------------------------------------------------------- /shellcode/shellcode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/lpc13-exploit/HEAD/shellcode/shellcode.ld --------------------------------------------------------------------------------