mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
fixed vulnerability in load of help iframes
This commit is contained in:
parent
bf6f5479e8
commit
2c7d7e4044
@ -94,7 +94,8 @@ class HelpFeedBack extends Wizard
|
|||||||
ui_require_css_file('help_feedback');
|
ui_require_css_file('help_feedback');
|
||||||
|
|
||||||
$help_url = get_parameter('b', null);
|
$help_url = get_parameter('b', null);
|
||||||
$help_url = base64_decode($help_url);
|
$help_url = io_safe_input(base64_decode($help_url));
|
||||||
|
|
||||||
if ($help_url === null) {
|
if ($help_url === null) {
|
||||||
echo __('Page not found');
|
echo __('Page not found');
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user