Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.6.0-rc

Scan ID: SCAN-JOOMLA-CORE-WUhZHM • Hash: f8e59f4b

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

Vulnerability Details

L74

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:74
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
- <h2><?php echo JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'); ?></h2>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'), ENT_QUOTES, "UTF-8");
L27

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/templates/hathor/html/com_postinstall/messages/default.php:27
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
- <h2><?php echo JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE') ?></h2>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE') ?></h2>, ENT_QUOTES, "UTF-8");
L16

Cross-Site Scripting (XSS) in default_navigation.php

CWE-79
File Location: administrator/templates/hathor/html/com_config/application/default_navigation.php:16
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
- <li><a href="#" onclick="return false;" id="server"><?php echo JText::_('COM_CONFIG_SERVER'); ?></a></li>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER'), ENT_QUOTES, "UTF-8");
L32

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:32
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
- <label for="eid"><?php echo JText::_('COM_POSTINSTALL_MESSAGES_FOR'); ?></label>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_MESSAGES_FOR'), ENT_QUOTES, "UTF-8");
L38

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:38
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
- <h2><?php echo JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE'); ?></h2>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE'), ENT_QUOTES, "UTF-8");