Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.8.6

Scan ID: SCAN-JOOMLA-CORE-nUpBai • Hash: 1359aa93

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

Vulnerability Details

L66

Cross-Site Scripting (XSS) in default_system.php

CWE-79
File Location: joomla-cms-3.8.6/administrator/templates/hathor/html/com_admin/sysinfo/default_system.php:66
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
- <strong><?php echo JText::_('COM_ADMIN_WEB_SERVER'); ?></strong>
+ echo htmlspecialchars(JText::_('COM_ADMIN_WEB_SERVER'), ENT_QUOTES, "UTF-8");
L32

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.8.6/administrator/components/com_postinstall/views/messages/tmpl/default.php:32
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");
L44

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: joomla-cms-3.8.6/administrator/components/com_postinstall/views/messages/tmpl/default.php:44
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=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");
L46

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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