├── README.md ├── base64Encode.py ├── shellcode20.exe ├── shellcode30.exe ├── shellcode35.exe └── shellcode40.exe /README.md: -------------------------------------------------------------------------------- 1 | # C--Shellcode 2 | python ShellCode Loader (Cobaltstrike&Metasploit) 3 | usage:http://hone.cool/2019/11/26/%E5%85%8D%E6%9D%80-C-Shellcode%E5%8A%A0%E8%BD%BD%E5%99%A8 4 | -------------------------------------------------------------------------------- /base64Encode.py: -------------------------------------------------------------------------------- 1 | import base64 2 | 3 | bs64=base64.b64encode("0xfc, 0xe8, 0x89, 0x00, 0x00, 0x00") 4 | print bs64 -------------------------------------------------------------------------------- /shellcode20.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneHone/C--Shellcode/042784ef439e284e19316e8582caf0e7701de8a7/shellcode20.exe -------------------------------------------------------------------------------- /shellcode30.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneHone/C--Shellcode/042784ef439e284e19316e8582caf0e7701de8a7/shellcode30.exe -------------------------------------------------------------------------------- /shellcode35.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneHone/C--Shellcode/042784ef439e284e19316e8582caf0e7701de8a7/shellcode35.exe -------------------------------------------------------------------------------- /shellcode40.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneHone/C--Shellcode/042784ef439e284e19316e8582caf0e7701de8a7/shellcode40.exe --------------------------------------------------------------------------------