This project is mirrored from https://github.com/hdacloud/dex.git.
Pull mirroring updated .
- Sep 02, 2019
-
-
Joel Speed authored
Use a more conservative set of CipherSuites
-
- Aug 31, 2019
-
-
Steven Danna authored
The default cipher suites used by Go include a number of ciphers that have known weaknesses. In addition to leaving users open to these weaknesses, the inclusion of these weaker ciphers causes problems with various automated scanning tools. This PR disables the CBC-mode, RC4, and 3DES ciphers included in the Go standard library by passing an explicit cipher suite list. The ciphers included here are more line with those recommended by Mozilla for "Intermediate" compatibility. [0] *Performance Implications* The Go standard library does capability-based cipher ordering, preferring AES ciphers if the underlying hardware has AES specific instructions. [1] Since all of the relevant code is internal modules, to do the same thing ourselves would require duplicating that code. Here, I've placed AES based ciphers first. *Compatibility Implications* This does reduce the number of clients who will be able to communicate with dex. [0] https://ssl-config.mozilla.org/#server=nginx&server-version=1.17.0&config=intermediate&hsts=false&ocsp=false [1] https://github.com/golang/go/blob/a8c2e5c6adc0d8f9b976a55bf4e22fcf5770ea55/src/crypto/tls/common.go#L1091 Signed-off-by:
Steven Danna <steve@chef.io>
-
Stephan Renatus authored
Replace x/net/context with stdlib context
-
- Aug 30, 2019
-
-
erwinvaneyk authored
-
- Aug 29, 2019
-
-
Stephan Renatus authored
Pydio Cells adopters list
-
Stephan Renatus authored
Clarify the origin of the ca file in the Kubernetes guide
-
Erwin van Eyk authored
-
- Aug 28, 2019
-
-
j authored
-
- Aug 23, 2019
-
-
Stephan Renatus authored
connector/ldap: display login error
-
- Aug 22, 2019
-
-
Stephan Renatus authored
Dockerfile: build with golang 1.12.9
-
Nandor Kracser authored
-
Daniel Kürner authored
-
- Aug 14, 2019
-
-
Joel Speed authored
storage/kubernetes: Removing Kubernetes TPR support
-
Michael Venezia authored
Third Party Resources (TPR) have been removed from Kubernetes for roughly 2 years. This commit removes the support dex had for them. Documentation has been updated to reflect this and to instruct users on how to migrate from TPR-powered dex environment to a Custom Resource Defintion (CRD) based one that dex > v2.17 will support
-
Stephan Renatus authored
Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
- Aug 13, 2019
-
-
Stephan Renatus authored
Add examples for recent additions to oauth2 configuration options
-
- Aug 09, 2019
-
-
Tom Downes authored
-
- Aug 07, 2019
-
-
Stephan Renatus authored
Add reflection to gRPC API (configurable)
-
Michael Venezia authored
-
Michael Venezia authored
-
Stephan Renatus authored
Add option to always display connector selection even if there's only one
-
Stephan Renatus authored
Allow arbitrary data to be passed to templates
-
- Aug 06, 2019
-
-
Marc-André Dufresne authored
-
Marc-André Dufresne authored
-
Stephan Renatus authored
Add tests for some callback handler error conditions
-
- Aug 05, 2019
-
-
Mike O authored
-
- Aug 03, 2019
-
-
Nándor István Krácser authored
Adjusting Makefile so that `golint` will compile
-
- Aug 02, 2019
-
-
Michael Venezia authored
-
Stephan Renatus authored
Return HTTP 400 for invalid state parameter
-
- Aug 01, 2019
-
-
Mike O authored
-
- Jul 31, 2019
-
-
Stephan Renatus authored
update all deps
-
Stephan Renatus authored
Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
- Jul 30, 2019
-
-
Stephan Renatus authored
server/api: fix logging in VerifyPassword
-
Stephan Renatus authored
Before: msg="api: password check failed : %vcrypto/bcrypt: hashedPassword is not the hash of the given password" After: msg="api: password check failed : crypto/bcrypt: hashedPassword is not the hash of the given password" Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
*: fix some lint issues
-
Stephan Renatus authored
Mostly gathered these using golangci-lint's deadcode and ineffassign linters. Signed-off-by:
Stephan Renatus <srenatus@chef.io>
-