Skip to content

Commit

Permalink
[SS-2016-016] FIX Properly escape backURL for template injection
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Nov 10, 2016
1 parent c914dde commit 17097a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/CMSSecurity.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function success() {
'<p>Login success. If you are not automatically redirected '.
'<a target="_top" href="{link}">click here</a></p>',
'Login message displayed in the cms popup once a user has re-authenticated themselves',
array('link' => $backURL)
array('link' => Convert::raw2att($backURL))
)
));

Expand Down

0 comments on commit 17097a4

Please sign in to comment.