├── .gitignore ├── LICENSE ├── README.md ├── docs ├── osx-mman.h └── osx-syscall.h ├── loader ├── contained-py.py └── loader.py └── shellcode ├── system-execve-order-file.txt └── system-execve-shell.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/README.md -------------------------------------------------------------------------------- /docs/osx-mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/docs/osx-mman.h -------------------------------------------------------------------------------- /docs/osx-syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/docs/osx-syscall.h -------------------------------------------------------------------------------- /loader/contained-py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/loader/contained-py.py -------------------------------------------------------------------------------- /loader/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/loader/loader.py -------------------------------------------------------------------------------- /shellcode/system-execve-order-file.txt: -------------------------------------------------------------------------------- 1 | _main1 2 | -------------------------------------------------------------------------------- /shellcode/system-execve-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/C-OSX-Shellcode/HEAD/shellcode/system-execve-shell.c --------------------------------------------------------------------------------