Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
offensive-one-liners — 110 offensive-security one-liners for authorized testing and CTFs, grouped by category and kill-chain step. | Kitploit
उपकरण/GitLabGitLab/wattocyber/offensive-one-liners
Privilege EscalationReconnaissancePassword AttacksExploitationLateral MovementWeb Application ExploitationPost-ExploitationCTFPenetration TestingRed TeamingCurated ResourcesContainer Escape
1118 दिन पहलेअभी तक समीक्षित नहीं

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
GitLabwattocyber/offensive-one-liners

offensive-one-liners

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

रिपॉजिटरी देखेंवेबसाइट
अनुरोधित भाषा में सामग्री उपलब्ध नहीं है। अंग्रेज़ी संस्करण दिखाया जा रहा है।

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.

टूल डाउनलोड करें
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