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
11منذ 18 أياملم تتم المراجعة بعد

الأكثر شعبية

عرض الكل →

اكتشف الأدوات الأكثر استخدامًا من قبل مجتمعنا.

استكشف جميع الأدوات

تصفح مجموعتنا من الأدوات

عرض جميع الأدوات →
مشاركة
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