Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-21018-OPC-UA-Authentication-Bypass-via-None-Security-Policy — OPC UA 身份验证绕过的概念验证漏洞利用,使用 None 安全策略,包括一个模拟服务器,用于演示对工业控制数据的未授权读/写访问。 | Kitploit
工具/GitHubGitHub/george0papasotiriou/cve-2026-21018-opc-ua-authentication-bypass-via-none-security-policy
漏洞分析漏洞利用SCADA/ICS安全网络安全身份验证错误配置
GitHubgeorge0papasotiriou/cve-2026-21018-opc-ua-authentication-bypass-via-none-security-policy

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

OPC UA 身份验证绕过的概念验证漏洞利用,使用 None 安全策略,包括一个模拟服务器,用于演示对工业控制数据的未授权读/写访问。

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
查看仓库
71个月前尚未审核
分享

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
    

客户端连接成功。

下载工具