Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Fix XSS vulnerability on vendor column
Browse files Browse the repository at this point in the history
  • Loading branch information
callapa committed Dec 28, 2018
1 parent deece94 commit 3696a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/include/configuration/configObject/traps/listTraps.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
"RowMenu_desc" => CentreonUtils::escapeAll(substr($trap["traps_oid"], 0, 40)),
"RowMenu_status" => $tabStatus[$trap["traps_status"]],
"RowMenu_args" => CentreonUtils::escapeAll($trap["traps_args"]),
"RowMenu_manufacturer" => $manufacturer["alias"],
"RowMenu_manufacturer" => CentreonUtils::escapeAll($manufacturer["alias"]),
"RowMenu_options" => $moptions
);
}
Expand Down

0 comments on commit 3696a04

Please sign in to comment.