├── .gitignore ├── GetComputerInfo.ps1 ├── LICENSE.md ├── README.md ├── raw2src.py ├── stub-c ├── config.h ├── implant.c ├── implant.h ├── resource.h ├── stub.rc ├── stub.sln ├── stub.vcxproj └── stub.vcxproj.filters └── stub-masm-exe ├── makeit.bat └── stub-exe.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/.gitignore -------------------------------------------------------------------------------- /GetComputerInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/GetComputerInfo.ps1 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/README.md -------------------------------------------------------------------------------- /raw2src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/raw2src.py -------------------------------------------------------------------------------- /stub-c/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/config.h -------------------------------------------------------------------------------- /stub-c/implant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/implant.c -------------------------------------------------------------------------------- /stub-c/implant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/implant.h -------------------------------------------------------------------------------- /stub-c/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/resource.h -------------------------------------------------------------------------------- /stub-c/stub.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/stub.rc -------------------------------------------------------------------------------- /stub-c/stub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/stub.sln -------------------------------------------------------------------------------- /stub-c/stub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/stub.vcxproj -------------------------------------------------------------------------------- /stub-c/stub.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-c/stub.vcxproj.filters -------------------------------------------------------------------------------- /stub-masm-exe/makeit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-masm-exe/makeit.bat -------------------------------------------------------------------------------- /stub-masm-exe/stub-exe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stufus/shellcode-implant-stub/HEAD/stub-masm-exe/stub-exe.asm --------------------------------------------------------------------------------