/Vulnerability Library

Check Point Security Management Server - SmartConsole Authentication Bypass

CVE-2026-16232
Early Release

Description

An authentication bypass vulnerability in the Check Point SmartConsole login process allows an unauthenticated remote attacker to obtain an application login token and use it to authenticate with full administrative privileges. Successful exploitation allows the attacker to modify security policies and security configurations. Remote exploitation requires internet access to the Management Server IP address and a configuration that does not restrict Trusted Clients. Check Point is aware that this vulnerability is being exploited and has affected a very small number of customers.

Severity

Critical

CVSS Score

9.8

Exploit Probability

70%

Affected Product

security_management_server

Published Date

July 29, 2026

Template Author

sfewer-r7, dhiyaneshdk

CVE-2026-16232.yaml
id: CVE-2026-16232

info:
  name: Check Point Security Management Server - SmartConsole Authentication Bypass
  author: sfewer-r7,DhiyaneshDk
  severity: critical
  description: |
    An authentication bypass vulnerability in the Check Point SmartConsole login process allows an unauthenticated remote attacker to obtain an application login token and use it to authenticate with full administrative privileges. Successful exploitation allows the attacker to modify security policies and security configurations. Remote exploitation requires internet access to the Management Server IP address and a configuration that does not restrict Trusted Clients. Check Point is aware that this vulnerability is being exploited and has affected a very small number of customers.
  impact: |
    Unauthenticated remote attackers can gain full administrative access and modify security policies and configurations.
  remediation: |
    Update to the latest version with the vulnerability fixed.
  reference:
    - https://support.checkpoint.com/results/sk/sk185169
    - https://www.rapid7.com/blog/post/ra-check-point-smartconsole-authentication-bypass-technical-analysis-cve-2026-16232/
    - https://github.com/sfewer-r7/CVE-2026-16232
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2026-16232
    epss-score: 0.69969
    epss-percentile: 0.99308
    cwe-id: CWE-287
  metadata:
    max-request: 1
    vendor: checkpoint
    product: security_management_server
    shodan-query: port:18190
    fofa-query: port="18190"
    verified: true
  tags: cve,cve2026,checkpoint,auth-bypass,smartconsole,network,js,kev,vkev

javascript:
  - pre-condition: |
      isPortOpen(Host, CpmiPort);
    code: |
      let net = require("nuclei/net");

      let addr = Host + ":" + CpmiPort;
      let conn = net.Open("tcp", addr);
      conn.SetTimeout(15);

      conn.SendHex("5900000000000041");

      let ackBytes = conn.RecvFull(4);
      if (!ackBytes || ackBytes.length < 4) {
        conn.Close();
        Export("error:no_ack");
      }

      if (ackBytes[0] !== 0x59) {
        conn.Close();
        Export("error:bad_ack_" + ackBytes[0]);
      }

      conn.SendHex("0000000e434e3d4775695f436c69656e74000000000100");

      let dnLenBytes = conn.RecvFull(4);
      if (!dnLenBytes || dnLenBytes.length < 4) {
        conn.Close();
        Export("error:no_dn_length");
      }

      let dnLen = (dnLenBytes[0] << 24) | (dnLenBytes[1] << 16) | (dnLenBytes[2] << 8) | dnLenBytes[3];

      if (dnLen <= 0 || dnLen > 1024) {
        conn.Close();
        Export("error:invalid_dn_len_" + dnLen);
      }

      let dnData = conn.RecvFull(dnLen);
      if (!dnData || dnData.length < dnLen) {
        conn.Close();
        Export("error:short_dn_data");
      }

      let dnStr = "";
      for (let i = 0; i < dnData.length; i++) {
        if (dnData[i] !== 0) {
          dnStr += String.fromCharCode(dnData[i]);
        }
      }

      let capsInfo = "";
      try {
        let countBytes = conn.RecvFull(4);
        if (countBytes && countBytes.length >= 4) {
          let capCount = (countBytes[0] << 24) | (countBytes[1] << 16) | (countBytes[2] << 8) | countBytes[3];
          if (capCount > 0 && capCount <= 20) {
            let caps = [];
            for (let i = 0; i < capCount; i++) {
              try {
                let capLenBytes = conn.RecvFull(4);
                if (!capLenBytes || capLenBytes.length < 4) break;
                let capLen = (capLenBytes[0] << 24) | (capLenBytes[1] << 16) | (capLenBytes[2] << 8) | capLenBytes[3];
                if (capLen <= 0 || capLen > 256) break;
                let capData = conn.RecvFull(capLen);
                if (!capData) break;
                let capStr = "";
                for (let j = 0; j < capData.length; j++) {
                  if (capData[j] > 31 && capData[j] < 127) {
                    capStr += String.fromCharCode(capData[j]);
                  }
                }
                if (capStr.length > 0) caps.push(capStr);
              } catch(e) { break; }
            }
            if (caps.length > 0) {
              capsInfo = " caps=" + caps.join(",");
            }
          }
        }
      } catch(e) {
      }
      conn.Close();
      Export("sic_dn=" + dnStr + capsInfo);

    args:
      Host: "{{Host}}"
      CpmiPort: "18190"

    matchers-condition: and
    matchers:
      - type: dsl
        dsl:
          - "success == true"
          - 'contains(response, "cn=cp_mgmt")'
        condition: and

    extractors:
      - type: regex
        name: sic-dn
        regex:
          - 'sic_dn=([^\s]+)'
        group: 1
# digest: 4b0a0048304602210098250d052bb8378a8b0f1645216384b94aad8ef03408e4d1adcd1964bc79e316022100de3dc6138b6c9d6ae8fb1a450a5c439849b9d069c21c7f692c3f4668de3e85bd:922c64590222798bb761d5b6d8e72950
9.8Score

CVSS Metrics

CVSS Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVE ID:
cve-2026-16232
CWE ID:
cwe-287

References

https://support.checkpoint.com/results/sk/sk185169https://www.rapid7.com/blog/post/ra-check-point-smartconsole-authentication-bypass-technical-analysis-cve-2026-16232/https://github.com/sfewer-r7/CVE-2026-16232

Remediation Steps

Update to the latest version with the vulnerability fixed.