Back to Codebase

Vulnerability Analysis Report

Joomla CMS v5.1.0-alpha2

Scan ID: SCAN-JOOMLA-CORE-iZMQAa • Hash: 0070d23b

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

Vulnerability Details

L47

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-5.1.0-alpha2/administrator/components/com_postinstall/tmpl/messages/default.php:47
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
- <a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.archive&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'); ?>" class="btn btn-danger btn-sm">
+ echo htmlspecialchars(Route::_('index.php?option=com_postinstall&view=messages&task=message.archive&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'), ENT_QUOTES, "UTF-8");
L122

Cross-Site Scripting (XSS) in DisplayController.php

CWE-79
File Location: joomla-cms-5.1.0-alpha2/administrator/components/com_privacy/src/Controller/DisplayController.php:122
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
- echo new JsonResponse(['number_urgent_requests' => $numberUrgentRequests]);
+ echo htmlspecialchars(new JsonResponse(['number_urgent_requests' => $numberUrgentRequests]), ENT_QUOTES, "UTF-8");
L101

Cross-Site Scripting (XSS) in default_system.php

CWE-79
File Location: joomla-cms-5.1.0-alpha2/administrator/components/com_admin/tmpl/sysinfo/default_system.php:101
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
- <?php echo Text::_('COM_ADMIN_WEB_SERVER'); ?>
+ echo htmlspecialchars(Text::_('COM_ADMIN_WEB_SERVER'), ENT_QUOTES, "UTF-8");
L24

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-5.1.0-alpha2/administrator/components/com_postinstall/tmpl/messages/default.php:24
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
- <label for="eid" class="me-sm-2"><?php echo Text::_('COM_POSTINSTALL_MESSAGES_FOR'); ?></label>
+ echo htmlspecialchars(Text::_('COM_POSTINSTALL_MESSAGES_FOR'), ENT_QUOTES, "UTF-8");
L34

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-5.1.0-alpha2/administrator/components/com_postinstall/tmpl/messages/default.php:34
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
- <?php echo Text::sprintf('COM_POSTINSTALL_LBL_SINCEVERSION', $item->version_introduced); ?>
+ echo htmlspecialchars(Text::sprintf('COM_POSTINSTALL_LBL_SINCEVERSION', $item->version_introduced), ENT_QUOTES, "UTF-8");