ββββ β β ββ βββ βββ ββββββ ββββββ ββββββ
ββ ββ β ββ ββββββββ ββββ βββ β ββ β ββββ ββ
βββ ββ ββββββ ββββββββ ββββ β ββββ ββββ βββ β
ββββ ββββββββ ββββββββ ββββ β ββββββ β ββββ ββββ
ββββ ββββββββββββ βββββββββββββββββββββββββββββββββ βββββ β
β ββ β β ββββ β β β βββ ββ βββ ββ βββ β βββ ββ ββ ββ β β
β ββ β ββββββ β β β β β ββ β β ββ ββ β β β β β β β
β β β βββ β β β β β β β β β β β
β β β β β β β β β β
β β β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
βββββββββββββββββ I N J E C T O R βββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
bad-antics
nullsec-injector is a process memory injector and code execution tool written in Odin. Combines low-level memory access with a clean, modern syntax for reliable shellcode and DLL injection.
- π Shellcode Injection - Multiple injection techniques
- π DLL Injection - Remote DLL loading
- π§΅ Thread Hijacking - Existing thread manipulation
- π Process Hollowing - Replace process memory
- π APC Injection - Asynchronous procedure calls
- π Module Enumeration - List loaded modules
- Odin compiler (latest)
- Linux or Windows
- Root/Administrator privileges
# Clone repository
git clone https://github.com/bad-antics/nullsec-injector.git
cd nullsec-injector
# Build
odin build injector.odin -out:injector
# Or run directly
odin run injector.odin# Shellcode injection
./injector inject -p 1234 -s shellcode.bin
# DLL injection
./injector dll -p 1234 -d payload.dll
# Thread hijacking
./injector hijack -p 1234 -s shellcode.bin
# Process hollowing
./injector hollow -t target.exe -s payload.exe
# Enumerate modules
./injector modules -p 1234| Flag | Description |
|---|---|
-p, --pid |
Target process ID |
-s, --shellcode |
Shellcode file path |
-d, --dll |
DLL file path |
-t, --target |
Target executable |
--method |
Injection method |
-v, --verbose |
Verbose output |
- Classic VirtualAllocEx + CreateRemoteThread
- NtCreateThreadEx (stealthier)
- Thread context manipulation
- LoadLibrary via CreateRemoteThread
- Manual mapping (no LoadLibrary)
- Reflective DLL injection
- Process hollowing (RunPE)
- APC injection (alertable threads)
- Thread execution hijacking
This tool is intended for authorized security testing and educational purposes only. Unauthorized code injection is illegal.
NullSec Proprietary License
bad-antics - NullSec Security Team
Part of the NullSec Security Toolkit
bad-antics
- GitHub: @bad-antics
- Website: bad-antics.github.io
- Discord: discord.gg/killers
Part of the NullSec Security Framework