forked from oauth2-proxy/oauth2-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flags to define CSRF cookie expiration time and to allow CSRF coo…
…kies per request (oauth2-proxy#1708) * Add start of state to CSRF cookie name * Update CHANGELOG.md * Update CHANGELOG.md * Support optional flags * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Update overview.md Add new CSRF flags * Update overview.md Describe new CSRF flags Co-authored-by: Nuno Borges <Nuno.Borges@ctw.bmwgroup.com>
- Loading branch information
1 parent
f8bd853
commit a1ff878
Showing
6 changed files
with
287 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
package cookies | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"net/http/httptest" | ||
"net/url" | ||
"time" | ||
|
||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/options" | ||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/sessions" | ||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/encryption" | ||
. "github.com/onsi/ginkgo" | ||
. "github.com/onsi/gomega" | ||
) | ||
|
||
var _ = Describe("CSRF Cookie with non-fixed name Tests", func() { | ||
var ( | ||
cookieOpts *options.Cookie | ||
publicCSRF CSRF | ||
privateCSRF *csrf | ||
) | ||
|
||
BeforeEach(func() { | ||
cookieOpts = &options.Cookie{ | ||
Name: cookieName, | ||
Secret: cookieSecret, | ||
Domains: []string{cookieDomain}, | ||
Path: cookiePath, | ||
Expire: time.Hour, | ||
Secure: true, | ||
HTTPOnly: true, | ||
CSRFPerRequest: true, | ||
CSRFExpire: time.Duration(5) * time.Minute, | ||
} | ||
|
||
var err error | ||
publicCSRF, err = NewCSRF(cookieOpts, "verifier") | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
privateCSRF = publicCSRF.(*csrf) | ||
}) | ||
|
||
Context("NewCSRF", func() { | ||
It("makes unique nonces for OAuth and OIDC", func() { | ||
Expect(privateCSRF.OAuthState).ToNot(BeEmpty()) | ||
Expect(privateCSRF.OIDCNonce).ToNot(BeEmpty()) | ||
Expect(privateCSRF.OAuthState).ToNot(Equal(privateCSRF.OIDCNonce)) | ||
Expect(privateCSRF.CodeVerifier).To(Equal("verifier")) | ||
}) | ||
|
||
It("makes unique nonces between multiple CSRFs", func() { | ||
other, err := NewCSRF(cookieOpts, "verifier") | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
Expect(privateCSRF.OAuthState).ToNot(Equal(other.(*csrf).OAuthState)) | ||
Expect(privateCSRF.OIDCNonce).ToNot(Equal(other.(*csrf).OIDCNonce)) | ||
Expect(privateCSRF.CodeVerifier).To(Equal("verifier")) | ||
}) | ||
}) | ||
|
||
Context("CheckOAuthState and CheckOIDCNonce", func() { | ||
It("checks that hashed versions match", func() { | ||
privateCSRF.OAuthState = []byte(csrfState) | ||
privateCSRF.OIDCNonce = []byte(csrfNonce) | ||
|
||
stateHashed := encryption.HashNonce([]byte(csrfState)) | ||
nonceHashed := encryption.HashNonce([]byte(csrfNonce)) | ||
|
||
Expect(publicCSRF.CheckOAuthState(stateHashed)).To(BeTrue()) | ||
Expect(publicCSRF.CheckOIDCNonce(nonceHashed)).To(BeTrue()) | ||
|
||
Expect(publicCSRF.CheckOAuthState(csrfNonce)).To(BeFalse()) | ||
Expect(publicCSRF.CheckOIDCNonce(csrfState)).To(BeFalse()) | ||
Expect(publicCSRF.CheckOAuthState(csrfState + csrfNonce)).To(BeFalse()) | ||
Expect(publicCSRF.CheckOIDCNonce(csrfNonce + csrfState)).To(BeFalse()) | ||
Expect(publicCSRF.CheckOAuthState("")).To(BeFalse()) | ||
Expect(publicCSRF.CheckOIDCNonce("")).To(BeFalse()) | ||
Expect(publicCSRF.GetCodeVerifier()).To(Equal("verifier")) | ||
}) | ||
}) | ||
|
||
Context("SetSessionNonce", func() { | ||
It("sets the session.Nonce", func() { | ||
session := &sessions.SessionState{} | ||
publicCSRF.SetSessionNonce(session) | ||
Expect(session.Nonce).To(Equal(privateCSRF.OIDCNonce)) | ||
}) | ||
}) | ||
|
||
Context("encodeCookie and decodeCSRFCookie", func() { | ||
It("encodes and decodes to the same nonces", func() { | ||
privateCSRF.OAuthState = []byte(csrfState) | ||
privateCSRF.OIDCNonce = []byte(csrfNonce) | ||
|
||
encoded, err := privateCSRF.encodeCookie() | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
cookie := &http.Cookie{ | ||
Name: privateCSRF.cookieName(), | ||
Value: encoded, | ||
} | ||
decoded, err := decodeCSRFCookie(cookie, cookieOpts) | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
Expect(decoded).ToNot(BeNil()) | ||
Expect(decoded.OAuthState).To(Equal([]byte(csrfState))) | ||
Expect(decoded.OIDCNonce).To(Equal([]byte(csrfNonce))) | ||
}) | ||
|
||
It("signs the encoded cookie value", func() { | ||
encoded, err := privateCSRF.encodeCookie() | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
cookie := &http.Cookie{ | ||
Name: privateCSRF.cookieName(), | ||
Value: encoded, | ||
} | ||
|
||
_, _, valid := encryption.Validate(cookie, cookieOpts.Secret, cookieOpts.Expire) | ||
Expect(valid).To(BeTrue()) | ||
}) | ||
}) | ||
|
||
Context("Cookie Management", func() { | ||
var req *http.Request | ||
|
||
testNow := time.Unix(nowEpoch, 0) | ||
|
||
BeforeEach(func() { | ||
privateCSRF.time.Set(testNow) | ||
|
||
req = &http.Request{ | ||
Method: http.MethodGet, | ||
Proto: "HTTP/1.1", | ||
Host: cookieDomain, | ||
|
||
URL: &url.URL{ | ||
Scheme: "https", | ||
Host: cookieDomain, | ||
Path: cookiePath, | ||
}, | ||
} | ||
}) | ||
|
||
AfterEach(func() { | ||
privateCSRF.time.Reset() | ||
}) | ||
|
||
Context("SetCookie", func() { | ||
It("adds the encoded CSRF cookie to a ResponseWriter", func() { | ||
rw := httptest.NewRecorder() | ||
|
||
_, err := publicCSRF.SetCookie(rw, req) | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
Expect(rw.Header().Get("Set-Cookie")).To(ContainSubstring( | ||
fmt.Sprintf("%s=", privateCSRF.cookieName()), | ||
)) | ||
Expect(rw.Header().Get("Set-Cookie")).To(ContainSubstring( | ||
fmt.Sprintf( | ||
"; Path=%s; Domain=%s; Expires=%s; HttpOnly; Secure", | ||
cookiePath, | ||
cookieDomain, | ||
testCookieExpires(testNow.Add(cookieOpts.CSRFExpire)), | ||
), | ||
)) | ||
}) | ||
}) | ||
|
||
Context("ClearCookie", func() { | ||
It("sets a cookie with an empty value in the past", func() { | ||
rw := httptest.NewRecorder() | ||
|
||
publicCSRF.ClearCookie(rw, req) | ||
|
||
Expect(rw.Header().Get("Set-Cookie")).To(Equal( | ||
fmt.Sprintf( | ||
"%s=; Path=%s; Domain=%s; Expires=%s; HttpOnly; Secure", | ||
privateCSRF.cookieName(), | ||
cookiePath, | ||
cookieDomain, | ||
testCookieExpires(testNow.Add(time.Hour*-1)), | ||
), | ||
)) | ||
}) | ||
}) | ||
|
||
Context("cookieName", func() { | ||
It("has the cookie options name as a base", func() { | ||
Expect(privateCSRF.cookieName()).To(ContainSubstring(cookieName)) | ||
}) | ||
}) | ||
}) | ||
}) |
Oops, something went wrong.