Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.3.2.rc

Scan ID: SCAN-JOOMLA-CORE-UTLb7V • Hash: c2ba1bc5

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

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
- <a href="index.php?option=com_postinstall&view=message&task=unpublish&id=<?php echo $item->postinstall_message_id ?>&<?php echo $this->token ?>=1" class="btn btn-inverse btn-small">
+ echo htmlspecialchars($item->postinstall_message_id ?>&<?php echo $this->token ?>=1" class="btn btn-inverse btn-small">, ENT_QUOTES, "UTF-8");
L65

Cross-Site Scripting (XSS) in default_system.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:17
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
- <a href="index.php?option=com_postinstall&view=messages&task=reset&eid=<?php echo $this->eid; ?>&<?php echo $this->token ?>=1" class="btn btn-warning btn-large">
+ echo htmlspecialchars($this->eid, ENT_QUOTES, "UTF-8");
L15

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/default.php:15
Security Score:
85 / 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");