├── .gitignore ├── .gitmodules ├── README.md ├── cc_shellcode.sln ├── cc_shellcode.v12.suo ├── cc_shellcode ├── cc_shellcode.vcxproj ├── cc_shellcode.vcxproj.filters ├── cc_shellcode.vcxproj.user └── src │ └── main.cpp └── imports.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/README.md -------------------------------------------------------------------------------- /cc_shellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode.sln -------------------------------------------------------------------------------- /cc_shellcode.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode.v12.suo -------------------------------------------------------------------------------- /cc_shellcode/cc_shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode/cc_shellcode.vcxproj -------------------------------------------------------------------------------- /cc_shellcode/cc_shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode/cc_shellcode.vcxproj.filters -------------------------------------------------------------------------------- /cc_shellcode/cc_shellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode/cc_shellcode.vcxproj.user -------------------------------------------------------------------------------- /cc_shellcode/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/cc_shellcode/src/main.cpp -------------------------------------------------------------------------------- /imports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k33nteam/cc-shellcoding/HEAD/imports.def --------------------------------------------------------------------------------