CVE-2026-0257

Palo Alto Networks PAN-OS Authentication Bypass (CVE-2026-0257)

Detects exploitation attempts of CVE-2026-0257, an authentication bypass vulnerability in Palo Alto Networks PAN-OS caused by improper reliance on cookies for security decisions (CWE-565). An attacker can manipulate session cookies to bypass authentication controls on PAN-OS management interfaces or VPN endpoints. This vulnerability is confirmed exploited in the wild (CISA KEV).

Vulnerability Intelligence

KEV — Known Exploited

Affected Software

Vendor
Palo Alto Networks
Product
PAN-OS

Weakness (CWE)

Timeline

Disclosed
May 29, 2026

CVSS

Unscored
Write-up coming soon

What is CVE-2026-0257 Palo Alto Networks PAN-OS Authentication Bypass (CVE-2026-0257)?

Palo Alto Networks PAN-OS Authentication Bypass (CVE-2026-0257) (CVE-2026-0257) maps to the Initial Access and Privilege Escalation and Credential Access tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for Palo Alto Networks PAN-OS Authentication Bypass (CVE-2026-0257), covering the data sources and telemetry it touches: Palo Alto Networks PAN-OS Syslog, CommonSecurityLog, Azure Network Analytics. The queries below are rated critical severity at high confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Credential Access
Microsoft Sentinel / Defender
kusto
union CommonSecurityLog, AzureNetworkAnalytics_CL
| where TimeGenerated >= ago(7d)
| where DeviceVendor =~ "Palo Alto Networks" or DeviceProduct =~ "PAN-OS"
| where Activity has_any ("auth-bypass", "session-hijack", "invalid-cookie", "auth-failure") or RequestURL has_any ("/php/login.php", "/api/?type=keygen", "/global-protect", "/ssl-vpn") or AdditionalExtensions has_any ("cookie", "bypass", "forged")
| extend SrcIP = coalesce(SourceIP, SourceAddress)
| summarize AttemptCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated), UniqueURIs = dcount(RequestURL), UniqueUsers = dcount(SourceUserName) by SrcIP, DeviceProduct, Activity, bin(TimeGenerated, 5m)
| where AttemptCount > 3
| extend RiskScore = case(AttemptCount > 20, "Critical", AttemptCount > 10, "High", "Medium")
| project-reorder TimeGenerated, SrcIP, Activity, AttemptCount, UniqueURIs, UniqueUsers, RiskScore, FirstSeen, LastSeen

Detects authentication bypass attempts against PAN-OS management and VPN interfaces by correlating abnormal cookie-based auth failures, suspicious URI patterns, and repeated attempts from single sources in CommonSecurityLog and Azure network data.

critical severity high confidence

Data Sources

Palo Alto Networks PAN-OS Syslog CommonSecurityLog Azure Network Analytics

Required Tables

CommonSecurityLog AzureNetworkAnalytics_CL

False Positives

  • Legitimate administrators performing repeated authentication during management tasks
  • Automated monitoring or health-check systems polling PAN-OS endpoints
  • Penetration testing or vulnerability scanning by authorized teams
  • Expired session cookies causing multiple re-authentication attempts by VPN clients

Sigma rule & cross-platform mapping

The detection logic for Palo Alto Networks PAN-OS Authentication Bypass (CVE-2026-0257) (CVE-2026-0257) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  category: network_connection
  product: windows

Browse the community-maintained Sigma rules for this technique:


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1PAN-OS Cookie Bypass Authentication Simulation

    Expected signal: PAN-OS auth logs should show repeated authentication failure events with unusual cookie headers; HTTP access logs should capture the source IP, URI, and malformed cookie values; network monitoring should detect the rapid sequential requests to multiple PAN-OS endpoints.

  2. Test 2PAN-OS Management Interface Enumeration

    Expected signal: Network logs should capture sequential HTTP GET/POST requests to multiple PAN-OS management URIs from single source; firewall logs should record the connection attempts and response codes; IDS/IPS should flag the rapid enumeration pattern.

  3. Test 3Session Token Forgery Attempt Against PAN-OS

    Expected signal: PAN-OS authentication daemon logs should show multiple failed auth attempts with varying PHPSESSID values and non-standard headers (X-PAN-AUTHCHECK); SIEM should capture the pattern of sequential attempts with different cookie values from single source IP.

Unlock Pro Content

Get the full detection package for CVE-2026-0257 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections