Back to Codebase

Vulnerability Analysis Report

Joomla CMS v3.9.0-beta2

Scan ID: SCAN-JOOMLA-CORE-c1mvh1 • Hash: f48c04ff

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

Vulnerability Details

L81

Cross-Site Scripting (XSS) in default_system.php

CWE-79
File Location: administrator/components/com_admin/views/sysinfo/tmpl/default_system.php:81
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");
L66

Cross-Site Scripting (XSS) in default.php

CWE-79
File Location: administrator/components/com_postinstall/views/messages/tmpl/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 JText::_('COM_POSTINSTALL_BTN_HIDE'); ?>
+ echo htmlspecialchars(JText::_('COM_POSTINSTALL_BTN_HIDE'), ENT_QUOTES, "UTF-8");
L47

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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