Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.9.23-rc2

Scan ID: SCAN-JOOMLA-CORE-Hxz1EO • Hash: 03e7d2eb

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

Vulnerability Details

L71

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.9.23-rc2/administrator/components/com_postinstall/views/messages/tmpl/default.php:71
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="index.php?option=com_postinstall&amp;view=message&amp;task=unpublish&amp;id=<?php echo $item->postinstall_message_id; ?>&amp;<?php echo $this->token; ?>=1" class="btn btn-inverse btn-small">
+ echo htmlspecialchars($item->postinstall_message_id, ENT_QUOTES, "UTF-8");
L39

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.9.23-rc2/administrator/components/com_postinstall/views/messages/tmpl/default.php:39
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"><?php echo JText::_('COM_POSTINSTALL_MESSAGES_FOR'); ?></label>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_MESSAGES_FOR'), ENT_QUOTES, "UTF-8");
L66

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.9.23-rc2/administrator/components/com_postinstall/views/messages/tmpl/default.php:66
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
- <a href="index.php?option=com_postinstall&amp;view=messages&amp;task=action&amp;id=<?php echo $item->postinstall_message_id; ?>&amp;<?php echo $this->token; ?>=1" class="btn btn-primary">
+ echo htmlspecialchars($item->postinstall_message_id, ENT_QUOTES, "UTF-8");
L72

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.9.23-rc2/administrator/components/com_postinstall/views/messages/tmpl/default.php:72
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 JText::_('COM_POSTINSTALL_BTN_HIDE'); ?>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_BTN_HIDE'), ENT_QUOTES, "UTF-8");
L62

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.9.23-rc2/administrator/components/com_config/view/application/tmpl/default.php:62
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
- <li><a href="#page-server" data-toggle="tab"><?php echo JText::_('COM_CONFIG_SERVER'); ?></a></li>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER'), ENT_QUOTES, "UTF-8");