Skip to content

Commit

Permalink
Merge pull request #60 from wiltonsr/add-tls-version-option
Browse files Browse the repository at this point in the history
Add options options to customize TLS versions
  • Loading branch information
wiltonsr authored Mar 14, 2024
2 parents f4ba36d + 693f687 commit 5901443
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 15 deletions.
49 changes: 39 additions & 10 deletions ldapauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ type Config struct {
CacheCookieSecure bool `json:"cacheCookieSecure,omitempty" yaml:"cacheCookieSecure,omitempty"`
CacheKey string `json:"cacheKey,omitempty" yaml:"cacheKey,omitempty"`
StartTLS bool `json:"startTls,omitempty" yaml:"startTls,omitempty"`
CertificateAuthority string `json:"certificateAuthority,omitempty" yaml:"certificateAuthority,omitempty"`
InsecureSkipVerify bool `json:"insecureSkipVerify,omitempty" yaml:"insecureSkipVerify,omitempty"`
MinVersionTLS string `json:"minVersionTls,omitempty" yaml:"minVersionTls,omitempty"`
MaxVersionTLS string `json:"maxVersionTls,omitempty" yaml:"maxVersionTls,omitempty"`
CertificateAuthority string `json:"certificateAuthority,omitempty" yaml:"certificateAuthority,omitempty"`
Attribute string `json:"attribute,omitempty" yaml:"attribute,omitempty"`
SearchFilter string `json:"searchFilter,omitempty" yaml:"searchFilter,omitempty"`
BaseDN string `json:"baseDn,omitempty" yaml:"baseDn,omitempty"`
Expand Down Expand Up @@ -79,8 +81,10 @@ func CreateConfig() *Config {
CacheCookieSecure: false,
CacheKey: "super-secret-key",
StartTLS: false,
CertificateAuthority: "",
InsecureSkipVerify: false,
MinVersionTLS: "tls.VersionTLS12",
MaxVersionTLS: "tls.VersionTLS13",
CertificateAuthority: "",
Attribute: "cn", // Usually uid or sAMAccountname
SearchFilter: "",
BaseDN: "",
Expand Down Expand Up @@ -159,7 +163,7 @@ func (la *LdapAuth) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
ServeAuthenicated(la, session, rw, req)
return
}
err = errors.New(fmt.Sprintf("Session user: '%s' != Auth user: '%s'. Please, reauthenticate", session.Values["username"], username))
err = fmt.Errorf("session user: '%s' != Auth user: '%s'. Please, reauthenticate", session.Values["username"], username)
// Invalidate session.
session.Values["authenticated"] = false
session.Values["username"] = username
Expand All @@ -178,7 +182,7 @@ func (la *LdapAuth) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
certPool.AppendCertsFromPEM([]byte(la.config.CertificateAuthority))
}

conn, err := Connect(la.config.URL, la.config.Port, la.config.StartTLS, la.config.InsecureSkipVerify, certPool)
conn, err := Connect(la.config)
if err != nil {
LoggerERROR.Printf("%s", err)
RequireAuth(rw, req, la.config, err)
Expand Down Expand Up @@ -406,11 +410,17 @@ func RequireAuth(w http.ResponseWriter, req *http.Request, config *Config, err .
}

// Connect return a LDAP Connection.
func Connect(addr string, port uint16, startTLS bool, skipVerify bool, ca *x509.CertPool) (*ldap.Conn, error) {
func Connect(config *Config) (*ldap.Conn, error) {
var conn *ldap.Conn = nil
var certPool *x509.CertPool
var err error = nil

u, err := url.Parse(addr)
if config.CertificateAuthority != "" {
certPool = x509.NewCertPool()
certPool.AppendCertsFromPEM([]byte(config.CertificateAuthority))
}

u, err := url.Parse(config.URL)
if err != nil {
return nil, err
}
Expand All @@ -421,16 +431,18 @@ func Connect(addr string, port uint16, startTLS bool, skipVerify bool, ca *x509.
host = u.Host
}

address := u.Scheme + "://" + net.JoinHostPort(host, strconv.FormatUint(uint64(port), 10))
address := u.Scheme + "://" + net.JoinHostPort(host, strconv.FormatUint(uint64(config.Port), 10))
LoggerDEBUG.Printf("Connect Address: '%s'", address)

tlsCfg := &tls.Config{
InsecureSkipVerify: skipVerify,
InsecureSkipVerify: config.InsecureSkipVerify,
ServerName: host,
RootCAs: ca,
RootCAs: certPool,
MinVersion: parseTlsVersion(config.MinVersionTLS),
MaxVersion: parseTlsVersion(config.MaxVersionTLS),
}

if u.Scheme == "ldap" && startTLS {
if u.Scheme == "ldap" && config.StartTLS {
conn, err = ldap.DialURL(address)
if err == nil {
err = conn.StartTLS(tlsCfg)
Expand Down Expand Up @@ -538,6 +550,23 @@ func SetLogger(level string) {
}
}

func parseTlsVersion(version string) uint16 {
switch version {
case "tls.VersionTLS10", "VersionTLS10":
return tls.VersionTLS10
case "tls.VersionTLS11", "VersionTLS11":
return tls.VersionTLS11
case "tls.VersionTLS12", "VersionTLS12":
return tls.VersionTLS12
case "tls.VersionTLS13", "VersionTLS13":
return tls.VersionTLS13
default:
LoggerINFO.Printf("Version: '%s' doesnt match any value. Using 'tls.VersionTLS10' instead", version)
LoggerINFO.Printf("Please check https://pkg.go.dev/crypto/tls#pkg-constants to a list of valid versions")
return tls.VersionTLS10
}
}

// LogConfigParams print confs when logLevel is DEBUG.
func LogConfigParams(config *Config) {
/*
Expand Down
24 changes: 19 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,25 @@ _Optional, Default: `false`_

If set to true, instruct `ldapAuth` to issue a `StartTLS` request when initializing the connection with the LDAP server.

##### `insecureSkipVerify`
_Optional, Default: `false`_

When connecting to a `ldaps` server or `startTLS` is enabled, the connection to the LDAP server is verified to be secure. This option allows `ldapAuth` to proceed and operate even for server connections otherwise considered insecure.

##### `minVersionTLS`
_Optional, Default: `tls.VersionTLS12`_

Contains the minimum TLS version that is acceptable. By default, `TLS 1.2` is currently used as the minimum. `TLS 1.0` is the minimum supported by this package.

This option value must match [crypto/tls](https://pkg.go.dev/crypto/tls#pkg-constants) versions constants.

##### `maxVersionTLS`
_Optional, Default: `tls.VersionTLS13`_

Contains the maximum TLS version that is acceptable. By default, the maximum version supported by this package is used, which is currently `TLS 1.3`.

This option value must match [crypto/tls](https://pkg.go.dev/crypto/tls#pkg-constants) versions constants.

##### `certificateAuthority`
_Optional, Default: `""`_

Expand All @@ -191,11 +210,6 @@ Example:
-----END CERTIFICATE-----
```

##### `insecureSkipVerify`
_Optional, Default: `false`_

When connecting to a `ldaps` server or `startTLS` is enabled, the connection to the LDAP server is verified to be secure. This option allows `ldapAuth` to proceed and operate even for server connections otherwise considered insecure.

##### `attribute`

_Optional, Default: `cn`_
Expand Down

0 comments on commit 5901443

Please sign in to comment.