Back to Codebase

Vulnerability Analysis Report

Joomla CMS v4.3.0-rc3

Scan ID: SCAN-JOOMLA-CORE-5qwcet • Hash: 5938b4d0

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

Vulnerability Details

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
- <a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.unpublish&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.unpublish&id=' . $item->postinstall_message_id . '&' . $this->token . '=1'), 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:
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
- <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");
L64

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in default.php

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

Cross-Site Scripting (XSS) in DisplayController.php

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