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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-8888-Printer-Firmware-Unsigned-Update-via-HTTP — HTTP를 통한 서명되지 않은 프린터 펌웨어 업데이트인 CVE-2026-8888을 시연하며, 업데이트 무결성 테스트를 위한 악성 업데이트 서버와 취약한 프린터 에뮬레이터를 포함합니다. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-8888-printer-firmware-unsigned-update-via-http
Embedded Systems SecurityIoT SecurityVulnerability AnalysisExploitationNetwork SecuritySupply Chain SecurityFirmware Analysis
GitHubgeorge0papasotiriou/cve-2026-8888-printer-firmware-unsigned-update-via-http

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2026-8888-Printer-Firmware-Unsigned-Update-via-HTTP

HTTP를 통한 서명되지 않은 프린터 펌웨어 업데이트인 CVE-2026-8888을 시연하며, 업데이트 무결성 테스트를 위한 악성 업데이트 서버와 취약한 프린터 에뮬레이터를 포함합니다.

저장소 보기
17일 전아직 검토되지 않음

CVE-2026-8888 – HTTP를 통한 서명되지 않은 프린터 펌웨어 업데이트

프로그램 코드 (Python HTTP 서버 + 프린터 에뮬레이터)

root@kitploit:~
#!/usr/bin/env python3
# printer_firmware_server.py - Simulated printer that fetches updates over HTTP
import requests, hashlib, os

FIRMWARE_URL = "http://updates.printer.local/firmware.bin"
CURRENT_VERSION = 1.0

def check_update():
    try:
        r = requests.get(FIRMWARE_URL, timeout=5)
        if r.status_code == 200:
            firmware = r.content
            # No signature verification! Just check hash?
            # Insecure: any file can be flashed.
            with open("/tmp/firmware.bin", "wb") as f:
                f.write(firmware)
            print("Firmware downloaded and saved. (In real printer, it would be flashed.)")
    except Exception as e:
        print("Update check failed:", e)

if __name__ == '__main__':
    check_update()

CVE-2026-8888 – 서명 없는 HTTP를 통한 프린터 펌웨어 업데이트

Severity: Critical

개요

네트워크 프린터는 구성 가능한 URL에서 일반 HTTP를 통해 펌웨어 업데이트를 가져오면서 디지털 서명을 검증하지 않습니다. 중간자(MITM) 또는 DNS 스푸핑 공격자는 악성 펌웨어를 제공하여 장치에 대한 완전한 제어권을 얻을 수 있습니다.

취약점 세부 정보

  • 유형: 펌웨어 서명 검증 누락
  • 영향: 영구적인 장치 손상, 데이터 가로채기, 수평 이동.
  • 근본 원인: 업데이트 프로세스는 전송 계층(HTTP)의 무결성에만 의존하며 펌웨어 이미지를 암호화 방식으로 검증하지 않습니다.

익스플로잇 시연

  1. 악성 업데이트 서버를 시작합니다:
    root@kitploit:~
    python malicious_update_server.py
    
  2. 시뮬레이션된 프린터에서 업데이트 확인을 실행합니다:
    root@kitploit:~
    python printer_firmware_server.py
    
도구 다운로드