The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-7605

CVE-2026-7605: JeecgBoot SSRF Vulnerability

CVE-2026-7605 is a server-side request forgery flaw in JeecgBoot up to version 3.9.1 affecting the CommonController file upload function. This article covers technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-7605 Overview

CVE-2026-7605 is a Server-Side Request Forgery (SSRF) vulnerability affecting JeecgBoot versions up to 3.9.1. The flaw resides in the CommonController.uploadImgByHttp method and the related HttpFileToMultipartFileUtil.httpFileToMultipartFile and HttpFileToMultipartFileUtil.downloadImageData functions inside CommonController.java. The vulnerable endpoint, uploadImgByHttp, accepts attacker-controlled URL input and fetches remote resources without sufficient validation. An authenticated remote attacker can manipulate this input to coerce the server into issuing arbitrary HTTP requests. Public exploit code has been released, and the vendor has confirmed the issue and committed to a fix in an upcoming release. The weakness is classified under CWE-918: Server-Side Request Forgery.

Critical Impact

Authenticated remote attackers can abuse the JeecgBoot image upload endpoint to make the server perform requests to internal or external hosts, exposing internal services and metadata endpoints.

Affected Products

  • JeecgBoot versions up to and including 3.9.1
  • The uploadImgByHttp endpoint exposed by CommonController.java
  • HttpFileToMultipartFileUtil helper functions used for HTTP-based file retrieval

Discovery Timeline

  • 2026-05-02 - CVE-2026-7605 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-7605

Vulnerability Analysis

The vulnerability stems from JeecgBoot's image upload-by-URL feature. The uploadImgByHttp action takes a remote URL parameter and passes it through HttpFileToMultipartFileUtil.httpFileToMultipartFile, which in turn invokes downloadImageData to fetch the resource. The implementation does not enforce an allow-list of destinations, validate the URL scheme, or restrict requests to internal address ranges. As a result, the server acts as a proxy on behalf of the attacker.

An attacker can supply URLs targeting 127.0.0.1, RFC1918 ranges, link-local addresses such as 169.254.169.254, or internal service hostnames. The server processes these requests with its own network identity, bypassing perimeter controls. Public exploit details have been published through the project's GitHub issue tracker and VulDB.

Root Cause

The root cause is missing validation of user-supplied URLs before initiating an outbound HTTP request. The download routine trusts the input string and follows it, including potential redirects, without checking the destination host or protocol. This pattern is the canonical CWE-918 condition.

Attack Vector

The attack is performed remotely over the network and requires low privileges to reach the authenticated endpoint. An attacker submits a crafted request to the uploadImgByHttp route with a URL pointing at an internal target. The application returns the fetched content or behavioral side effects, allowing the attacker to map internal services, query cloud metadata APIs, or interact with non-public HTTP interfaces. See the GitHub issue tracking this flaw for technical specifics.

No verified proof-of-concept code is reproduced here. Refer to the VulDB entry #360562 and the project repository for additional technical details.

Detection Methods for CVE-2026-7605

Indicators of Compromise

  • HTTP requests to the uploadImgByHttp endpoint containing URL parameters that reference internal IP ranges (127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) or link-local addresses such as 169.254.169.254.
  • Outbound connections originating from the JeecgBoot application server to cloud metadata endpoints or internal management interfaces shortly after upload-by-URL requests.
  • Repeated uploadImgByHttp calls from a single authenticated session enumerating sequential hosts or ports.

Detection Strategies

  • Inspect web server and application logs for POST or GET requests targeting the uploadImgByHttp route and parse the URL parameter for non-public destinations.
  • Correlate authenticated user session activity with subsequent egress traffic from the JeecgBoot host to identify proxied requests.
  • Apply Web Application Firewall (WAF) rules that block requests where the URL parameter resolves to private, loopback, or reserved address space.

Monitoring Recommendations

  • Baseline normal outbound destinations for the JeecgBoot service account and alert on deviations such as connections to metadata IPs or unusual internal hosts.
  • Forward application and network telemetry into a central analytics platform to enable cross-source correlation between request parameters and egress flows.
  • Track and alert on HTTP 4xx/5xx response patterns from the upload endpoint that may indicate scanning or enumeration attempts.

How to Mitigate CVE-2026-7605

Immediate Actions Required

  • Restrict access to the uploadImgByHttp endpoint at the reverse proxy or API gateway to trusted users and networks until a patched release is available.
  • Implement egress filtering on the JeecgBoot host to deny outbound traffic to RFC1918, loopback, and cloud metadata addresses.
  • Audit existing logs for prior exploitation attempts referencing internal IP ranges in the URL parameter.
  • Rotate any credentials retrievable from instance metadata services if the application runs in a cloud environment.

Patch Information

The vendor has confirmed the issue and stated a fix will ship in an upcoming JeecgBoot release. Track the project GitHub repository and issue #9555 for the patched version. Upgrade to the fixed release as soon as it becomes available.

Workarounds

  • Disable or remove the uploadImgByHttp route if the upload-by-URL feature is not required by the deployment.
  • Add a server-side allow-list of approved external image hosts and reject all other URLs before invoking HttpFileToMultipartFileUtil.
  • Validate URL schemes to permit only http and https, and resolve hostnames before fetching to block private and reserved IP destinations.
  • Place the application behind a network proxy that enforces destination policies for outbound HTTP requests.
bash
# Example egress restriction using iptables to block SSRF targets
iptables -A OUTPUT -m owner --uid-owner jeecg -d 127.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner jeecg -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner jeecg -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -m owner --uid-owner jeecg -d 192.168.0.0/16 -j REJECT
iptables -A OUTPUT -m owner --uid-owner jeecg -d 169.254.0.0/16 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechJeecgboot

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Project Repository

  • GitHub Issue #9555

  • GitHub Comment on Issue #9555

  • VulDB Submission #805709

  • VulDB #360562

  • VulDB #360562 CTI
  • Related CVEs
  • CVE-2026-7603: JeecgBoot SSRF Vulnerability

  • CVE-2026-7604: JeecgBoot OpenApi SSRF Vulnerability

  • CVE-2026-2945: JeecgBoot 3.9.0 SSRF Vulnerability

  • CVE-2026-8195: JeecgBoot SVG Handler XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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