FORSMILE
JA
セキュリティ2026/06/10

[URGENT] Authentication Bypass Vulnerability (CVE-2026-50751) Discovered in Check Point VPN, Immediate Patching Required!

An authentication bypass vulnerability with a CVSS score of 9.3 has been confirmed in Check Point's VPN products, with active exploitation by Qilin ransomware already observed. Immediate patching is required.

Back to Blog

A critical authentication bypass vulnerability (CVE-2026-50751) has been discovered in the VPN products of major security vendor Check Point Software Technologies. This vulnerability is rated with a CVSS score of 9.3, and exploitation by the Qilin ransomware attack group has already been confirmed. CISA (U.S. Cybersecurity and Infrastructure Security Agency) has also added this vulnerability to its KEV (Known Exploited Vulnerabilities) catalog, urging immediate patching. Organizations using the affected products must apply security updates without delay.

Vulnerability Overview and Scope of Impact

CVE-2026-50751 is an authentication bypass vulnerability affecting Check Point's Remote Access VPN, Mobile Access, and Spark Firewall products. Specifically, it impacts configurations that use the deprecated IKEv1 key exchange protocol, accept legacy remote access clients, and do not require machine certificates. Attackers can exploit a flaw in the logical flow of certificate validation to establish a VPN session without a valid user password, thereby bypassing authentication. This could allow an unauthenticated remote attacker to establish unauthorized access to the internal network.

⚠ CVE Score — 最高危険度 / CRITICAL
9.3CRITICALCVE-2026-50751

Specific Impacts and Attack Scenarios

If this vulnerability is exploited, attackers can gain unauthorized entry into an organization's internal network via the VPN gateway. According to Check Point's report, exploitation of this vulnerability was already observed on May 7, 2026, with attack activity intensifying in early June. Indeed, instances of this vulnerability being leveraged in attacks by Qilin ransomware affiliates have been confirmed. After gaining unauthorized access, attackers can proceed with further malicious activities, such as accessing internal resources, downloading additional tools, exfiltrating data, and even deploying ransomware.

Immediate Actions for Engineers

The most crucial measure is to promptly apply the emergency hotfix released by Check Point. Apply it immediately, without waiting for your regular patching cycle. Furthermore, if IKEv1 is not operationally essential, consider migrating to IKEv2 and disabling IKEv1 to completely eliminate this attack surface. It is also strongly recommended to enable settings that require the use of machine certificates for VPN connections.

If you operate web applications, it's also important to consider additional access controls at the web server level, such as Nginx, in case the VPN is compromised and unauthorized access occurs from the internal network. Below is an example of an Nginx configuration that restricts access to the WordPress admin panel to specific IP addresses. This helps prevent direct access to sensitive administrative interfaces, even if unauthorized access originates from within the internal network.

nginx
location ~* /(wp-admin|wp-login.php) {
    # 信頼できる内部ネットワークIPアドレスまたは管理用固定IPアドレスのみ許可
    allow 192.168.1.0/24;  # 例: 社内ネットワークのIP帯
    allow 203.0.113.10;    # 例: 管理者用固定IPアドレス
    deny all;              # それ以外のすべてのアクセスを拒否

    # WordPress FastCGI設定など、その他の関連設定をここに記述
    # 例:
    # include fastcgi_params;
    # fastcgi_pass unix:/run/php/php8.x-fpm.sock;
}
📦
Amazon で関連書籍・ツールを検索
cybersecurity server security tools
Amazonで探す →(アソシエイトリンク)

References and Official Patch Information

Related articles