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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2026-11109-Bluetooth-Classic-KNOB-Attack-Key-Negotiation-of-Bluetooth- — Bluetooth Classic KNOB攻撃のPythonシミュレーション。暗号鍵サイズのダウングレードと、傍受したBluetoothトラフィックのブルートフォース復号を示します。 | Kitploit
ツール/GitHubGitHub/george0papasotiriou/cve-2026-11109-bluetooth-classic-knob-attack-key-negotiation-of-bluetooth-
Bluetoothセキュリティ脆弱性分析エクスプロイトワイヤレスセキュリティ暗号化学習と教育
GitHubgeorge0papasotiriou/cve-2026-11109-bluetooth-classic-knob-attack-key-negotiation-of-bluetooth-

CVE-2026-11109-Bluetooth-Classic-KNOB-Attack-Key-Negotiation-of-Bluetooth-

Bluetooth Classic KNOB攻撃のPythonシミュレーション。暗号鍵サイズのダウングレードと、傍受したBluetoothトラフィックのブルートフォース復号を示します。

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有
リポジトリを見る
16日前未レビュー

CVE-2026-11109 – Bluetooth Classic KNOB攻撃(Bluetoothの鍵ネゴシエーション)

プログラムコード(Pythonシミュレーション)

root@kitploit:~
# knob_attack_sim.py - Simulates negotiation of encryption key size to 1 byte
import random, hashlib

class BluetoothDevice:
    def negotiate_key_size(self, proposed_size):
        # Vulnerable: accepts any key size down to 1 byte
        return max(1, proposed_size)  # should enforce minimum 7

def attack():
    bob = BluetoothDevice()
    # Attacker proposes 1 byte key size
    agreed = bob.negotiate_key_size(1)
    print(f"Key size negotiated: {agreed} byte")
    # Now brute-force 1-byte key (256 possibilities) in seconds
    for k in range(256):
        # Simulate successful decryption
        print(f"Key {k} decrypted traffic.")

attack()

CVE-2026-11109 – Bluetooth KNOB攻撃(Bluetoothの鍵ネゴシエーション)

Severity: High

概要

Bluetoothデバイスは、ペアリングネゴシエーション中に暗号鍵サイズとして1バイトまで受け入れてしまいます。攻撃者は接続に極めて弱い鍵を強制し、実時間で総当たり攻撃を行って通信を盗聴できます。

脆弱性の詳細

  • 種別: 中間者攻撃/プロトコルダウングレード
  • 影響: Bluetoothトラフィックの傍受と復号。
  • 根本原因: Bluetooth仕様は、古い実装では最小鍵サイズの強制を義務付けておらず、このスタックは提案された任意のサイズを受け入れます。

エクスプロイトのデモ

シミュレーションを実行します:

root@kitploit:~
python knob_attack_sim.py

1バイトの鍵が合意され、即座に総当たり攻撃が可能であることを出力します。

ツールをダウンロード