Back to Codebase

Vulnerability Analysis Report

Joomla CMS v2.5.0_beta2

Scan ID: SCAN-JOOMLA-CORE-yQy76C • Hash: f106b7f9

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

Vulnerability Details

L469

Dynamic Code Execution in html.php

CWE-94
File Location: joomla-cms-2.5.0_beta2/libraries/joomla/document/html/html.php:469
Security Score:
97 / 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
- return eval($str);
+ // Avoid dynamic function/code evaluation. Rewrite with native callbacks.
L18

Cross-Site Scripting (XSS) in default_navigation.php

CWE-79
File Location: joomla-cms-2.5.0_beta2/administrator/templates/hathor/html/com_config/application/default_navigation.php:18
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="#" onclick="return false;" id="server"><?php echo JText::_('COM_CONFIG_SERVER'); ?></a></li>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER'), ENT_QUOTES, "UTF-8");
L67

Cross-Site Scripting (XSS) in default_system.php

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

Cross-Site Scripting (XSS) in default_server.php

CWE-79
File Location: joomla-cms-2.5.0_beta2/administrator/components/com_config/views/application/tmpl/default_server.php:15
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
- <legend><?php echo JText::_('COM_CONFIG_SERVER_SETTINGS'); ?></legend>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER_SETTINGS'), ENT_QUOTES, "UTF-8");
L19

Cross-Site Scripting (XSS) in default_navigation.php

CWE-79
File Location: joomla-cms-2.5.0_beta2/administrator/components/com_config/views/application/tmpl/default_navigation.php:19
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
- <li><a href="#" onclick="return false;" id="server"><?php echo JText::_('COM_CONFIG_SERVER'); ?></a></li>
+ echo htmlspecialchars(JText::_('COM_CONFIG_SERVER'), ENT_QUOTES, "UTF-8");