├── 1 - Simple Loader └── SimpleLoader │ ├── SimpleLoader.cpp │ ├── SimpleLoader.sln │ ├── SimpleLoader.vcxproj │ ├── SimpleLoader.vcxproj.filters │ └── SimpleLoader.vcxproj.user ├── 2 - Encoding ├── 1 - Base64 Loading │ ├── Base64 │ │ ├── Base64.cpp │ │ ├── Base64.sln │ │ ├── Base64.vcxproj │ │ ├── Base64.vcxproj.filters │ │ └── Base64.vcxproj.user │ ├── base64_Encoder.py │ └── calc.bin ├── 2 - Custom Encoding │ ├── CustomEncoding │ │ ├── CustomEncoding.cpp │ │ ├── CustomEncoding.sln │ │ ├── CustomEncoding.vcxproj │ │ ├── CustomEncoding.vcxproj.filters │ │ └── CustomEncoding.vcxproj.user │ ├── calc.bin │ └── customEncoder.py ├── 3 - UUID shellcode │ ├── UUIDs │ │ ├── UUIDs.cpp │ │ ├── UUIDs.sln │ │ ├── UUIDs.vcxproj │ │ ├── UUIDs.vcxproj.filters │ │ └── UUIDs.vcxproj.user │ ├── bin2uuids.py │ └── calc.bin ├── 4 - IPv4 shellcode │ ├── IPfuscation │ │ ├── IPfuscation.cpp │ │ ├── IPfuscation.sln │ │ ├── IPfuscation.vcxproj │ │ ├── IPfuscation.vcxproj.filters │ │ └── IPfuscation.vcxproj.user │ ├── bin2ipv4.py │ └── calc.bin └── 5 - MAC shellcode │ ├── MACshellcode │ ├── MACshellcode.cpp │ ├── MACshellcode.sln │ ├── MACshellcode.vcxproj │ ├── MACshellcode.vcxproj.filters │ └── MACshellcode.vcxproj.user │ ├── bin2mac.py │ └── calc.bin ├── 3 - Encrypting └── 1 - AES │ ├── AES │ ├── AES.cpp │ ├── AES.sln │ ├── AES.vcxproj │ ├── AES.vcxproj.filters │ └── AES.vcxproj.user │ ├── AES_cryptor.py │ └── calc.bin ├── 4 - Fileless Shellcode ├── 1 - Using Sockets │ ├── FilelessShellcode.cpp │ ├── FilelessShellcode.sln │ ├── FilelessShellcode.vcxproj │ ├── FilelessShellcode.vcxproj.filters │ └── FilelessShellcode.vcxproj.user └── 2 - Using WinHttp │ └── WinhttpShellcode │ ├── WinhttpShellcode.cpp │ ├── WinhttpShellcode.sln │ ├── WinhttpShellcode.vcxproj │ ├── WinhttpShellcode.vcxproj.filters │ └── WinhttpShellcode.vcxproj.user ├── LICENSE ├── calc.bin └── format.py /1 - Simple Loader/SimpleLoader/SimpleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/1 - Simple Loader/SimpleLoader/SimpleLoader.cpp -------------------------------------------------------------------------------- /1 - Simple Loader/SimpleLoader/SimpleLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/1 - Simple Loader/SimpleLoader/SimpleLoader.sln -------------------------------------------------------------------------------- /1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj -------------------------------------------------------------------------------- /1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj.filters -------------------------------------------------------------------------------- /1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/1 - Simple Loader/SimpleLoader/SimpleLoader.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/Base64/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/Base64/Base64.cpp -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/Base64/Base64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/Base64/Base64.sln -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj.filters -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/Base64/Base64.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/base64_Encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/base64_Encoder.py -------------------------------------------------------------------------------- /2 - Encoding/1 - Base64 Loading/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/1 - Base64 Loading/calc.bin -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.cpp -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.sln -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj.filters -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/CustomEncoding/CustomEncoding.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/calc.bin -------------------------------------------------------------------------------- /2 - Encoding/2 - Custom Encoding/customEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/2 - Custom Encoding/customEncoder.py -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.cpp -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.sln -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj.filters -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/UUIDs/UUIDs.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/bin2uuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/bin2uuids.py -------------------------------------------------------------------------------- /2 - Encoding/3 - UUID shellcode/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/3 - UUID shellcode/calc.bin -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.cpp -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.sln -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj.filters -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/IPfuscation/IPfuscation.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/bin2ipv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/bin2ipv4.py -------------------------------------------------------------------------------- /2 - Encoding/4 - IPv4 shellcode/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/4 - IPv4 shellcode/calc.bin -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.cpp -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.sln -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj.filters -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/MACshellcode/MACshellcode.vcxproj.user -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/bin2mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/bin2mac.py -------------------------------------------------------------------------------- /2 - Encoding/5 - MAC shellcode/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/2 - Encoding/5 - MAC shellcode/calc.bin -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES/AES.cpp -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES/AES.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES/AES.sln -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES/AES.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES/AES.vcxproj -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES/AES.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES/AES.vcxproj.filters -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES/AES.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES/AES.vcxproj.user -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/AES_cryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/AES_cryptor.py -------------------------------------------------------------------------------- /3 - Encrypting/1 - AES/calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/3 - Encrypting/1 - AES/calc.bin -------------------------------------------------------------------------------- /4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.cpp -------------------------------------------------------------------------------- /4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.sln -------------------------------------------------------------------------------- /4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj -------------------------------------------------------------------------------- /4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj.filters -------------------------------------------------------------------------------- /4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/1 - Using Sockets/FilelessShellcode.vcxproj.user -------------------------------------------------------------------------------- /4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.cpp -------------------------------------------------------------------------------- /4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.sln -------------------------------------------------------------------------------- /4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj -------------------------------------------------------------------------------- /4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj.filters -------------------------------------------------------------------------------- /4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/4 - Fileless Shellcode/2 - Using WinHttp/WinhttpShellcode/WinhttpShellcode.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/LICENSE -------------------------------------------------------------------------------- /calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/calc.bin -------------------------------------------------------------------------------- /format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadAhla/Shellcode-Hide/HEAD/format.py --------------------------------------------------------------------------------