Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-0101-BLE-Address-Spoofing-via-Weak-Resolvable-Private-Address — 캡처된 Resolvable Private Address를 재생하여 신뢰할 수 있는 주변 기기를 사칭하는 BLE 주소 스푸핑을 시연하는 CVE-2026-0101용 Python PoC입니다. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-0101-ble-address-spoofing-via-weak-resolvable-private-address
Bluetooth SecurityIoT SecurityExploitationWireless SecurityLearning & EducationAdversarial Attack
GitHubgeorge0papasotiriou/cve-2026-0101-ble-address-spoofing-via-weak-resolvable-private-address

CVE-2026-0101-BLE-Address-Spoofing-via-Weak-Resolvable-Private-Address

캡처된 Resolvable Private Address를 재생하여 신뢰할 수 있는 주변 기기를 사칭하는 BLE 주소 스푸핑을 시연하는 CVE-2026-0101용 Python PoC입니다.

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
18일 전아직 검토되지 않음

CVE-2026-0101 – 약한 해석 가능 개인 주소를 통한 BLE 주소 스푸핑

프로그램 코드 (Python, bleak 시뮬레이션 사용)

root@kitploit:~
# ble_peripheral_sim.py - Simulated BLE peripheral with weak RPA verification
import asyncio, random, hashlib
from bleak import BleakServer, BleakScanner
# (Simplified - we'll use a basic socket to simulate BLE bonding)

# Store bonded IRK (Identity Resolving Key)
irk = b'\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10'
def resolve_rpa(rpa, irk):
    # This is a stub: real resolution uses AES-128; vulnerability: attacker can brute-force or replay
    # Assume the peripheral accepts any RPA that decrypts to a known hash without replay protection.
    return True  # always accept for demo

# Simulating the peripheral: wait for connection, check RPA, if resolved, trust.
print("Peripheral running, accepting any RPA...")

CVE-2026-0101 – 재전송된 해석 가능 개인 주소를 통한 BLE 스푸핑

Severity: Medium

개요

해석 가능한 개인 주소(RPA)를 사용하는 Bluetooth Low Energy 주변 장치가 재생(replay) 캐시를 구현하지 않습니다. 공격자는 유효한 RPA를 관찰한 후 페어링된 장치의 연결을 끊고 동일한 RPA로 다시 연결하여 신뢰할 수 있는 장치로 위장할 수 있습니다.

취약점 세부 정보

  • 유형: 인증 우회 / 재생 공격
  • 영향: BLE 주변 장치(의료 기기, 잠금 장치)에 대한 무단 액세스 및 데이터 탈취
  • 근본 원인: 주변 장치가 최근에 사용된 RPA를 추적하지 않거나 제한된 수명을 적용하지 않아, 동일한 프라이버시 구간 내에서 캡처된 주소의 재생을 허용합니다.

익스플로잇 시연

시뮬레이션 실행:

root@kitploit:~
python ble_peripheral_sim.py
# In another terminal:
python exploit_ble_spoof.py

이 익스플로잇은 광고된 RPA를 캡처하여 신뢰된 장치로 다시 연결합니다.

도구 다운로드