Skip to content
Permalink
Browse files Browse the repository at this point in the history
LPS-72916 Workaround for XSS issue in SWFObject
  • Loading branch information
samuelkong authored and brianchandotcom committed Jun 14, 2017
1 parent e57cb8f commit 9435af4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions portal-web/docroot/html/portal/flash.jsp
Expand Up @@ -23,6 +23,10 @@ int height = ParamUtil.getInteger(request, "height", 768);
int width = ParamUtil.getInteger(request, "width", 1024);
String movie = ParamUtil.getString(request, "movie");
// LPS-72916
movie = HtmlUtil.escapeHREF(movie);
%>

<html>
Expand Down

0 comments on commit 9435af4

Please sign in to comment.