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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Shockwave-OSS — リコン、ファジング、Webエクスプロイト向けのバグバウンティのヒント、ワンライナー、自動化ワークフローを厳選収録。プライベートnucleiテンプレートとHackerOneレポートの要点も収録しています。 | Kitploit
ツール/GitHubGitHub/gal-nagli/shockwave-oss
偵察脆弱性分析ウェブアプリケーション悪用情報収集WAFバイパスウェブセキュリティファジングペネトレーションテストシークレット検出サブドメイン列挙学習と教育厳選リソース
7531352年前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有
GitHubgal-nagli/shockwave-oss

Shockwave-OSS

リコン、ファジング、Webエクスプロイト向けのバグバウンティのヒント、ワンライナー、自動化ワークフローを厳選収録。プライベートnucleiテンプレートとHackerOneレポートの要点も収録しています。

リポジトリを見る

BountyTricks

バグバウンティのヒントやテクニックをコミュニティと共有します。自動化、ワンライナー、役立つ考え方など、これに限定されません。

目次

💂‍♂️ その他

正規表現バリデーター

ホモグラフジェネレーター

Shodan-Scripts

HTTPヘッダー

MIMEタイプ

リバースプロキシ

Writeups

HTTPリクエストスマグリング

  • Github ローカル偵察 - 使用法: gitsecrets “word” | gf pattern
root@kitploit:~
gitsecrets(){
{ find .git/objects/pack/ -name "*.idx"|while read i;do git show-index < "$i"|awk '{print $2}';done;find .git/objects/ -type f|grep -v '/pack/'|awk -F'/' '{print $(NF-1)$NF}'; }|while read o;do git cat-file -p $o;done|grep -E "$1"
}
  • ffuf を多数のファイルに対して
root@kitploit:~
ffuf -u URL/FUZZ -w allipstoffuf:URL -w ~/.config/wordlists/envpath:FUZZ -maxtime 300 -t 500 -c -v

💂‍♂️ 非公開Nucleiテンプレート

  • SSRF nucleiテンプレート - エンドポイントを自動的にプローブしてSSRFインタラクションを確認します。このモジュールは、指定された入力に対して単純なインタラクションを取得しようとし、その後、一般的なSSRFクエリパラメータを元のリクエストに追加します。

例:

root@kitploit:~
echo "https://checkout.stripe.com/api/color?image_url=" | nuclei -t ssrf.yaml 

nuclei_ssrf

実戦からのヒントとトリック

  • スキームを変更してWAFをバイパス:
root@kitploit:~
http://web.com/?XSSendpoint ===> no WAF
https://web.com/?XSSendpoint ===> WAF implemented

サブドメイン偵察

ルートドメイン

  • Google Dorks:
root@kitploit:~
Root Domains - "org" subsidiaries
intext: credit company
  • Amass
root@kitploit:~
1. Get company's ASN numbers - amass intel -org DoD
2. Turn ASN numbers into CIDR - whois -h whois.radb.net -- "-i origin $asn" | grep -Eo "([0-9.]+){4}/[0-9]+" | sort -u >> $recondir/cidr
3. Get TLDS from ASN - amass intel -asn $asn
4. Get TLDS from whois data - amass intel -whois -d TLD (facebook.com)
5. Get TLDS from CIDR - amass intel -cidr xxxxxx/23
  • CIDRからホスト名へ
root@kitploit:~
prips 144.160.32.0/19 | hakrevdns  -d | httpx -title -status-code -follow-redirects

💂‍ H1 開示レポートの分析

  • GraphQL APIエンドポイントでのReDoS - サーバーCPUを停止させるRegex BOMB。
root@kitploit:~
Takeaway : FUZZ with certain characters such as \u0000 to try and trigger ReGeX verbose errors
  • チケットのトリック - [email protected]で登録することができ、システムが[email protected]へのメール送信でサポートチケットを自動作成するため、メール確認が自分のアカウントに届いた。
root@kitploit:~
Takeaway: If a company won't require email address verification and will automatically generate support tickets, try and sign up with [email protected]
  • authenticity_tokenが検証されないことによるCSRF - authenticity_tokenが固定値で検証されておらず、CSRFに対して脆弱で、ShopifyのOrg乗っ取りにつながる。
root@kitploit:~
Takeaway: whenever authenticity_token is presented on requests validate if the value is being processed in the back-end.
  • 細工されたペイロードによるアプリケーションレベルのDoS - POSTリクエストの "name" パラメータが、入力として (((((()0))))) を渡すとクラッシュした。
root@kitploit:~
Takeaway: try (((((()0))))) when fuzzing post requests.
  • steam idクッキーに対するIDOR - 被害者のsteamidクッキー値を使用したPOSTリクエストで、被害者に代わって操作を実行できた。
root@kitploit:~
Takeaway: Swap identifyable cookie values between lateral accounts.
  • Bitbucket公開リポジトリでの認証情報漏えい
root@kitploit:~
Takeaway: Look through org's public repos for Bitbucket content
  • POSTリクエストの「month」パラメータによるJava RCE - monthパラメータは、次のペイロードでコードインジェクションに対して脆弱だった: 1${T(java.lang.System).getenv()}
root@kitploit:~
Takeaway: When Fuzzing java application to try and insert code injection queries like ${T(java.lang.System).getenv()}
  • 末尾スペース追加によるSSO乗っ取り - 組織名の末尾にスペースを追加すると、ユーザーが認証しようとするたびにそのスペースがトリミングされる。
root@kitploit:~
Takeaway: When supplying org name check what is the behaviour with adding " " (space) on it's name
  • ポート番号追加によるHostヘッダーキャッシュポイズニングによるDoS
root@kitploit:~
Takeaway: Tampering with the host header with situations who involve caching, can append port to the host to cause DOS
  • JSファイルに公開されたFirebase APIリンク短縮キー
root@kitploit:~
Takeaway: Go through the "main.slug.js" files and look for API Keys, this one looks like the google maps one (AI....)
  • 公開状態のS3バケットがアップロードされたすべての画像を開示
root@kitploit:~
Takeaway: Look for websites who has bucket like https://s3.amazonaws.com/BUCKETNAME and try to run aws s3 ls BUCKETNAME
  • 6桁OTPへのレート制限がないため任意のパスワードをリセット
root@kitploit:~
Takeaway: Check each step of reset password phase who might not be protected with rate limiting, this could even be a third step after clicking an email, allowing to skip phase 2.
  • AdminパスワードがJavaScriptソースファイルに露出
root@kitploit:~
Takeaway: on Admin / custom made login panels check the source code to determine if there are some leaks including password.
  • 画像パラメータを介したSSRF

  • 「features」GETパラメータを介したSQLI - WAFバイパス

root@kitploit:~
Takeaway: %27||/**/(case%20when(/*%c3*/length/*%c3*/(user)=5)then/**/(1)else(1/0)end)||%27
  • OAuthフローでのオープンリダイレクト
root@kitploit:~
Takeaway: Change the scope parameter to arbitrary file and see if the redirect_url will redirect to external domain

免責事項

ここで紹介するワンライナーやデータの一部は、他のリポジトリから取得し、私が修正したものかもしれません。ここでは、私が普段使用しているものや、この1年間に出会ったものだけを共有しています。もし、ここにあなたが元々作成したものを見つけた場合は、お知らせください。クレジットを記載します。

ツールをダウンロード