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