Skip to content

Commit ce1620d

Browse files
author
Chris Stockton
committed
fix: revert sanitize redirect URL #1974
Reverting this until we come up with a backwards compatible solution.
1 parent 06e9ead commit ce1620d

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

internal/utilities/request.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,9 @@ func IsRedirectURLValid(config *conf.GlobalConfiguration, redirectURL string) bo
9292
return true
9393
}
9494

95-
// Clean up the referrer URL to avoid pattern matching an invalid URL
96-
refurl.Fragment = ""
97-
refurl.RawQuery = ""
98-
9995
// For case when user came from mobile app or other permitted resource - redirect back
10096
for _, pattern := range config.URIAllowListMap {
101-
if pattern.Match(refurl.String()) {
97+
if pattern.Match(redirectURL) {
10298
return true
10399
}
104100
}

internal/utilities/request_test.go

+1-11
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func TestGetIPAddress(t *tst.T) {
9191
func TestGetReferrer(t *tst.T) {
9292
config := conf.GlobalConfiguration{
9393
SiteURL: "https://example.com",
94-
URIAllowList: []string{"http://localhost:8000/*", "http://*.localhost:8000/*"},
94+
URIAllowList: []string{"http://localhost:8000/*"},
9595
JWT: conf.JWTConfiguration{
9696
Secret: "testsecret",
9797
},
@@ -122,16 +122,6 @@ func TestGetReferrer(t *tst.T) {
122122
redirectURL: "http://localhost:8000/path/to/page",
123123
expected: config.SiteURL,
124124
},
125-
{
126-
desc: "* respects parameters",
127-
redirectURL: "http://localhost:8000/path?param=1",
128-
expected: "http://localhost:8000/path?param=1",
129-
},
130-
{
131-
desc: "invalid redirect url via query smurfing",
132-
redirectURL: "http://123?.localhost:8000/path",
133-
expected: config.SiteURL,
134-
},
135125
}
136126

137127
for _, c := range cases {

0 commit comments

Comments
 (0)