Skip to content
Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4567 from ruolli/Issue_4556
Fixes #4556 : HIGH-LEVEL VULNERABILITY WITHIN MOJARRA JSF V2.2
  • Loading branch information
ruolli committed May 16, 2019
2 parents 999c878 + a3fa957 commit 8f70f2b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -511,7 +511,7 @@ private void renderState(FacesContext context) throws IOException {
if (null != window) {
String clientWindowId = Util.getClientWindowId(context);
writer.startUpdate(clientWindowId);
writer.write(window.getId());
writer.writeText(window.getId(), null);
writer.endUpdate();
}
}
Expand Down

0 comments on commit 8f70f2b

Please sign in to comment.