├── .github └── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── assets └── logo.png ├── examples ├── remote_code_execution.py ├── remote_command_execution.py └── trap_payload ├── requirements.txt └── src ├── application.c ├── gadgets.S ├── main.c └── protocol.h /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @redcanaryco/team-community 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/assets/logo.png -------------------------------------------------------------------------------- /examples/remote_code_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/examples/remote_code_execution.py -------------------------------------------------------------------------------- /examples/remote_command_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/examples/remote_command_execution.py -------------------------------------------------------------------------------- /examples/trap_payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/examples/trap_payload -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/src/application.c -------------------------------------------------------------------------------- /src/gadgets.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/src/gadgets.S -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/src/main.c -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/exploit-primitive-playground/HEAD/src/protocol.h --------------------------------------------------------------------------------