Back to Codebase

Vulnerability Analysis Report

Drupal Core v5.18

Scan ID: SCAN-DRUPAL-CORE-ml0imu • Hash: a999280d

Severity Score
Medium
Total Findings
3
Engine Version
ECOMGUARD-HYBRID-AST-1.5
Scan Duration
0.747s

Vulnerability Details

L64

Insecure DOM Manipulation (XSS) in collapse.js

CWE-79
File Location: misc/collapse.js:64
Security Score:
75 / 100
Needs Audit

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. Medium Confidence (Fuzzy matcher overlap - minor review required). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- var text = this.innerHTML;
+ element.textContent = data; // Or use DOMPurify to sanitize HTML output
L56

Insecure DOM Manipulation (XSS) in drupal.js

CWE-79
File Location: misc/drupal.js:56
Security Score:
72 / 100
Needs Audit

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. Medium Confidence (Fuzzy matcher overlap - minor review required). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- response = (iframe.contentWindow || iframe.contentDocument || iframe).document.body.innerHTML;
+ element.textContent = data; // Or use DOMPurify to sanitize HTML output
L101

Insecure DOM Manipulation (XSS) in progress.js

CWE-79
File Location: misc/progress.js:101
Security Score:
68 / 100
Needs Audit

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. Medium Confidence (Fuzzy matcher overlap - minor review required). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- error.innerHTML = string;
+ element.textContent = data; // Or use DOMPurify to sanitize HTML output