Back to Codebase

Vulnerability Analysis Report

Joomla CMS v5.4.0-alpha2

Scan ID: SCAN-JOOMLA-CORE-69lWHK • Hash: e4dd5528

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

Vulnerability Details

L25

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/modules/mod_privacy_dashboard/tmpl/default.php:25
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
- <th scope="col" class="w-40"><?php echo Text::_('COM_PRIVACY_DASHBOARD_HEADING_REQUEST_TYPE'); ?></th>
+ echo htmlspecialchars(Text::_('COM_PRIVACY_DASHBOARD_HEADING_REQUEST_TYPE'), ENT_QUOTES, "UTF-8");
L54

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/modules/mod_privacy_dashboard/tmpl/default.php:54
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
- <?php echo Text::_('COM_PRIVACY_DASHBOARD_NO_REQUESTS'); ?>
+ echo htmlspecialchars(Text::_('COM_PRIVACY_DASHBOARD_NO_REQUESTS'), ENT_QUOTES, "UTF-8");
L101

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/modules/mod_privacy_status/tmpl/default.php:101
Security Score:
87 / 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
- <small><a href="<?php echo Route::_('index.php?option=com_privacy&view=requests&filter[status]=1&list[fullordering]=a.requested_at ASC'); ?>"><?php echo Text::_('COM_PRIVACY_SHOW_URGENT_REQUESTS'); ?></a></small>
+ echo htmlspecialchars(Route::_('index.php?option=com_privacy&view=requests&filter[status]=1&list[fullordering]=a.requested_at ASC'), ENT_QUOTES, "UTF-8");
L33

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/modules/mod_post_installation_messages/tmpl/default.php:33
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
- <?php echo Text::_('MOD_POST_INSTALLATION_MESSAGES'); ?>
+ echo htmlspecialchars(Text::_('MOD_POST_INSTALLATION_MESSAGES'), ENT_QUOTES, "UTF-8");
L63

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/modules/mod_privacy_dashboard/tmpl/default.php:63
Security Score:
85 / 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
- <div class="col-md-6"><?php echo Text::plural('COM_PRIVACY_DASHBOARD_BADGE_ACTIVE_REQUESTS', $activeRequests); ?></div>
+ echo htmlspecialchars(Text::plural('COM_PRIVACY_DASHBOARD_BADGE_ACTIVE_REQUESTS', $activeRequests), ENT_QUOTES, "UTF-8");