Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitLabGitLab/wattocyber/custom-oscp-tooling
Privilege EscalationReconnaissancePassword AttacksHash AnalysisInformation GatheringPost-ExploitationWeb SecurityNetwork SecurityPenetration Testing

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Payload Development
DNS Analysis
Database Security
GitLabwattocyber/custom-oscp-tooling

custom-oscp-tooling

OSCP-focused toolkit for read-only network, SMB, AD, DNS, web, and database enumeration; privesc scanning, hash identification, and payload/credential command generation.

View RepositoryWebsite
2 days agoNot yet reviewed

Custom OSCP Tooling

Cantina - OSCP-legal network recon orchestrator

A consolidated set of read-only, OSCP-exam-safe custom tools by Samson Laird. Everything here enumerates, identifies, and advises. Nothing here exploits, sprays, or modifies a target.

Tools

ToolWhat it doesClass
cantina.pyNetwork recon orchestrator: port discovery, service classification, enum-plugin dispatch.Enum / orchestration
ackbar.pyAD enumeration in one script. BloodHound + PowerView style output, no graph DB.AD enum
bobafett.pyDatabase service enumerator. Auth tests + read-only SELECT only.DB enum
jarjar.pyHTTP service scanner with verbose logging + Rich TUI report.Web enum
jawa.pySMB enumeration with clean output (enum4linux replacement).SMB enum
leia.py / leia.ps1 / leiAD.ps1Universal privesc scanner. Detects OS, runs the right checks.PrivEsc enum
maul.pyDNS enumeration. Pure Python, no external deps.DNS enum
obi.pyContext-aware attack advisor. Reads findings, matches technique library, prints next commands.Advisor
yoda.pyHash identification + hashcat command generation + *2john wrappers.Hash ID
jedi.nseNmap NSE script (service enum).NSE
blaster/OSCP payload factory (payload + listener + hosting + download cmds).Payload factory
chewie/On-host Windows domain enumerator (transfer to compromised box).AD enum
order66/Multi-protocol AD credential sprayer (password-first strategy).Credential logic
vader/Port-to-playbook lookup engine. Feed nmap output or ports, get playbooks.Lookup
xwing/ADCS exploitation assistant. Walks Ackbar/Certipy findings.ADCS assistant

Safety contract

Every tool is read-only where it claims to be. No tool here:

  • Modifies, creates, or deletes AD objects, files, or shares
  • Cracks hashes itself (identification + command generation only)
  • Auto-runs credential sprays (order66 generates the sequence; you run it)
  • Executes system commands against a target

Run against authorized targets and your own lab / OSCP exam scope only. You are responsible for scope.

Requirements

  • Python 3.10+
  • Kali (or similar) tools when available: nmap, plus service tools plugins call
  • Soft deps only: missing tools are skipped, not fatal

Quick start (Cantina)

root@kitploit:~
# list plugins (no scan)
python tools/cantina.py --list-plugins

# single host
python tools/cantina.py 10.10.10.5 -t quick

# multi-target concurrent
python tools/cantina.py -T hosts.txt -t all --max-workers 3 --timeout 90

Tests

root@kitploit:~
pip install -e ".[dev]"   # or: pip install pytest
python -m pytest tests/ -q
# expect: exit 0

Layout

root@kitploit:~
tools/              CLI tools (run with: python tools/<tool>.py)
  cantina.py          CLI + orchestrator
  cantina_plugins.py  discover / select / run
  ackbar.py ...       Star Wars custom OSCP tools
plugins/            service enum plugins
blaster/ chewie/ order66/ vader/ xwing/
assets/banner.txt   CLI terminal banner
banner.jpg          README hero image
tests/              unit tests (stubbed tools)
lab/                optional multi-service lab ground truth
fixtures/           nmap parse fixtures

License

MIT. See LICENSE.

Download Tool