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

CVE-2026-5644: Student Management System XSS Vulnerability

CVE-2026-5644 is a cross-site scripting flaw in Cyber-III Student Management System affecting the batch-notice.php file. Attackers can exploit this remotely to inject malicious scripts. This article covers technical details, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-5644 Overview

CVE-2026-5644 is a reflected cross-site scripting (XSS) vulnerability [CWE-79] in the Cyber-III Student-Management-System, an open-source PHP application hosted on GitHub. The flaw resides in the /admin/Add%20notice/batch-notice.php file, where the $_SERVER['PHP_SELF'] value is rendered without proper sanitization. An attacker can craft a malicious URL that injects JavaScript into the response when an authenticated administrator visits it. The project uses continuous delivery with rolling releases, so no fixed version is currently published. The exploit has been disclosed publicly, and the maintainers had not responded to the upstream issue report at the time of disclosure.

Critical Impact

Authenticated administrators visiting a crafted URL may execute attacker-controlled JavaScript in the admin panel context, enabling session theft and unauthorized actions.

Affected Products

  • Cyber-III Student-Management-System up to commit 1a938fa61e9f735078e9b291d2e6215b4942af3f
  • All rolling-release builds prior to an upstream fix
  • Deployments exposing /admin/Add notice/batch-notice.php

Discovery Timeline

  • 2026-04-06 - CVE-2026-5644 published to NVD
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2026-5644

Vulnerability Analysis

The vulnerability is a reflected cross-site scripting flaw classified under [CWE-79]. The affected script, batch-notice.php, echoes the $_SERVER['PHP_SELF'] server variable into HTML output without encoding. PHP populates $_SERVER['PHP_SELF'] from the request path, and many web servers permit additional path segments after the script name. An attacker who appends URL-encoded HTML to the request path causes that content to be reflected back in form actions or other markup.

Exploitation requires high privileges, since the vulnerable endpoint sits behind the admin login, and it requires user interaction in the form of a victim clicking the crafted link. Successful exploitation runs JavaScript under the origin of the application, which can be used to harvest session cookies, perform CSRF-style state changes, or alter rendered content for the administrator.

Root Cause

The root cause is missing output encoding of a server-controlled variable that reflects attacker-supplied path data. $_SERVER['PHP_SELF'] is commonly used inside <form action="..."> declarations and is treated by developers as trusted, but it inherits attacker-controlled path information from the request URI. Without applying htmlspecialchars() or an equivalent encoding routine, injected markup is interpreted by the browser.

Attack Vector

The attack is delivered over the network and triggered when a logged-in administrator follows a crafted link to the batch-notice.php endpoint. The malicious payload is encoded into the URL path so the script reflects it back into the rendered HTML. No additional authentication step beyond the existing admin session is required to execute the injected script. Public exploit details are referenced in the VulDB Vulnerability Details entry and the upstream GitHub Issue Tracker.

Detection Methods for CVE-2026-5644

Indicators of Compromise

  • Web server access logs containing requests to /admin/Add%20notice/batch-notice.php with appended path segments containing %3C, %3E, script, or onerror tokens.
  • Outbound requests from administrator browsers to unknown domains immediately after visiting the admin panel.
  • Unexpected modifications to notice records performed under an administrator account shortly after a link-click event.

Detection Strategies

  • Inspect HTTP request URIs for path-based injection patterns targeting PHP scripts, particularly attempts to break out of attribute contexts around PHP_SELF reflections.
  • Deploy a Content Security Policy (CSP) in report-only mode to surface inline script execution attempts on admin pages.
  • Correlate referer headers and click events that lead administrators from external sources directly into authenticated admin paths.

Monitoring Recommendations

  • Forward web server and PHP application logs to a centralized analytics platform and alert on path traversal-like segments appended to .php files.
  • Monitor admin session activity for anomalous DOM-initiated requests, such as bulk record edits triggered immediately after navigation.
  • Review GitHub issue #238 and the upstream repository regularly for an official patch commit.

How to Mitigate CVE-2026-5644

Immediate Actions Required

  • Restrict access to /admin/ paths to trusted networks or VPN ranges until an upstream fix is available.
  • Educate administrators to avoid clicking unsolicited links that target the application's admin endpoints.
  • Apply a web application firewall rule that blocks requests containing HTML metacharacters in PHP script path segments.

Patch Information

No official patch has been released. The project uses continuous delivery with rolling releases, and the maintainers had not responded to the upstream issue at the time of CVE publication. Track the GitHub Project Repository and the GitHub Issue Tracker for fix commits superseding 1a938fa61e9f735078e9b291d2e6215b4942af3f.

Workarounds

  • Locally patch batch-notice.php to wrap any output of $_SERVER['PHP_SELF'] in htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') or replace it with a hardcoded form action.
  • Configure the web server to reject requests where the path contains characters outside the expected script name set.
  • Enforce a strict Content Security Policy that disallows inline scripts and unknown script sources on admin pages.
bash
# Example Apache rule to block angle brackets in PHP script paths
<LocationMatch "^/admin/.*\.php">
    RewriteEngine On
    RewriteCond %{REQUEST_URI} (%3C|%3E|<|>) [NC]
    RewriteRule .* - [F,L]
</LocationMatch>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCyber Iii Student Management System

  • SeverityLOW

  • CVSS Score1.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:P/VC:N/VI:L/VA:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Project Repository

  • GitHub Issue Tracker

  • VulDB Vulnerability Submission

  • VulDB Vulnerability Details

  • VulDB CTI Information
  • Related CVEs
  • CVE-2026-5671: Cyber-III Student Management XSS Flaw

  • CVE-2026-5670: Student Management System RCE 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