* Bump the go-modules-updates group in /backend with 7 updates Bumps the go-modules-updates group in /backend with 7 updates: | Package | From | To | | --- | --- | --- | | [github.com/alecthomas/chroma/v2](https://github.com/alecthomas/chroma) | `2.21.1` | `2.23.1` | | [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) | `5.2.3` | `5.2.4` | | [github.com/go-pkgz/rest](https://github.com/go-pkgz/rest) | `1.20.6` | `1.21.0` | | [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.3.0` | `5.3.1` | | [golang.org/x/crypto](https://github.com/golang/crypto) | `0.46.0` | `0.47.0` | | [golang.org/x/image](https://github.com/golang/image) | `0.34.0` | `0.35.0` | | [golang.org/x/net](https://github.com/golang/net) | `0.48.0` | `0.49.0` | Updates `github.com/alecthomas/chroma/v2` from 2.21.1 to 2.23.1 - [Release notes](https://github.com/alecthomas/chroma/releases) - [Commits](https://github.com/alecthomas/chroma/compare/v2.21.1...v2.23.1) Updates `github.com/go-chi/chi/v5` from 5.2.3 to 5.2.4 - [Release notes](https://github.com/go-chi/chi/releases) - [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md) - [Commits](https://github.com/go-chi/chi/compare/v5.2.3...v5.2.4) Updates `github.com/go-pkgz/rest` from 1.20.6 to 1.21.0 - [Release notes](https://github.com/go-pkgz/rest/releases) - [Commits](https://github.com/go-pkgz/rest/compare/v1.20.6...v1.21.0) Updates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1 - [Release notes](https://github.com/golang-jwt/jwt/releases) - [Commits](https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.1) Updates `golang.org/x/crypto` from 0.46.0 to 0.47.0 - [Commits](https://github.com/golang/crypto/compare/v0.46.0...v0.47.0) Updates `golang.org/x/image` from 0.34.0 to 0.35.0 - [Commits](https://github.com/golang/image/compare/v0.34.0...v0.35.0) Updates `golang.org/x/net` from 0.48.0 to 0.49.0 - [Commits](https://github.com/golang/net/compare/v0.48.0...v0.49.0) --- updated-dependencies: - dependency-name: github.com/alecthomas/chroma/v2 dependency-version: 2.23.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: github.com/go-chi/chi/v5 dependency-version: 5.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-modules-updates - dependency-name: github.com/go-pkgz/rest dependency-version: 1.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: github.com/golang-jwt/jwt/v5 dependency-version: 5.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-modules-updates - dependency-name: golang.org/x/crypto dependency-version: 0.47.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: golang.org/x/image dependency-version: 0.35.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: golang.org/x/net dependency-version: 0.49.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates ... Signed-off-by: dependabot[bot] <support@github.com> * Run go mod tidy in examples directory Co-authored-by: paskal <712534+paskal@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: paskal <712534+paskal@users.noreply.github.com>
112 lines
3.7 KiB
Go
112 lines
3.7 KiB
Go
//go:build go1.25
|
|
|
|
package rest
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
// CrossOriginProtection provides CSRF protection using modern browser Fetch metadata.
|
|
// It validates requests using Sec-Fetch-Site and Origin headers, rejecting cross-origin
|
|
// state-changing requests. Safe methods (GET, HEAD, OPTIONS) are always allowed.
|
|
//
|
|
// For Go 1.25+, this wraps the stdlib http.CrossOriginProtection.
|
|
// For earlier versions, it provides an equivalent custom implementation.
|
|
type CrossOriginProtection struct {
|
|
stdlib *http.CrossOriginProtection
|
|
}
|
|
|
|
// NewCrossOriginProtection creates a new CSRF protection middleware.
|
|
func NewCrossOriginProtection() *CrossOriginProtection {
|
|
return &CrossOriginProtection{
|
|
stdlib: http.NewCrossOriginProtection(),
|
|
}
|
|
}
|
|
|
|
// AddTrustedOrigin adds an origin that should be allowed to make cross-origin requests.
|
|
// The origin must be in the format "scheme://host" or "scheme://host:port".
|
|
// Returns an error if the origin format is invalid.
|
|
func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {
|
|
u, err := url.Parse(origin)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid origin: %w", err)
|
|
}
|
|
if u.Scheme == "" || u.Host == "" {
|
|
return fmt.Errorf("origin must have scheme and host: %s", origin)
|
|
}
|
|
if u.Path != "" && u.Path != "/" {
|
|
return fmt.Errorf("origin must not have path: %s", origin)
|
|
}
|
|
if u.RawQuery != "" || u.Fragment != "" {
|
|
return fmt.Errorf("origin must not have query or fragment: %s", origin)
|
|
}
|
|
|
|
// normalize to lowercase for consistent case-insensitive matching
|
|
normalized := strings.ToLower(u.Scheme) + "://" + strings.ToLower(u.Host)
|
|
return c.stdlib.AddTrustedOrigin(normalized)
|
|
}
|
|
|
|
// AddBypassPattern adds a URL pattern that should bypass CSRF protection.
|
|
// Patterns follow the same syntax as http.ServeMux (e.g., "/api/webhook", "/oauth/").
|
|
// Use sparingly and only for endpoints that have alternative authentication.
|
|
func (c *CrossOriginProtection) AddBypassPattern(pattern string) {
|
|
c.stdlib.AddInsecureBypassPattern(pattern)
|
|
}
|
|
|
|
// SetDenyHandler sets a custom handler for rejected requests.
|
|
// If not set, rejected requests receive a 403 Forbidden response.
|
|
func (c *CrossOriginProtection) SetDenyHandler(h http.Handler) {
|
|
c.stdlib.SetDenyHandler(h)
|
|
}
|
|
|
|
// Check validates a request against CSRF protection rules.
|
|
// Returns nil if the request is allowed, or an error describing why it was rejected.
|
|
func (c *CrossOriginProtection) Check(r *http.Request) error {
|
|
// the stdlib Check method panics or returns void, so we use our own check logic
|
|
// by creating a test handler and seeing if it gets called
|
|
|
|
// safe methods are always allowed
|
|
switch r.Method {
|
|
case http.MethodGet, http.MethodHead, http.MethodOptions:
|
|
return nil
|
|
}
|
|
|
|
// use a test to determine if request would be allowed
|
|
allowed := false
|
|
testHandler := http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
|
|
allowed = true
|
|
})
|
|
|
|
// create a response recorder to capture the result
|
|
rec := &discardResponseWriter{}
|
|
c.stdlib.Handler(testHandler).ServeHTTP(rec, r)
|
|
|
|
if !allowed {
|
|
return fmt.Errorf("cross-origin request blocked by CSRF protection")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Handler wraps an http.Handler with CSRF protection.
|
|
// Rejected requests receive a 403 Forbidden response (or custom deny handler).
|
|
func (c *CrossOriginProtection) Handler(h http.Handler) http.Handler {
|
|
return c.stdlib.Handler(h)
|
|
}
|
|
|
|
// discardResponseWriter is a minimal ResponseWriter for testing.
|
|
type discardResponseWriter struct {
|
|
header http.Header
|
|
}
|
|
|
|
func (d *discardResponseWriter) Header() http.Header {
|
|
if d.header == nil {
|
|
d.header = make(http.Header)
|
|
}
|
|
return d.header
|
|
}
|
|
func (d *discardResponseWriter) Write(b []byte) (int, error) { return len(b), nil }
|
|
func (d *discardResponseWriter) WriteHeader(_ int) {}
|