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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/gorugoo/poodle-attack-sandbox
Vulnerability AnalysisExploitationWeb Application ExploitationCryptographyLearning & EducationLabs & Practice
GitHubgorugoo/poodle-attack-sandbox

poodle-attack-sandbox

Test code for poodle attack (CVE-2014-3566)

リポジトリを見る
11年前未レビュー

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有

poodle-attack-sandbox

Overview

This code is the test code for POODLE(CVE-2014-3566).

POODLE stands for "Padding Oracle On Downgraded Legacy Encryption" and is a vulnerability in SSLv3.0.

Warning

If you use this code to carry out an attack, you may be arrested by the judicial authorities of your country.

Use for study purposes only.

Installation

docker/docker compose が必要なのでインストールしてください。

  1. コンテナ起動
root@kitploit:~
docker compose up --build
  1. 中間者サーバーのスクリプト起動
  • client<-->mitm<-->target の疎通確認ならば

    root@kitploit:~
    docker exec -it mitm-server bash
    

    コンテナ内で

    root@kitploit:~
    cd && cd mitm && sudo bash proxy-test.sh
    
  • 攻撃用スクリプト起動ならば

    同様のコンテナ内で

    root@kitploit:~
    cd && cd mitm && sudo bash attack.sh
    

Notice

mitmコンテナは中間者としてパケットの解析を行うために、iptablesを用いて一度パケットをキューに格納しています。

ツールをダウンロード

そのため上記のShell Scriptを実行しない場合、ご自身でデキューする処理を別プロセスで実行して頂かないとリクエストを送ったきりでレスポンスが帰ってきません。

ご注意ください。