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-5736

CVE-2026-5736: PowerJob SQL Injection Vulnerability

CVE-2026-5736 is a SQL injection flaw in PowerJob 5.1.0, 5.1.1, and 5.1.2 affecting the detailPlus endpoint. Attackers can exploit this remotely via the customQuery parameter. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-5736 Overview

A SQL injection vulnerability has been identified in PowerJob versions 5.1.0, 5.1.1, and 5.1.2. The vulnerability exists in the detailPlus endpoint within the InstanceController.java file located at powerjob-server/powerjob-server-starter/src/main/java/tech/powerjob/server/web/controller/InstanceController.java. The flaw allows attackers to manipulate the customQuery argument to inject arbitrary SQL commands, enabling unauthorized database access and manipulation.

Critical Impact

Remote attackers can exploit this SQL injection vulnerability without authentication to extract sensitive data, modify database contents, or potentially escalate to further system compromise through database server capabilities.

Affected Products

  • PowerJob 5.1.0
  • PowerJob 5.1.1
  • PowerJob 5.1.2

Discovery Timeline

  • 2026-04-07 - CVE-2026-5736 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-5736

Vulnerability Analysis

This SQL injection vulnerability stems from improper handling of user-supplied input in the customQuery parameter of the detailPlus endpoint. When a request is made to this endpoint, the application fails to properly sanitize or parameterize the customQuery input before incorporating it into SQL statements. This allows an attacker to break out of the intended query context and inject malicious SQL commands.

The vulnerability is classified under CWE-74 (Improper Neutralization of Special Elements in Output Used by a Downstream Component), which encompasses injection flaws where untrusted input is not properly neutralized before being used in sensitive operations.

Root Cause

The root cause of this vulnerability is the lack of proper input validation and parameterized queries in the InstanceController.java file. The customQuery argument is directly concatenated or interpolated into SQL statements without sanitization, allowing special SQL characters and commands to be interpreted by the database engine rather than treated as literal string data.

Attack Vector

The attack can be executed remotely over the network without requiring authentication. An attacker can craft malicious HTTP requests to the detailPlus endpoint, inserting SQL injection payloads into the customQuery parameter. Successful exploitation could allow the attacker to:

  • Extract sensitive data from the database including job configurations and credentials
  • Modify or delete database records
  • Potentially execute operating system commands if the database user has elevated privileges
  • Bypass application-level access controls

The vulnerability is exploitable by sending specially crafted requests to the affected endpoint. Technical details and a proposed fix are available in the GitHub Issue Discussion and the associated GitHub Pull Request. Security researchers should review these resources for specific payload construction details.

Detection Methods for CVE-2026-5736

Indicators of Compromise

  • Unusual or malformed requests to the /instance/detailPlus endpoint containing SQL syntax characters such as single quotes, semicolons, or UNION keywords
  • Database error messages in application logs indicating syntax errors from malformed queries
  • Unexpected database queries or data exfiltration patterns originating from the PowerJob server
  • Anomalous database access patterns including bulk data retrieval or modification operations

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in requests to PowerJob endpoints
  • Enable database query logging and monitor for suspicious query patterns or error conditions
  • Deploy network intrusion detection systems (IDS) with signatures for SQL injection attack patterns
  • Configure application-level logging to capture all requests to the detailPlus endpoint for forensic analysis

Monitoring Recommendations

  • Monitor HTTP access logs for requests containing URL-encoded SQL injection payloads targeting the customQuery parameter
  • Set up alerts for database errors that may indicate exploitation attempts
  • Track unusual data access patterns from the PowerJob application database user
  • Implement anomaly detection for request frequency and payload sizes to the affected endpoint

How to Mitigate CVE-2026-5736

Immediate Actions Required

  • Restrict network access to the PowerJob server to trusted networks and IP addresses only
  • Implement a Web Application Firewall (WAF) with SQL injection protection rules in front of the PowerJob deployment
  • Review and audit database permissions to ensure the PowerJob database user has minimal required privileges
  • Monitor the GitHub Pull Request for official patch availability and apply when released

Patch Information

As of the last modification date, the PowerJob project has been notified of this vulnerability through the GitHub Issue Discussion but has not yet responded with an official patch. A community-submitted fix is available in the GitHub Pull Request. Organizations should monitor the PowerJob GitHub Repository for official security updates and patch releases. Additional vulnerability details are documented in the VulDB Vulnerability Report.

Workarounds

  • Deploy a reverse proxy or WAF to filter and sanitize incoming requests to the detailPlus endpoint
  • If the detailPlus functionality is not required, consider disabling or restricting access to the endpoint at the network or application level
  • Implement strict input validation at the network perimeter to block requests containing SQL injection patterns
  • Apply database-level restrictions to limit the impact of potential SQL injection exploitation
bash
# Example WAF configuration to block SQL injection patterns (ModSecurity)
# Add to your ModSecurity rules configuration
SecRule ARGS:customQuery "@detectSQLi" \
    "id:100001,\
    phase:2,\
    block,\
    t:none,t:urlDecodeUni,\
    msg:'SQL Injection Attempt Detected in customQuery parameter',\
    logdata:'Matched Data: %{MATCHED_VAR}',\
    tag:'application-multi',\
    tag:'language-multi',\
    tag:'platform-multi',\
    tag:'attack-sqli',\
    severity:'CRITICAL'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechPowerjob

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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-74
  • Technical References
  • GitHub Project Repository

  • GitHub Issue Discussion

  • GitHub Pull Request

  • VulDB Submission Entry

  • VulDB Vulnerability Report

  • VulDB CTI Details
  • Related CVEs
  • CVE-2026-5739: PowerJob RCE Vulnerability

  • CVE-2025-11581: Powerjob Auth Bypass Vulnerability

  • CVE-2025-14518: PowerJob 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