Skip to content

Commit

Permalink
fixed vulnerability in load of help iframes
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro-campos committed Nov 3, 2022
1 parent bf6f547 commit 2c7d7e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandora_console/include/class/HelpFeedBack.class.php
Expand Up @@ -94,7 +94,8 @@ public function run()
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 {
Expand Down

0 comments on commit 2c7d7e4

Please sign in to comment.