mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-02 08:19:23 +02:00
- all: prefer `FormValues` to `ParseForm` with subsequent `Form.Get`s - all: refactor authentication stack to be checked by middleware, and accessible via request context. - all: replace http.ServeMux with gorilla/mux’s router - all: replace custom CSRF checks with gorilla/csrf middleware - authenticate: extract callback path as constant. - internal/config: implement stringer interface for policy - internal/cryptutil: add helper func `NewBase64Key` - internal/cryptutil: rename `GenerateKey` to `NewKey` - internal/cryptutil: rename `GenerateRandomString` to `NewRandomStringN` - internal/middleware: removed alice in favor of gorilla/mux - internal/sessions: remove unused `ValidateRedirectURI` and `ValidateClientSecret` - internal/sessions: replace custom CSRF with gorilla/csrf fork that supports custom handler protection - internal/urlutil: add `SignedRedirectURL` to create hmac'd URLs - internal/urlutil: add `ValidateURL` helper to parse URL options - internal/urlutil: add `GetAbsoluteURL` which takes a request and returns its absolute URL. - proxy: remove holdover state verification checks; we no longer are setting sessions in any proxy routes so we don’t need them. - proxy: replace un-named http.ServeMux with named domain routes. Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module github.com/pomerium/pomerium
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
cloud.google.com/go v0.40.0 // indirect
|
|
contrib.go.opencensus.io/exporter/jaeger v0.1.0
|
|
contrib.go.opencensus.io/exporter/prometheus v0.1.0
|
|
github.com/fsnotify/fsnotify v1.4.7
|
|
github.com/golang/mock v1.3.1
|
|
github.com/golang/protobuf v1.3.1
|
|
github.com/google/go-cmp v0.3.1
|
|
github.com/gorilla/mux v1.6.2
|
|
github.com/magiconair/properties v1.8.1 // indirect
|
|
github.com/mitchellh/hashstructure v1.0.0
|
|
github.com/pelletier/go-toml v1.4.0 // indirect
|
|
github.com/pomerium/csrf v1.6.2-0.20190911035354-d4d212209a30
|
|
github.com/pomerium/go-oidc v2.0.0+incompatible
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
|
github.com/prometheus/client_golang v0.9.3
|
|
github.com/rs/zerolog v1.14.3
|
|
github.com/spf13/afero v1.2.2 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/viper v1.4.0
|
|
github.com/stretchr/testify v1.3.0 // indirect
|
|
go.opencensus.io v0.22.0
|
|
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
|
|
golang.org/x/net v0.0.0-20190611141213-3f473d35a33a
|
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
|
|
golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae // indirect
|
|
google.golang.org/api v0.6.0
|
|
google.golang.org/appengine v1.6.1 // indirect
|
|
google.golang.org/genproto v0.0.0-20190611190212-a7e196e89fd3 // indirect
|
|
google.golang.org/grpc v1.22.0
|
|
gopkg.in/square/go-jose.v2 v2.3.1
|
|
gopkg.in/yaml.v2 v2.2.2
|
|
)
|