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-2026-10568

CVE-2026-10568: Fees Management System SQLi Vulnerability

CVE-2026-10568 is a SQL injection vulnerability in itsourcecode Fees Management System 1.0 affecting the manage_payment.php file. This post covers the technical details, affected versions, security impact, and mitigation.

Published: June 4, 2026

CVE-2026-10568 Overview

CVE-2026-10568 is a SQL injection vulnerability affecting itsourcecode Fees Management System version 1.0. The flaw resides in the /manage_payment.php script, where the ID parameter is passed to a database query without proper sanitization. Authenticated remote attackers can manipulate this parameter to inject arbitrary SQL statements. Public exploit details are available, increasing the likelihood of opportunistic exploitation against exposed deployments.

The vulnerability is classified under CWE-74 (Improper Neutralization of Special Elements in Output Used by a Downstream Component). The EPSS probability is 0.033%, indicating low predicted exploitation activity in the near term.

Critical Impact

Authenticated attackers can read, modify, or delete records in the fees management database by injecting SQL through the ID parameter of /manage_payment.php.

Affected Products

  • itsourcecode Fees Management System 1.0
  • The /manage_payment.php endpoint
  • Deployments using the vulnerable ID query parameter handling

Discovery Timeline

  • 2026-06-02 - CVE-2026-10568 published to NVD
  • 2026-06-02 - Last updated in NVD database

Technical Details for CVE-2026-10568

Vulnerability Analysis

The vulnerability exists in /manage_payment.php within the itsourcecode Fees Management System. The script accepts an ID parameter from the HTTP request and concatenates the value directly into a SQL query. Because the application performs no parameterized binding or input validation, attacker-supplied syntax is interpreted as SQL code by the backend database.

This is a classic in-band SQL injection scenario. An attacker with low-privilege application access can exfiltrate database contents, modify payment records, or escalate privileges within the application by manipulating authentication-related tables. Reference details are tracked in the VulDB entry for CVE-2026-10568 and the GitHub issue discussion.

Root Cause

The root cause is improper neutralization of user-controlled input passed to a SQL query [CWE-74]. The ID argument from the request is concatenated into the query string rather than being bound through prepared statements. No type validation or allow-list filtering is applied before the value reaches the database driver.

Attack Vector

The attack is launched remotely over the network and requires low-level authenticated access to the application. The attacker submits a crafted value for the ID parameter to /manage_payment.php, breaking out of the original SQL context to append additional clauses such as UNION SELECT statements or boolean-based payloads. A working exploit has been disclosed publicly, lowering the barrier to weaponization.

The vulnerability mechanism is described in prose because no verified proof-of-concept code is available from authoritative sources. See the VulDB vulnerability record #367675 for additional technical context.

Detection Methods for CVE-2026-10568

Indicators of Compromise

  • HTTP requests to /manage_payment.php containing SQL metacharacters such as single quotes, UNION, SELECT, --, or /* in the ID parameter
  • Web server logs showing repeated requests to /manage_payment.php with unusually long or encoded ID values
  • Database error messages referencing syntax errors triggered from the payment management module
  • Unexpected outbound traffic from the application server following anomalous manage_payment.php requests

Detection Strategies

  • Deploy web application firewall rules that inspect the ID parameter on /manage_payment.php for SQL injection patterns
  • Enable database query logging and alert on queries containing tautologies such as OR 1=1 or stacked queries originating from the payment module
  • Correlate authenticated session activity with database read volumes to identify abuse by low-privilege accounts

Monitoring Recommendations

  • Monitor application and database logs for syntax errors, malformed queries, and slow queries tied to manage_payment.php
  • Track failed and successful logins followed by abnormal access patterns to payment-related endpoints
  • Forward web server, database, and application logs to a centralized analytics platform for retrospective hunting against the indicators above

How to Mitigate CVE-2026-10568

Immediate Actions Required

  • Restrict network exposure of the Fees Management System to trusted internal users until a patched build is deployed
  • Audit application accounts and reset credentials for any low-privilege users that may have abused the endpoint
  • Review database logs for evidence of injection attempts against /manage_payment.php
  • Apply web application firewall signatures that block SQL injection payloads targeting the ID parameter

Patch Information

No official vendor patch has been published in the available references at the time of disclosure. Operators should monitor the itsourcecode website and the GitHub issue #11 thread for vendor responses, and consider applying source-level fixes by replacing dynamic SQL with prepared statements that bind the ID parameter as an integer.

Workarounds

  • Implement server-side validation that rejects any non-numeric value for the ID parameter before it reaches the database layer
  • Run the application database account with the least privilege required, removing write or schema-modification rights where possible
  • Place the application behind a reverse proxy or WAF that enforces strict input filtering for /manage_payment.php
  • Disable or remove the affected endpoint if the payment management feature is not actively used
bash
# Example WAF rule (ModSecurity) to block SQLi patterns on the vulnerable endpoint
SecRule REQUEST_URI "@beginsWith /manage_payment.php" \
  "chain,deny,status:403,id:1010568,msg:'CVE-2026-10568 SQLi attempt on manage_payment.php'"
  SecRule ARGS:ID "@rx (?i)(union(\s|/\*.*\*/)+select|--|;|/\*|or\s+1=1|sleep\s*\()" "t:none,t:urlDecodeUni"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechItsourcecode

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.03%

  • 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-74
  • Technical References
  • GitHub Issue #11 Discussion

  • IT Source Code Overview

  • VulDB CVE-2026-10568

  • VulDB Report Submission #829322

  • VulDB Vulnerability #367675

  • VulDB CTI for Vulnerability #367675
  • Related CVEs
  • CVE-2026-10297: Fees Management System SQLi Vulnerability

  • CVE-2026-10302: Fees Management System SQLi Vulnerability

  • CVE-2026-10296: Fees Management System SQLi Vulnerability

  • CVE-2026-10265: itsourcecode CMS SQLi 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