Skip to content

Commit 0b1b6a9

Browse files
Change state delimiter to | to avoid collision with URLs
1 parent 7e6e3f3 commit 0b1b6a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oauthproxy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1189,13 +1189,13 @@ func checkAllowedEmails(req *http.Request, s *sessionsapi.SessionState) bool {
11891189
// encodedState builds the OAuth state param out of our nonce and
11901190
// original application redirect
11911191
func encodeState(nonce string, redirect string, additional string) string {
1192-
return fmt.Sprintf("%v:%v:%v", nonce, redirect, additional)
1192+
return fmt.Sprintf("%v|%v|%v", nonce, redirect, additional)
11931193
}
11941194

11951195
// decodeState splits the reflected OAuth state response back into
11961196
// the nonce and original application redirect
11971197
func decodeState(req *http.Request) (string, string, string, error) {
1198-
state := strings.SplitN(req.Form.Get("state"), ":", 3)
1198+
state := strings.SplitN(req.Form.Get("state"), "|", 3)
11991199

12001200
if len(state) != 3 {
12011201
return "", "", "", errors.New("invalid length")

0 commit comments

Comments
 (0)