Skip to content

Commit

Permalink
Fixes #4556 : HIGH-LEVEL VULNERABILITY WITHIN MOJARRA JSF V2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ruolli committed May 6, 2019
1 parent 999c878 commit a3fa957
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 a3fa957

Please sign in to comment.