Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.9.24-rc

Scan ID: SCAN-JOOMLA-CORE-B75ibt • Hash: 6f2688a5

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

Vulnerability Details

L51

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in controller.php

CWE-79
File Location: joomla-cms-3.9.24-rc/administrator/components/com_privacy/controller.php:136
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
- echo new JResponseJson(array('number_urgent_requests' => $numberUrgentRequests));
+ echo htmlspecialchars(new JResponseJson(array('number_urgent_requests' => $numberUrgentRequests)), ENT_QUOTES, "UTF-8");
L50

Cross-Site Scripting (XSS) in default.php

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