Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-50751 — CVE-2026-50751 Check Point IKEv1 vulnerability scanner | Kitploit
Tools/GitHubGitHub/fernstedt/cve-2026-50751
ReconnaissanceVulnerability ScannersExploitationInformation GatheringNetwork SecurityPenetration Testing
GitHubfernstedt/cve-2026-50751

CVE-2026-50751

CVE-2026-50751 Check Point IKEv1 vulnerability scanner

View Repository
2 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-50751 Check Point IKEv1 Scanner

A multi-threaded vulnerability scanner for CVE-2026-50751, a critical IKEv1 authentication bypass vulnerability affecting Check Point Quantum Security Gateways.

Overview

Check Point Remote Access VPN systems with IKEv1 enabled are vulnerable to authentication bypass attacks. This tool detects if IKEv1 is enabled on target systems.

CVE-2026-50751 Details:

  • CVSS Score: 9.8 (Critical)
  • Vulnerability: IKEv1 authentication bypass in Check Point gateways
  • Attack Vector: Network
  • Authentication Required: None

Features

  • ✅ Parallel scanning of multiple targets
  • ✅ Single IP or batch file input
  • ✅ Both IKEv1 ports (500 and 4500) support
  • ✅ Customizable timeout and worker threads
  • ✅ Color-coded results with summary
  • ✅ Hostname resolution support

Installation

root@kitploit:~
# No dependencies required - uses only Python standard library
python3 cve_2026_50751_poc.py --help

Usage

Single Target

root@kitploit:~
python cve_2026_50751_poc.py 192.168.1.1

Multiple IPs

root@kitploit:~
python cve_2026_50751_poc.py 192.168.1.1 10.0.0.1 172.16.0.5

From File

root@kitploit:~
python cve_2026_50751_poc.py -f targets.txt

Both Ports (500 & 4500)

root@kitploit:~
python cve_2026_50751_poc.py -f targets.txt --both-ports

Custom Port

root@kitploit:~
python cve_2026_50751_poc.py 192.168.1.1 -p 4500

Tuning Performance

root@kitploit:~
# Fast scan with 50 workers
python cve_2026_50751_poc.py -f targets.txt --both-ports -w 50 --timeout 2

# Slow network with higher timeout
python cve_2026_50751_poc.py -f targets.txt -w 5 --timeout 15

Quiet Mode (No Banner)

root@kitploit:~
python cve_2026_50751_poc.py 192.168.1.1 -q

Target File Format

Create targets.txt with one IP/hostname per line:

root@kitploit:~
# Comments are ignored
192.168.1.1
192.168.1.2
vpn.example.com
10.0.0.5

203.0.113.15

Output Examples

Vulnerable System:

root@kitploit:~
⚠️  192.168.1.100       | VULNERABLE  | Port 500
   └─ IKEv1 Responding (56 bytes)

Safe System:

root@kitploit:~
✅  192.168.1.101       | SAFE         | Port 500

Unreachable System:

root@kitploit:~
⚠️  192.168.1.102       | FAILED       | Port 500
   └─ Connection timeout

Summary:

root@kitploit:~
Vulnerable: 2 | Safe: 8 | Failed: 1

Requirements

  • Python 3.6+
  • No external dependencies (uses only socket, struct, threading)

Legal & Authorization

⚠️ Important: Only run this scanner on systems you own or have explicit written permission to test. Unauthorized scanning may be illegal.


References

  • Check Point SK185033
  • CVE-2026-50751 Details
  • IKEv1 vs IKEv2

Version: 1.0
Status: Production Ready
Last Updated: 2026-06-10

Download Tool