Back to Codebase

Vulnerability Analysis Report

Drupal Core v6.28

Scan ID: SCAN-DRUPAL-CORE-q312XU • Hash: f4a4da9a

Severity Score
High
Total Findings
5
Engine Version
ECOMGUARD-HYBRID-AST-1.5
Scan Duration
0.8s

Vulnerability Details

L453

Cross-Site Scripting (XSS) in install.php

CWE-79
File Location: install.php:453
Security Score:
89 / 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");
L579

Cross-Site Scripting (XSS) in install.php

CWE-79
File Location: install.php:579
Security Score:
88 / 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");
L65

Cross-Site Scripting (XSS) in forum-list.tpl.php

CWE-79
File Location: modules/forum/forum-list.tpl.php:65
Security Score:
86 / 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
- <td class="posts"><?php print $forum->num_posts ?></td>
+ echo htmlspecialchars($forum->num_posts ?></td>, ENT_QUOTES, "UTF-8");
L62

Insecure DOM Manipulation (XSS) in collapse.js

CWE-79
File Location: misc/collapse.js:62
Security Score:
74 / 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
L99

Insecure DOM Manipulation (XSS) in progress.js

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