Back to Codebase

Vulnerability Analysis Report

Joomla CMS v5.0.2

Scan ID: SCAN-JOOMLA-CORE-Qg7dn8 • Hash: a1d7311f

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

Vulnerability Details

L34

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in DisplayController.php

CWE-79
File Location: administrator/components/com_privacy/src/Controller/DisplayController.php:122
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
- echo new JsonResponse(['number_urgent_requests' => $numberUrgentRequests]);
+ echo htmlspecialchars(new JsonResponse(['number_urgent_requests' => $numberUrgentRequests]), ENT_QUOTES, "UTF-8");
L48

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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