Back to Codebase

Vulnerability Analysis Report

Joomla CMS v5.2.4

Scan ID: SCAN-JOOMLA-CORE-ciUgA5 • Hash: 8d8818c8

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

Vulnerability Details

L36

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/tmpl/messages/default.php:49
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
- <a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.archive&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'); ?>" class="btn btn-danger btn-sm">
+ echo htmlspecialchars(Route::_('index.php?option=com_postinstall&view=messages&task=message.archive&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'), ENT_QUOTES, "UTF-8");
L63

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/tmpl/messages/default.php:65
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
- <a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.republish&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'); ?>" class="btn btn-success btn-sm">
+ echo htmlspecialchars(Route::_('index.php?option=com_postinstall&view=messages&task=message.republish&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'), ENT_QUOTES, "UTF-8");