Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.6.3-rc3

Scan ID: SCAN-JOOMLA-CORE-3yMw1B • Hash: a486cd07

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

Vulnerability Details

L40

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:40
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=messages&amp;task=reset&amp;eid=<?php echo $this->eid; ?>&amp;<?php echo $this->token; ?>=1" class="btn btn-warning btn-large">
+ echo htmlspecialchars($this->eid, 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");
L73

Cross-Site Scripting (XSS) in default_system.php

CWE-79
File Location: administrator/components/com_admin/views/sysinfo/tmpl/default_system.php:73
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
- <strong><?php echo JText::_('COM_ADMIN_WEB_SERVER'); ?></strong>
+ echo htmlspecialchars(JText::_('COM_ADMIN_WEB_SERVER'), ENT_QUOTES, "UTF-8");
L28

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/templates/hathor/html/com_postinstall/messages/default.php:29
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
- <button onclick="window.location='index.php?option=com_postinstall&view=messages&task=reset&eid=<?php echo $this->eid; ?>&<?php echo $this->token ?>=1'; return false;" class="btn btn-warning">
+ echo htmlspecialchars($this->eid, ENT_QUOTES, "UTF-8");