Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2955+ Articles
167+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-93973: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System (Subject Module)
CVE-2026-93973: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System (Subject Module)
SECURITYHIGHCVE-2026-93973

CVE-2026-93973: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System (Subject Module)

Online Reviewer Management System v1.0's subject btn_functions.php lets remote, unauthenticated attackers inject SQL via the ID parameter.

Dylan H.

Security Team

September 21, 2026
3 min read

Affected Products

  • SourceCodester Online Reviewer Management System v1.0

Overview

A second SQL injection vulnerability has surfaced in SourceCodester's Online Reviewer Management System v1.0, the same free PHP/MySQL exam-management template covered in our CVE-2026-93959 writeup. Tracked as CVE-2026-93973, this flaw lets a remote, unauthenticated attacker inject arbitrary SQL through the ID parameter of /reviewer_0/admins/assessments/subject/btn_functions.php?action=remove.


Technical Details

FieldValue
CVE IDCVE-2026-93973
SeverityHigh (CVSS 3.1: 7.3)
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
WeaknessCWE-74, CWE-89 (SQL Injection)
Vulnerable File/reviewer_0/admins/assessments/subject/btn_functions.php?action=remove
ParameterID
AuthenticationNone required
Exploit MaturityPublic PoC available

How It Works

The ID argument passed to the subject module's remove action is concatenated directly into a backend SQL query without parameterization (CWE-89), identical in pattern to the Course parameter bug in CVE-2026-93959. No authentication gate protects the endpoint, so network reachability is the only prerequisite for exploitation.

This is the third confirmed instance of the same injection pattern across the assessments module — the course module (CVE-2026-93959), this subject module (CVE-2026-93973), and the databank module (CVE-2026-93974, published alongside this one) all share the identical btn_functions.php?action=remove → ID parameter flaw. That consistency strongly suggests a shared, unvalidated helper function reused across every btn_functions.php in the codebase rather than three independent bugs.


Impact Assessment

Who Is At Risk

  • Any organization or individual running Online Reviewer Management System v1.0 with the admin/assessments module reachable over the network
  • As with the course-module flaw, expect exposure concentrated on small schools, training centers, and unmonitored personal deployments

Potential Impact

  • Unauthorized read access to the application database, including student records, grades, and admin credentials
  • Data tampering or deletion via injected UPDATE/DELETE statements against the subject table
  • Chained exploitation risk: an attacker who automates all three known btn_functions.php endpoints gets three independent paths into the same database

Mitigation

  • Patch all three known-vulnerable btn_functions.php files (course, subject, databank) to use parameterized queries — patching only the module in the news headline leaves the others open
  • Deploy a WAF with SQL injection rules as an interim compensating control across the entire /admins/assessments/ path, not just the affected file
  • Restrict network exposure of the admin/assessments module to trusted networks only
  • Audit database logs for anomalous queries against the subject table going back to disclosure
  • Given the recurring, systemic nature of this injection pattern, reassess whether this unmaintained template is appropriate for any deployment handling real student or institutional data

References

  • NVD — CVE-2026-93973
  • VulDB — CVE-2026-93973

Related Reading

  • CVE-2026-93959: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System
  • CVE-2026-93974: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System (Databank Module)
#SourceCodester#CVE-2026-93973#SQL Injection#Web Security#PHP

Related Articles

CVE-2026-93974: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System (Databank Module)

Online Reviewer Management System v1.0's databank btn_functions.php lets remote, unauthenticated attackers inject SQL via the ID parameter.

3 min read

CVE-2026-93959: Unauthenticated SQL Injection in SourceCodester Online Reviewer Management System

Online Reviewer Management System v1.0's btn_functions.php lets remote, unauthenticated attackers inject SQL via the Course parameter. PoC public.

3 min read

CVE-2026-93997: Unauthenticated SQL Injection in SourceCodester Drug Recommendation System

Drug Recommendation System v1.0's edit_symptom.php lets remote, unauthenticated attackers inject SQL via the ID parameter.

3 min read
Back to all Security Alerts