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
    • 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-70152

CVE-2025-70152: Scholars Tracking System SQLi Vulnerability

CVE-2025-70152 is an SQL injection flaw in Community Project Scholars Tracking System 1.0 affecting admin endpoints. Attackers can exploit unauthenticated endpoints to execute malicious SQL queries and compromise data.

Published: February 20, 2026

CVE-2025-70152 Overview

CVE-2025-70152 is a critical SQL Injection vulnerability affecting code-projects Community Project Scholars Tracking System 1.0. The vulnerability exists in the admin user management endpoints /admin/save_user.php and /admin/update_user.php, which lack authentication checks and directly concatenate user-supplied POST parameters into SQL queries without validation or parameterization. This allows unauthenticated attackers to execute arbitrary SQL commands against the backend database.

Critical Impact

Unauthenticated attackers can exploit this SQL Injection vulnerability to compromise the entire database, extract sensitive data, modify records, or potentially gain command execution on the underlying server.

Affected Products

  • code-projects Community Project Scholars Tracking System 1.0
  • Affected endpoints: /admin/save_user.php
  • Affected endpoints: /admin/update_user.php

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-70152 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-70152

Vulnerability Analysis

This vulnerability represents a compound security failure combining two critical weaknesses: missing authentication controls and SQL Injection (CWE-89). The affected endpoints /admin/save_user.php and /admin/update_user.php are intended for administrative user management operations but fail to verify whether the requesting user has administrative privileges before processing requests.

More critically, user-supplied POST parameters including firstname, lastname, username, password, and user_id are directly concatenated into SQL queries without any input validation, sanitization, or use of parameterized queries. This classic SQL Injection pattern allows attackers to manipulate the structure of database queries, potentially extracting, modifying, or deleting data from the database.

The network-accessible nature of this vulnerability combined with no authentication requirements means any remote attacker can exploit this flaw without any prerequisites.

Root Cause

The root cause is twofold: first, the administrative endpoints lack proper authentication and authorization checks, allowing any user to access them. Second, the application constructs SQL queries through direct string concatenation of user input rather than using prepared statements or parameterized queries. This failure to implement defense-in-depth security measures exposes the application to trivial exploitation.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can send crafted HTTP POST requests directly to the vulnerable endpoints /admin/save_user.php or /admin/update_user.php with malicious SQL payloads embedded in the firstname, lastname, username, password, or user_id parameters. Since these parameters are concatenated directly into SQL statements, the injected SQL code executes with the privileges of the database user.

The vulnerability allows various SQL Injection techniques including UNION-based attacks to extract data from other tables, time-based blind injection for data exfiltration when direct output is not visible, and stacked queries for database modification or command execution depending on the database configuration.

For technical details on the exploitation methodology, refer to the GitHub advisory for CVE-2025-70152.

Detection Methods for CVE-2025-70152

Indicators of Compromise

  • Unusual HTTP POST requests to /admin/save_user.php or /admin/update_user.php from unauthenticated sessions
  • SQL syntax errors or unexpected database error messages in application logs
  • POST parameters containing SQL keywords such as UNION, SELECT, INSERT, UPDATE, DELETE, DROP, or comment sequences like -- and /*
  • Database query logs showing anomalous queries with injected payloads

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL Injection patterns in POST parameters targeting the affected endpoints
  • Monitor web server access logs for requests to /admin/save_user.php and /admin/update_user.php from IP addresses without valid authenticated sessions
  • Deploy database activity monitoring to detect unusual query patterns or unauthorized data access attempts
  • Configure intrusion detection systems (IDS) with signatures for common SQL Injection payloads

Monitoring Recommendations

  • Enable verbose logging on the web application and database server to capture request parameters and executed queries
  • Set up alerts for failed authentication attempts followed by direct access to administrative endpoints
  • Monitor for data exfiltration patterns such as unusually large response sizes or multiple sequential requests to administrative endpoints
  • Review database user activity logs for queries executed outside of normal application patterns

How to Mitigate CVE-2025-70152

Immediate Actions Required

  • Remove or restrict network access to the affected application until patches are applied
  • Implement authentication checks on /admin/save_user.php and /admin/update_user.php endpoints
  • Deploy a Web Application Firewall (WAF) with SQL Injection protection rules as an interim measure
  • Review database and application logs for signs of prior exploitation

Patch Information

No official vendor patch has been identified in the available data. Organizations using the Scholars Tracking System should contact code-projects for remediation guidance or consider the following code-level fixes:

  1. Implement proper authentication and authorization checks on all administrative endpoints
  2. Replace all dynamic SQL query construction with prepared statements using parameterized queries
  3. Validate and sanitize all user input before processing

Refer to the Code Projects PHP System page for the latest version information.

Workarounds

  • Restrict access to the /admin/ directory using web server access controls (IP whitelisting or HTTP Basic Authentication)
  • Deploy a reverse proxy or WAF to filter SQL Injection attempts before they reach the application
  • If feasible, disable the save_user.php and update_user.php endpoints until proper fixes are implemented
  • Isolate the database server and limit network connectivity to only necessary application servers
bash
# Apache .htaccess workaround to restrict admin directory access
# Place in /admin/.htaccess
<Directory "/var/www/html/admin">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Directory>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechCode Projects

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • Code Projects PHP System

  • GitHub Post CVE-2025-70152
  • Related CVEs
  • CVE-2026-5824: Simple Laundry System SQLi Vulnerability

  • CVE-2026-5554: Concert Ticket Reservation SQLi Flaw

  • CVE-2026-5555: Concert Ticket Reservation SQLi Vulnerability

  • CVE-2026-5665: Online FIR System SQLi 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