Skip to content

Commit 7939063

Browse files
committed
Fix another open redirect issue
1 parent 572b566 commit 7939063

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6+
## [3.0.5] - 2021-05-18
7+
8+
- Fix an open redirect security issue. This is technically a breaking change
9+
if you are redirecting to some other site or front-end that's not on your
10+
server.
11+
612
## [3.0.4] - 2021-04-27
713

814
### Changed

defaults/responder.go

+4
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ func (r Redirector) redirectAPI(w http.ResponseWriter, req *http.Request, ro aut
127127
func (r Redirector) redirectNonAPI(w http.ResponseWriter, req *http.Request, ro authboss.RedirectOptions) error {
128128
path := ro.RedirectPath
129129
redir := req.FormValue(r.FormValueName)
130+
if strings.Contains(redir, "://") {
131+
// Guard against Open Redirect: https://cwe.mitre.org/data/definitions/601.html
132+
redir = ""
133+
}
130134
if len(redir) != 0 && ro.FollowRedirParam {
131135
path = redir
132136
}

0 commit comments

Comments
 (0)