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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-21018-OPC-UA-Authentication-Bypass-via-None-Security-Policy — None 보안 정책을 사용하는 OPC UA 인증 우회용 개념 증명 익스플로잇으로, 산업 제어 데이터에 대한 비인가 읽기/쓰기 액세스를 시연하는 시뮬레이션 서버를 포함합니다. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-21018-opc-ua-authentication-bypass-via-none-security-policy
Vulnerability AnalysisExploitationSCADA/ICS SecurityNetwork SecurityAuthenticationMisconfiguration
GitHubgeorge0papasotiriou/cve-2026-21018-opc-ua-authentication-bypass-via-none-security-policy

CVE-2026-21018-OPC-UA-Authentication-Bypass-via-None-Security-Policy

None 보안 정책을 사용하는 OPC UA 인증 우회용 개념 증명 익스플로잇으로, 산업 제어 데이터에 대한 비인가 읽기/쓰기 액세스를 시연하는 시뮬레이션 서버를 포함합니다.

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

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

CVE-2026-21018 – None 보안 정책을 통한 OPC UA 인증 우회

프로그램 코드 (Python opcua-asyncio 시뮬레이션)

root@kitploit:~
# opcua_server_sim.py - OPC UA server accepting None security policy
from asyncua import Server
import asyncio

async def main():
    server = Server()
    await server.init()
    server.set_endpoint('opc.tcp://0.0.0.0:4840/freeopcua/server/')
    server.set_security_policy([ua.SecurityPolicyType.NoSecurity])  # Allows unencrypted, unauthenticated
    async with server:
        while True:
            await asyncio.sleep(1)

asyncio.run(main())

CVE-2026-21018 – None 보안 정책을 통한 OPC UA 인증 우회

Severity: Critical

개요

OPC UA 서버가 암호화나 인증을 제공하지 않는 None 보안 정책으로 구성되어 있습니다. 네트워크의 공격자는 연결하여 산업 제어 시스템 태그와 상호 작용할 수 있으며, 이로 인해 물리적 피해를 초래할 수 있습니다.

취약점 세부 정보

  • 유형: 인증 누락
  • 영향: 산업 공정에 대한 무단 제어.
  • 근본 원인: 서버 엔드포인트가 보안되지 않은 연결을 허용하여 모든 클라이언트가 변수를 읽고 쓸 수 있습니다.

익스플로잇 시연

  1. 시뮬레이션 서버를 시작합니다:
    root@kitploit:~
    pip install asyncua
    python opcua_server_sim.py
    
    
  2. 익스플로잇을 실행합니다:
    root@kitploit:~
    python exploit_opcua_none.py
    

클라이언트가 성공적으로 연결됩니다.

도구 다운로드