CVE-2019-1579
CVE-2019-1579 is a high-severity vulnerability in Paloaltonetworks Pan-os with a CVSS 3.x base score of 8.1. It is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog, confirming it has been exploited in the wild (added 2022-01-10). The underlying weakness is classified as CWE-134.
Key facts
- Severity: High (CVSS 3.x base score 8.1)
- CVSS v2: 6.8
- EPSS exploit prediction: 39% (98th percentile)
- Actively exploited: Yes — listed in CISA KEV (added 2022-01-10)
- EU (EUVD) id: EUVD-2019-10136
- EU exploitation: Flagged exploited in the ENISA EU Vulnerability Database (since 2022-01-10)
- Weakness: CWE-134
- Affected product: Paloaltonetworks Pan-os
- Published:
- Last modified:
Description
Remote Code Execution in PAN-OS 7.1.18 and earlier, PAN-OS 8.0.11-h1 and earlier, and PAN-OS 8.1.2 and earlier with GlobalProtect Portal or GlobalProtect Gateway Interface enabled may allow an unauthenticated remote attacker to execute arbitrary code.
CVE-2019-1579: Format String Vulnerability in Palo Alto Networks PAN-OS GlobalProtect
AI-generated analysis based on the vulnerability data on this page.
Summary
CVE-2019-1579 is an unauthenticated remote code execution vulnerability in Palo Alto Networks PAN-OS. The flaw resides in the GlobalProtect Portal and GlobalProtect Gateway interfaces, where a format string bug (CWE-134) allows an attacker to execute arbitrary code without prior authentication. This vulnerability has been actively exploited in the wild and is listed in both the CISA Known Exploited Vulnerabilities catalog and the EU Vulnerability Database.
Background
Palo Alto Networks PAN-OS powers the company's next-generation firewalls. The GlobalProtect feature provides SSL VPN connectivity for remote users through both a portal (for client provisioning) and gateway (for VPN tunnel termination) interface. In mid-2019, researchers from DEVCORE identified a critical format string vulnerability in these interfaces that could be triggered by sending a specially crafted request to an exposed GlobalProtect endpoint. The vulnerability gained significant attention after it was disclosed that it had been exploited in targeted attacks.
Root Cause
The vulnerability is classified as CWE-134: Use of Externally-Controlled Format String. In affected versions of PAN-OS, user-supplied input was passed directly to a format function (such as sprintf or equivalent) without proper sanitization. When an attacker can control the format string specifier, they can read from or write to arbitrary memory locations. This primitive enables full remote code execution because the attacker can overwrite function pointers, return addresses, or other critical memory structures to hijack control flow. The lack of input validation on the GlobalProtect HTTP interface made this exploitable without any authentication credentials.
Impact
The vulnerability is rated HIGH severity with a CVSS v3 score of 8.1 (CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H). The impact scores reflect the severe consequences:
- Confidentiality Impact: HIGH — An attacker can access sensitive data stored on the firewall or within the protected network.
- Integrity Impact: HIGH — The attacker can modify system configurations, implant backdoors, or alter traffic policies.
- Availability Impact: HIGH — The attacker can crash the device or disrupt VPN services.
The CVSS v2 score is 6.8 (AV:N/AC:M/Au:N/C:P/I:P/A:P), also indicating significant risk. Despite the "High" attack complexity in CVSS v3, public exploitation has been confirmed, meaning reliable exploit methods exist and have been used by threat actors.
Exploitation Walkthrough
Ethics Notice: This section describes the vulnerability mechanism from a defensive perspective. No weaponized exploit code is provided. Understanding the attack path is essential for detection, mitigation, and verification of patches.
The exploitation chain generally follows these stages:
- Reconnaissance: The attacker identifies a PAN-OS device with the GlobalProtect Portal or Gateway interface exposed to the internet, typically on TCP port 443.
- Format String Injection: The attacker sends a crafted HTTP request containing format string specifiers (such as
%n,%s, or%x) to a vulnerable endpoint in the GlobalProtect handler. - Memory Corruption: The unsanitized format string is processed by a logging or error-handling routine, causing memory reads or writes at attacker-controlled addresses.
- Code Execution: By carefully crafting the format string and using repeated requests, the attacker achieves arbitrary code execution in the context of the web server process, which runs with elevated privileges on the firewall.
Because the flaw is reachable pre-authentication, no valid VPN credentials or session tokens are required. The attacker only needs network reachability to the GlobalProtect interface.
Affected and Patched Versions
According to Palo Alto Networks, the following PAN-OS versions are affected:
- PAN-OS 7.1.18 and earlier
- PAN-OS 8.0.11-h1 and earlier
- PAN-OS 8.1.2 and earlier
The vulnerability only manifests when the GlobalProtect Portal or GlobalProtect Gateway interface is enabled. Devices without these features activated are not exposed to this attack vector. Organizations should upgrade to versions newer than the affected ranges; consult the official Palo Alto Networks security advisory for the exact fixed release numbers.
Remediation
- Upgrade PAN-OS: Apply the latest security patches from Palo Alto Networks that supersede the affected version ranges. Prioritize any internet-facing GlobalProtect gateways.
- Disable Unnecessary Interfaces: If GlobalProtect Portal or Gateway is not required, disable these interfaces to eliminate the attack surface entirely.
- Network Segmentation: Restrict access to GlobalProtect management interfaces to trusted IP ranges using external firewalls or network ACLs. Do not expose the management plane or GlobalProtect interfaces directly to the internet unless absolutely necessary.
- Compensating Controls: Deploy intrusion detection/prevention systems with signatures for known CVE-2019-1579 exploitation attempts. Monitor for anomalous HTTP requests containing format string characters directed at GlobalProtect endpoints.
Detection
Defenders can detect exploitation or post-exploitation activity through several methods:
- Network Traffic Analysis: Monitor for HTTP requests to GlobalProtect endpoints containing unusual format string patterns (
%n,%s,%x,%p) in parameters or headers. - Endpoint/Host Logs: Review PAN-OS system logs for crashes or restarts of the
sslvpnorpanagentprocesses, which may indicate failed or successful exploitation attempts. - File Integrity Monitoring: After patching, verify that no unexpected files, cron jobs, or user accounts have been created on the firewall.
- Threat Intelligence: Correlate firewall IP addresses against threat intelligence feeds for known exploitation campaigns targeting PAN-OS GlobalProtect.
Assessment
CVE-2019-1579 is not merely a theoretical risk. With an EPSS score of 0.39317 (approximately 39.3% probability of exploitation in the wild), it sits in the 98th percentile of tracked vulnerabilities, indicating exceptionally high real-world exploit likelihood. Its inclusion in the CISA KEV catalog (added 2022-01-10) and the EU Exploited Vulner Database confirms active, in-the-wild exploitation.
The combination of pre-authentication remote code execution, a high EPSS score, and confirmed ransomware affiliate usage makes this vulnerability a critical priority for remediation. Two key lessons emerge: first, user input must never be passed unsanitized to format functions; second, VPN concentrators and remote access solutions remain high-value targets that demand rigorous hardening and rapid patch cycles.
References
- https://security.paloaltonetworks.com/CVE-2019-1579
- https://devco.re/blog/2019/07/17/attacking-ssl-vpn-part-1-PreAuth-RCE-on-Palo-Alto-GlobalProtect-with-Uber-as-case-study/
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2019-1579
- http://www.securityfocus.com/bid/109310
- https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2019-0010
Frequently asked questions
- What is CVE-2019-1579?
- Remote Code Execution in PAN-OS 7.1.18 and earlier, PAN-OS 8.0.11-h1 and earlier, and PAN-OS 8.1.2 and earlier with GlobalProtect Portal or GlobalProtect Gateway Interface enabled may allow an unauthenticated remote attacker to execute arbitrary code.
- How severe is CVE-2019-1579?
- CVE-2019-1579 has a CVSS 3.x base score of 8.1, rated high severity. It is exploitable over network with high attack complexity, requires no privileges and no user interaction. Impact on confidentiality is high, integrity high, and availability high.
- Is CVE-2019-1579 being actively exploited?
- Yes. CVE-2019-1579 is on CISA's Known Exploited Vulnerabilities (KEV) catalog, added on 2022-01-10, which means active exploitation has been confirmed. It should be prioritised for remediation.
- What products are affected by CVE-2019-1579?
- CVE-2019-1579 affects Paloaltonetworks Pan-os. See the affected-products list for the exact vulnerable versions.
- How do I fix CVE-2019-1579?
- Review the linked vendor and NVD advisories for patched versions and mitigations, then upgrade or apply the recommended workaround. Because this CVE is known to be actively exploited, treat remediation as urgent — CISA KEV typically sets a short remediation deadline.
- Does CVE-2019-1579 have an EU (EUVD) identifier?
- Yes. CVE-2019-1579 is tracked in the ENISA EU Vulnerability Database (EUVD) as EUVD-2019-10136. It is also flagged as exploited in the EUVD (since 2022-01-10).
- When was CVE-2019-1579 published?
- CVE-2019-1579 was published on 2019-07-19 and last updated on 2026-06-17.
References
- http://www.securityfocus.com/bid/109310
- https://devco.re/blog/2019/07/17/attacking-ssl-vpn-part-1-PreAuth-RCE-on-Palo-Alto-GlobalProtect-with-Uber-as-case-study/
- https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2019-0010
- https://security.paloaltonetworks.com/CVE-2019-1579
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2019-1579
Affected products (1)
- cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:*
More vulnerabilities in Paloaltonetworks Pan-os
- CVE-2024-3400 — Critical (CVSS 10.0): A command injection as a result of arbitrary file creation vulnerability in the GlobalProtect feature of Palo Alto…
- CVE-2020-2021 — Critical (CVSS 10.0): When Security Assertion Markup Language (SAML) authentication is enabled and the 'Validate Identity Provider…
- CVE-2019-17440 — Critical (CVSS 10.0): Improper restriction of communications to Log Forwarding Card (LFC) on PA-7000 Series devices with second-generation…
- CVE-2012-6603 — Critical (CVSS 10.0): The web management UI in Palo Alto Networks PAN-OS before 3.1.12, 4.0.x before 4.0.10, and 4.1.x before 4.1.4 allows…
- CVE-2012-6601 — Critical (CVSS 10.0): The device-management command-line interface in Palo Alto Networks PAN-OS before 3.1.12, 4.0.x before 4.0.10, and 4.1.x…
- CVE-2012-6593 — Critical (CVSS 10.0): Palo Alto Networks PAN-OS before 3.1.10 and 4.0.x before 4.0.4 allows remote attackers to execute arbitrary commands…
All CVEs affecting Paloaltonetworks Pan-os →
Other CWE-134 vulnerabilities
- CVE-2012-1851 — Critical (CVSS 10.0): Format string vulnerability in the Print Spooler service in Microsoft Windows XP SP2 and SP3, Windows Server 2003 SP2,…
- CVE-2012-0242 — Critical (CVSS 10.0): Format string vulnerability in Advantech/BroadWin WebAccess before 7.0 allows remote attackers to execute arbitrary…
- CVE-2011-2475 — Critical (CVSS 10.0): Format string vulnerability in ECTrace.dll in the iMailGateway service in the Internet Mail Gateway in OneBridge Server…
- CVE-2011-1568 — Critical (CVSS 10.0): Format string vulnerability in the logText function in shmemmgr9.dll in IGSSdataServer.exe 9.00.00.11074, and…
- CVE-2010-4235 — Critical (CVSS 10.0): Format string vulnerability in RealNetworks Helix Server 12.x, 13.x, and 14.x before 14.2, and Helix Mobile Server…
- CVE-2011-0270 — Critical (CVSS 10.0): Format string vulnerability in nnmRptConfig.exe in HP OpenView Network Node Manager (OV NNM) 7.51 and 7.53 allows…