Token not decoded in SSO callback template
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenStack Identity (keystone) |
Triaged
|
Low
|
Unassigned |
Bug Description
In https:/
>>> import string
>>> template = string.
... <html xmlns="http://
... <head>
... <title>Keystone WebSSO redirect</title>
... </head>
... <body>
... <form id="sso" name="sso" action="$host" method="post">
... Please wait...
... <br/>
... <input type="hidden" name="token" id="token" value="$token"/>
... <noscript>
... <input type="submit" name="submit_
... value="If your JavaScript is disabled, please click to continue"/>
... </noscript>
... </form>
... <script type="text/
... window.onload = function() {
... document.
... }
... </script>
... </body>
... </html>""")
>>> subs = {"host": b"myhost", "token": b"mytoken"}
>>> template.
'<!DOCTYPE html>\n<html xmlns="http://
Can you explain the negative consequences this has had on your deployment? Are you unable to authenticate because of this?