Back to Codebase

Vulnerability Analysis Report

Joomla CMS v4.4.4-rc1

Scan ID: SCAN-JOOMLA-CORE-eih7H2 • Hash: 350db081

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

Vulnerability Details

L101

Cross-Site Scripting (XSS) in default_system.php

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

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/tmpl/messages/default.php:25
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" class="me-sm-2"><?php echo Text::_('COM_POSTINSTALL_MESSAGES_FOR'); ?></label>
+ echo htmlspecialchars(Text::_('COM_POSTINSTALL_MESSAGES_FOR'), ENT_QUOTES, "UTF-8");
L24

Cross-Site Scripting (XSS) in emptystate.php

CWE-79
File Location: administrator/components/com_postinstall/tmpl/messages/emptystate.php:24
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" class="me-sm-2"><?php echo Text::_('COM_POSTINSTALL_MESSAGES_FOR'); ?></label>
+ echo htmlspecialchars(Text::_('COM_POSTINSTALL_MESSAGES_FOR'), ENT_QUOTES, "UTF-8");
L55

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_config/tmpl/application/default.php:55
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 HTMLHelper::_('uitab.addTab', 'configTabs', 'page-server', Text::_('COM_CONFIG_SERVER')); ?>
+ echo htmlspecialchars(HTMLHelper::_('uitab.addTab', 'configTabs', 'page-server', Text::_('COM_CONFIG_SERVER')), 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:
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
- <?php echo Text::_('COM_POSTINSTALL_BTN_ARCHIVE'); ?>
+ echo htmlspecialchars(Text::_('COM_POSTINSTALL_BTN_ARCHIVE'), ENT_QUOTES, "UTF-8");