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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2025-55315-detection-playground — CVE-2025-55315 HTTP スマグリング脆弱性に対するパッチ適用済み/未適用の Kestrel でさまざまな動作を実験するためのプレイグラウンド | Kitploit
ツール/GitHubGitHub/nickcopi/cve-2025-55315-detection-playground
脆弱性分析エクスプロイトウェブセキュリティペネトレーションテスト
GitHubnickcopi/cve-2025-55315-detection-playground

CVE-2025-55315-detection-playground

CVE-2025-55315 HTTP スマグリング脆弱性に対するパッチ適用済み/未適用の Kestrel でさまざまな動作を実験するためのプレイグラウンド

リポジトリを見る

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
72311ヶ月前未レビュー
共有

以下は、これらのサービスに対して実行できるテストです。パッチ適用前と適用後のKestrelバージョンで、GET/POSTルートに対する異なる動作を確認できます。

パッチ適用前に対するGET(200を送信し、ソケットは開いたまま)

root@kitploit:~
printf 'GET / HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5002

パッチ適用後に対するGET(200を送信し、ソケットは閉じる)

root@kitploit:~
printf 'GET / HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5001

CT不要のパッチ適用前に対するPOST(200を送信し、ソケットは開いたまま)

root@kitploit:~
printf 'POST / HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5002

CT不要のパッチ適用後に対するPOST(400を送信し、ソケットは閉じる(プロセスはBad chunk extensionに関する処理済み例外もスローする))

root@kitploit:~
printf 'POST / HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5001

CT必須のパッチ適用前に対するPOST(415を送信し、ソケットは開いたまま)

root@kitploit:~
printf 'POST /ct HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5002

CT必須のパッチ適用後に対するPOST(415を送信し、ソケットは閉じる)

root@kitploit:~
printf 'POST /ct HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\nContent-Type: text/plain\r\n\r\n2;\rxx\r\nxy\r\n0\r\n\r\n' | nc localhost 5001
ツールをダウンロード