Sign session cookie to avoid tapping
Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
@@ -30,16 +30,15 @@ type (
|
||||
CookieHTTPOnly bool `json:"cookie-http-only"`
|
||||
CookieDomain string `json:"cookie-domain"`
|
||||
CookiePath string `json:"cookie-path"`
|
||||
CookieSecret string `json:"cookie-secret"`
|
||||
}
|
||||
)
|
||||
|
||||
// GetPepperBytes returns the pepper as a byte array
|
||||
func (c authConfig) GetPepperBytes() ([]byte, error) {
|
||||
if c.Pepper == "" {
|
||||
return nil, fmt.Errorf("pepper cannot be empty")
|
||||
}
|
||||
|
||||
// If the pepper is base64 encoded, decode it
|
||||
if decoded, err := base64.StdEncoding.DecodeString(c.Pepper); err == nil {
|
||||
if len(decoded) < 32 {
|
||||
return nil, fmt.Errorf("decoded pepper must be at least 32 bytes long")
|
||||
@@ -47,10 +46,28 @@ func (c authConfig) GetPepperBytes() ([]byte, error) {
|
||||
return decoded, nil
|
||||
}
|
||||
|
||||
// Otherwise use the raw string as the pepper
|
||||
if len(c.Pepper) < 32 {
|
||||
return nil, fmt.Errorf("pepper must be at least 32 bytes long")
|
||||
}
|
||||
|
||||
return []byte(c.Pepper), nil
|
||||
}
|
||||
|
||||
func (c authConfig) GetCookieSecretBytes() ([]byte, error) {
|
||||
if c.CookieSecret == "" {
|
||||
return nil, fmt.Errorf("cookie secret cannot be empty")
|
||||
}
|
||||
|
||||
if decoded, err := base64.StdEncoding.DecodeString(c.CookieSecret); err == nil {
|
||||
if len(decoded) < 32 {
|
||||
return nil, fmt.Errorf("decoded cookie secret must be at least 32 bytes long")
|
||||
}
|
||||
return decoded, nil
|
||||
}
|
||||
|
||||
if len(c.CookieSecret) < 32 {
|
||||
return nil, fmt.Errorf("cookie secret must be at least 32 bytes long")
|
||||
}
|
||||
|
||||
return []byte(c.CookieSecret), nil
|
||||
}
|
||||
|
||||
@@ -80,6 +80,7 @@ func New() *Implm {
|
||||
CookieHTTPOnly: true,
|
||||
CookieDomain: "localhost",
|
||||
CookiePath: "/",
|
||||
CookieSecret: "this-is-a-secure-secret-for-cookie-signing-at-least-32-bytes",
|
||||
},
|
||||
AWS: awsConfig{
|
||||
Region: "us-east-1",
|
||||
@@ -122,6 +123,12 @@ func (impl *Implm) Run(
|
||||
return fmt.Errorf("cannot get pepper bytes: %w", err)
|
||||
}
|
||||
|
||||
// Validate cookie secret
|
||||
_, err = impl.cfg.Auth.GetCookieSecretBytes()
|
||||
if err != nil {
|
||||
return fmt.Errorf("cannot get cookie secret bytes: %w", err)
|
||||
}
|
||||
|
||||
awsConfig := awsconfig.NewConfig(
|
||||
l,
|
||||
httpclient.DefaultPooledClient(
|
||||
@@ -162,6 +169,7 @@ func (impl *Implm) Run(
|
||||
CookieDomain: impl.cfg.Auth.CookieDomain,
|
||||
CookiePath: impl.cfg.Auth.CookiePath,
|
||||
SessionDuration: time.Duration(impl.cfg.Auth.SessionDuration) * time.Hour,
|
||||
CookieSecret: impl.cfg.Auth.CookieSecret,
|
||||
},
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user