Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.7.3-rc1

Scan ID: SCAN-JOOMLA-CORE-FYtJUN • Hash: 01931a69

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

Vulnerability Details

L43

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:65
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 JText::_('COM_POSTINSTALL_BTN_HIDE'); ?>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_BTN_HIDE'), 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:
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
- <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");
L14

Cross-Site Scripting (XSS) in default_server.php

CWE-79
File Location: administrator/templates/hathor/html/com_config/application/default_server.php:14
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
- <legend><?php echo JText::_('COM_CONFIG_SERVER_SETTINGS'); ?></legend>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER_SETTINGS'), ENT_QUOTES, "UTF-8");
L62

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_config/view/application/tmpl/default.php:62
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
- <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");