A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2025-14518

CVE-2025-14518: Powerjob SSRF Vulnerability Explained

CVE-2025-14518 is a server-side request forgery flaw in Powerjob up to version 5.1.2 that allows attackers to manipulate network requests. This article covers the technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2025-14518 Overview

CVE-2025-14518 is a Server-Side Request Forgery (SSRF) vulnerability in PowerJob versions up to 5.1.2. The flaw resides in the checkConnectivity function within src/main/java/tech/powerjob/common/utils/net/PingPongUtils.java, part of the Network Request Handler component. Attackers can manipulate the targetIp and targetPort arguments to coerce the server into issuing arbitrary network requests. The vulnerability is remotely exploitable and a public exploit description exists. PowerJob is an open-source distributed task scheduling framework, making exposure of the management interface a meaningful concern for internal networks.

Critical Impact

Authenticated remote attackers can leverage PowerJob as a proxy to probe internal network services, bypassing perimeter controls and enabling reconnaissance against systems not directly reachable from the internet.

Affected Products

  • PowerJob versions up to and including 5.1.2
  • Component: tech.powerjob.common.utils.net.PingPongUtils (Network Request Handler)
  • Function: checkConnectivity

Discovery Timeline

  • 2025-12-11 - CVE-2025-14518 published to NVD
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2025-14518

Vulnerability Analysis

The vulnerability is classified as Server-Side Request Forgery under [CWE-918]. PowerJob exposes a connectivity check feature that accepts a target host and port from a client request and performs an outbound TCP or HTTP probe to that destination. Because the checkConnectivity function does not validate or restrict the supplied targetIp and targetPort parameters, an attacker can direct the PowerJob server to connect to arbitrary internal hosts.

SSRF in a scheduling framework is particularly useful for attackers performing internal reconnaissance. PowerJob server instances frequently run inside trusted network segments alongside databases, message brokers, and cloud metadata endpoints. The attacker requires low privileges, and no user interaction is needed. While the direct confidentiality and integrity impact is limited, the vulnerability becomes a pivot primitive in chained attacks.

Root Cause

The root cause is missing input validation on network destination parameters. The checkConnectivity routine treats user-supplied IP addresses and ports as trusted, with no allowlist of permitted targets, no blocklist for loopback or RFC1918 ranges, and no filter for cloud metadata addresses such as 169.254.169.254.

Attack Vector

An authenticated remote attacker sends a crafted request to the PowerJob endpoint that invokes checkConnectivity, specifying an internal address and port in the targetIp and targetPort fields. The PowerJob server initiates the connection from its own network context. The attacker observes response timing, error messages, or returned data to map internal services. Refer to the GitHub Issue #1144 and VulDB entry #335856 for technical details on the request structure.

Detection Methods for CVE-2025-14518

Indicators of Compromise

  • Outbound connections from PowerJob server processes to internal IP ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) that do not match expected worker node addresses.
  • Connection attempts from the PowerJob server to cloud metadata endpoints such as 169.254.169.254 or metadata.google.internal.
  • Repeated checkConnectivity invocations in PowerJob application logs targeting varied IP and port combinations, indicating port-scan behavior.

Detection Strategies

  • Inspect PowerJob server logs for high-frequency or sequential calls to the connectivity check endpoint, particularly with non-worker target addresses.
  • Correlate web application firewall (WAF) logs with PowerJob outbound network telemetry to identify request-to-connection pivots.
  • Deploy egress filtering alerts that fire when the PowerJob host attempts connections outside its documented worker subnet.

Monitoring Recommendations

  • Capture and retain PowerJob HTTP access logs with full request body parameters for the connectivity check API.
  • Enable network flow logging on the PowerJob server subnet to baseline normal worker communication patterns.
  • Alert on any PowerJob-originated traffic to IMDS addresses or to internal management interfaces such as Kubernetes API, Redis, or database ports.

How to Mitigate CVE-2025-14518

Immediate Actions Required

  • Restrict access to the PowerJob management console and APIs to trusted administrators only, using network ACLs or a reverse proxy with authentication enforcement.
  • Place the PowerJob server in a segmented network that cannot reach cloud metadata services, sensitive internal applications, or production databases not required for job execution.
  • Audit existing PowerJob deployments for unexpected checkConnectivity calls in logs over the last 90 days.

Patch Information

At the time of publication, no vendor patch is referenced in the NVD record. Monitor the PowerJob GitHub repository and GitHub Issue #1144 for fix releases beyond version 5.1.2. Upgrade to a patched release as soon as one becomes available.

Workarounds

  • Apply host-based egress firewall rules on the PowerJob server that permit outbound traffic only to known worker IP addresses and required infrastructure.
  • Block outbound requests from the PowerJob process to link-local and metadata addresses (169.254.0.0/16).
  • Disable or remove the connectivity check feature if it is not operationally required, by restricting the endpoint at a reverse proxy layer.
  • Enforce strong authentication and role-based access control on the PowerJob console to reduce the population of users who can invoke the vulnerable function.
bash
# Example iptables egress restriction for PowerJob host
# Allow outbound to known worker subnet only
iptables -A OUTPUT -p tcp -d 10.20.30.0/24 -j ACCEPT
# Block link-local / cloud metadata
iptables -A OUTPUT -p tcp -d 169.254.0.0/16 -j REJECT
# Block RFC1918 ranges not used by workers
iptables -A OUTPUT -p tcp -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -p tcp -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -p tcp -d 192.168.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/TechPowerjob

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.02%

  • 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 #1144

  • GitHub Issue Comment

  • VulDB CTI ID #335856

  • VulDB #335856

  • VulDB Submission #702896
  • Related CVEs
  • CVE-2026-5736: PowerJob SQL Injection Vulnerability

  • CVE-2026-5739: PowerJob RCE Vulnerability

  • CVE-2025-11581: Powerjob Auth Bypass 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