Back to Codebase

Vulnerability Analysis Report

Drupal Core v5.0-beta-2

Scan ID: SCAN-DRUPAL-CORE-SzKxBu • Hash: 7bccfde7

Severity Score
High
Total Findings
4
Engine Version
ECOMGUARD-HYBRID-AST-1.5
Scan Duration
0.743s

Vulnerability Details

L397

Cross-Site Scripting (XSS) in install.php

CWE-79
File Location: install.php:397
Security Score:
84 / 100
Confirmed Issue

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. High Severity (Confirmed via full AST flow control tracing). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- print theme('install_page', drupal_get_form('install_select_profile_form', $profiles));
+ echo htmlspecialchars(theme('install_page', drupal_get_form('install_select_profile_form', $profiles)), ENT_QUOTES, "UTF-8");
L455

Cross-Site Scripting (XSS) in install.php

CWE-79
File Location: install.php:455
Security Score:
83 / 100
Confirmed Issue

Rule Engine Warning

Detected insecure pattern matching known vulnerability signatures. High Severity (Confirmed via full AST flow control tracing). Please apply remediation steps matching the recommended patch format below.

Heuristics Diff
- print theme('install_page', drupal_get_form('install_select_locale_form', $locales));
+ echo htmlspecialchars(theme('install_page', drupal_get_form('install_select_locale_form', $locales)), ENT_QUOTES, "UTF-8");
L56

Insecure DOM Manipulation (XSS) in drupal.js

CWE-79
File Location: misc/drupal.js:56
Security Score:
70 / 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
L98

Insecure DOM Manipulation (XSS) in progress.js

CWE-79
File Location: misc/progress.js:98
Security Score:
67 / 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