Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-34367

CVE-2026-34367: InvoiceShelf SSRF Vulnerability

CVE-2026-34367 is a Server-Side Request Forgery flaw in InvoiceShelf that allows attackers to fetch remote resources through unsanitized HTML in invoice notes. This article covers technical details, affected versions, and fixes.

Published: April 2, 2026

CVE-2026-34367 Overview

A Server-Side Request Forgery (SSRF) vulnerability has been identified in InvoiceShelf, an open-source web and mobile application designed for tracking expenses, payments, and creating professional invoices and estimates. The vulnerability exists in the Invoice PDF generation module, where user-supplied HTML in the invoice Notes field is passed unsanitized to the Dompdf rendering library. This allows attackers to craft malicious invoice content that forces the server to fetch arbitrary remote resources, potentially exposing internal network infrastructure and sensitive data.

Critical Impact

Authenticated attackers with invoice creation privileges can leverage this SSRF vulnerability to access internal services, cloud metadata endpoints, and potentially exfiltrate sensitive information from the server's network context.

Affected Products

  • InvoiceShelf versions prior to 2.2.0

Discovery Timeline

  • 2026-03-31 - CVE CVE-2026-34367 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34367

Vulnerability Analysis

This SSRF vulnerability (CWE-918) stems from insufficient input validation in InvoiceShelf's PDF generation workflow. When users create or edit invoices, the Notes field accepts HTML content that is subsequently processed by the Dompdf library for PDF rendering. Dompdf, by design, fetches remote resources referenced in the HTML markup such as images, stylesheets, and fonts. Without proper sanitization of user input, this behavior can be exploited to make the server issue outbound HTTP requests to attacker-controlled destinations or internal network resources.

The vulnerability can be triggered through two distinct pathways: the PDF preview functionality and the email delivery endpoint. Both pathways process the invoice content and invoke Dompdf rendering, making them susceptible to SSRF attacks.

Root Cause

The root cause is the lack of input sanitization for user-supplied HTML content in the invoice Notes field before passing it to the Dompdf rendering library. Dompdf's default configuration allows fetching of remote resources, and without proper validation or URL whitelisting, arbitrary network requests can be initiated from the server context.

Attack Vector

This vulnerability is exploitable over the network by authenticated users with high-level privileges (invoice creation capabilities). An attacker can inject malicious HTML tags such as <img>, <link>, or <iframe> referencing internal URLs, cloud provider metadata endpoints (e.g., http://169.254.169.254/), or external attacker-controlled servers. When the PDF preview is triggered or an invoice email is sent, the server fetches these resources, potentially leaking internal information or allowing reconnaissance of internal network topology.

The attack can result in information disclosure from internal services that would otherwise be inaccessible from external networks. The scope is changed as the vulnerability affects resources beyond the vulnerable component itself, allowing access to internal infrastructure.

Detection Methods for CVE-2026-34367

Indicators of Compromise

  • Unusual outbound HTTP requests originating from the InvoiceShelf application server to internal IP ranges (e.g., 10.x.x.x, 172.16.x.x, 192.168.x.x)
  • Server-side requests to cloud metadata endpoints such as 169.254.169.254 or metadata.google.internal
  • Invoice Notes fields containing suspicious HTML tags with src or href attributes pointing to non-standard URLs
  • Unexpected network connections from the web server process to local services (e.g., localhost ports, internal APIs)

Detection Strategies

  • Monitor outbound network traffic from application servers for connections to internal IP ranges and cloud metadata services
  • Implement web application firewall (WAF) rules to detect HTML injection patterns in invoice-related API endpoints
  • Review application logs for PDF generation errors or timeouts that may indicate failed SSRF attempts
  • Deploy network segmentation monitoring to detect lateral movement attempts from web application tiers

Monitoring Recommendations

  • Enable detailed logging for the Dompdf rendering process including all resource fetch attempts
  • Set up alerting for outbound requests from the InvoiceShelf server to RFC 1918 private address spaces
  • Monitor invoice creation and PDF generation endpoints for anomalous request patterns
  • Implement network-level visibility to track DNS queries originating from the application server

How to Mitigate CVE-2026-34367

Immediate Actions Required

  • Upgrade InvoiceShelf to version 2.2.0 or later immediately
  • Review all existing invoices for suspicious HTML content in Notes fields
  • Implement network egress filtering to restrict outbound connections from the application server
  • Consider disabling PDF email delivery functionality until the patch is applied

Patch Information

InvoiceShelf has released version 2.2.0 which addresses this SSRF vulnerability. The patch implements proper sanitization of user-supplied HTML content before processing by the Dompdf library. Administrators should upgrade immediately by following the official release notes available in the GitHub Release 2.2.0. Additional technical details about the vulnerability can be found in the GitHub Security Advisory GHSA-q9wx-ggwq-mcgh.

Workarounds

  • Configure Dompdf to disable remote resource fetching by setting isRemoteEnabled to false in the library configuration
  • Implement a strict Content Security Policy to restrict resource loading origins
  • Deploy network-level controls to block outbound requests from the application server to internal networks and cloud metadata endpoints
  • Use a reverse proxy or WAF to sanitize HTML input before it reaches the application
bash
# Example: Restrict outbound connections using iptables
# Block access to cloud metadata endpoints
iptables -A OUTPUT -d 169.254.169.254 -j DROP
# Block access to internal network ranges (adjust as needed)
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechInvoiceshelf

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Release 2.2.0

  • GitHub Security Advisory GHSA-q9wx-ggwq-mcgh
  • Related CVEs
  • CVE-2026-34366: InvoiceShelf Payment Receipt SSRF Vulnerability

  • CVE-2026-34365: InvoiceShelf SSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English