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');
|
||||
|
||||
$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) {
|
||||
echo __('Page not found');
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue