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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-90782-s2opc-status-clobber — 针对 CVE-2026-90782 的独立 PoC:S2OPC alloc_notification_message_items() 中的状态覆盖型 NULL 解引用(DataChange 失败,Event 成功) | Kitploit
工具/GitHubGitHub/harshrajsinghania/cve-2026-90782-s2opc-status-clobber
内存取证漏洞分析漏洞利用模糊测试二进制分析
GitHubharshrajsinghania/cve-2026-90782-s2opc-status-clobber

CVE-2026-90782-s2opc-status-clobber

针对 CVE-2026-90782 的独立 PoC:S2OPC alloc_notification_message_items() 中的状态覆盖型 NULL 解引用(DataChange 失败,Event 成功)

查看仓库

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
7小时51分前尚未审核

CVE-2026-90782 — S2OPC 状态覆盖导致的 NULL 解引用

针对 S2OPC(Safe & Secure OPC)中 CVE-2026-90782 的独立概念验证。

漏洞

在 alloc_notification_message_items() 中(S2OPC 1.7.3 及更早版本):

  • 一个共享的 status 变量同时用于 DataChange 和 Event 的分配。
  • 如果 DataChange 分配失败(返回 OOM / 非 OK),但随后的 Event 分配成功,status 会被覆盖为 SOPC_STATUS_OK。
  • 循环后的检查因此通过,代码解引用仍为 NULL 的 dataChangeNotif 指针 → NULL 解引用 / 崩溃。

构建与运行

root@kitploit:~
gcc -o s2opc_poc reproducer.c

# Test 1 — both allocations succeed (no crash)
./s2opc_poc 1

# Test 2 — vulnerable path: DataChange fails, Event succeeds → NULL deref (crash)
./s2opc_poc 2

# Test 3 — fixed path: independent status tracking, no crash
./s2opc_poc 3

# Test 4 — control: data-only (no Event alloc to clobber status)
./s2opc_poc 4

推荐配合 AddressSanitizer 使用:

root@kitploit:~
gcc -fsanitize=address -g -o s2opc_poc reproducer.c
./s2opc_poc 2

修复

独立跟踪各分配状态,并在 DataChange 分配失败时提前退出 / 跳过解引用。与提交 8848f051 中的模式一致。

文件

  • reproducer.c — 复现了存在漏洞和已修复的分配逻辑
下载工具