├── .idea ├── .gitignore ├── .name ├── modules.xml ├── shellcodeloading.iml └── vcs.xml ├── 1.jpg ├── README.md ├── aes └── aseCode.go ├── checkSandbox └── checkSandbox.go ├── go.mod ├── output └── compileShellGo.bat └── shellcodeloading.go /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | shellcode.go -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/shellcodeloading.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/.idea/shellcodeloading.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/1.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/README.md -------------------------------------------------------------------------------- /aes/aseCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/aes/aseCode.go -------------------------------------------------------------------------------- /checkSandbox/checkSandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/checkSandbox/checkSandbox.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module shellcodeloading 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /output/compileShellGo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/output/compileShellGo.bat -------------------------------------------------------------------------------- /shellcodeloading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lmg66/shellcodeloading/HEAD/shellcodeloading.go --------------------------------------------------------------------------------