├── .gitignore ├── Makefile ├── README.md ├── debug.h ├── exploit.c ├── exploit.h ├── file_io.c ├── file_io.h ├── main.c ├── shellcode ├── Makefile └── shellcode.S └── symbols.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/README.md -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/debug.h -------------------------------------------------------------------------------- /exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/exploit.c -------------------------------------------------------------------------------- /exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/exploit.h -------------------------------------------------------------------------------- /file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/file_io.c -------------------------------------------------------------------------------- /file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/file_io.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/main.c -------------------------------------------------------------------------------- /shellcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/shellcode/Makefile -------------------------------------------------------------------------------- /shellcode/shellcode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/shellcode/shellcode.S -------------------------------------------------------------------------------- /symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghassani/qc-tz-es-activated-exploit/HEAD/symbols.h --------------------------------------------------------------------------------