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
offensive-one-liners — 110 offensive-security one-liners for authorized testing and CTFs, grouped by category and kill-chain step. | Kitploit
Tools/GitLabGitLab/wattocyber/offensive-one-liners
Privilege EscalationReconnaissancePassword AttacksExploitationLateral MovementWeb Application ExploitationPost-ExploitationCTFPenetration TestingRed TeamingCurated ResourcesContainer Escape
1118 days agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitLabwattocyber/offensive-one-liners

offensive-one-liners

110 offensive-security one-liners for authorized testing and CTFs, grouped by category and kill-chain step.

View RepositoryWebsite

offensive-one-liners

offensive-one-liners banner

license gitlab

Jean Miélot at his desk. Public domain.

A notebook of 110 offensive security one-liners for authorized testing, CTFs, bug bounty, and lab research. Organized into one markdown notebook with 12 sections. Each entry is a full command or tight pipeline, not a stub.

See offensive-one-liners.md for the full notebook.

The problem this solves

Most one-liner lists are a pile of stock nmap and rockyou commands that stop at the table stakes. This notebook is the opposite: real attack chains, modern tooling, and operators that do useful work past the obvious path. One file, copy-paste ready, organized so you can find the right command under time pressure.

What is here

Quick start

root@kitploit:~
git clone [email protected]:WattoCyber/offensive-one-liners.git
cd offensive-one-liners
# open the notebook, jump to a section
less offensive-one-liners.md
# or grep for a tool you already have
grep -n "kerbrute" offensive-one-liners.md

No install. Everything is copy-paste into your target box. Placeholders (TGT, LHOST, LPORT, DOMAIN, USER, PASS) are documented in the notebook; [win] lines run in PowerShell/cmd, the rest assume Kali with common tooling.

Sample entries (from the notebook)

root@kitploit:~
# 1. Host discovery via ARP (works when ICMP is filtered)
nmap -sn --script dns-brute TGT/24 | grep -E "report|dns-brute"

# 2. Kerbrute password spray against valid users, low-and-slow
kerbrute password -d DOMAIN.local users.txt passwords.txt -t 8 --dc TGT

# 3. SNMP community brute that dumps the running-config wart (Cisco)
for c in public private cisco com munity; do snmpwalk -v2c -c $c TGT 1.3.6.1.4.1.9.9.96.1.1 2>/dev/null && echo "SNMP OK: $c"; done

Scope

These one-liners are for systems you own, explicitly authorized systems, CTF/benchmark targets, and lab environments. Nothing here grants authorization. Review target scope before running.

Download Tool
SectionWhat it covers
1. Recon & EnumerationHost discovery, ARP enumeration, DNS brute, SNMP
2. AD & KerberosAS-REP roast, Kerberoast, DCSync, golden ticket
3. SMB & Lateral MovementPTT, pass-the-hash, GPP passwords, EternalBlue
4. Web & API ExploitationSQLi, NoSQLi, SSTI, request smuggling, GraphQL
5. SSRF, Cloud & MetadataAWS/GCP/ECS metadata, k8s, internal vhost smuggling
6. Credential Attacks & SprayingPassword sprays, user enum
7. Reverse Shells & TunnelsTLS socat, chisel, ligolo-ng, frp
8. Privilege EscalationLinux + Windows PE vectors
9. PersistenceWMI event subscription, LD_PRELOAD, run keys
10. Container & Cloud Escapedocker socket, cgroup release_agent, nsenter
11. Pivoting & ProxySocks, proxychains, port forwards
12. Misc Force MultipliersTime-savers and force multipliers