forked from google/go-safeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaticheaders.go
61 lines (53 loc) · 2.29 KB
/
staticheaders.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package staticheaders provides a safehttp.Interceptor which sets security
// sensitive headers on every response.
//
// X-Content-Type-Options: nosniff - tells browsers to not to sniff the
// Content-Type of responses (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options).
//
// X-XSS-Protection: 0 - tells the browser to disable any built in XSS filters.
// These built in XSS filters are unnecessary when other, stronger, protections
// are available and can introduce cross-site leaks vulnerabilities
// (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection).
//
// Usage
//
// Install an instance of Interceptor using safehttp.ServerMux.Install.
package staticheaders
import (
"github.com/google/go-safeweb/safehttp"
)
// Interceptor claims and sets static headers on responses.
// The zero value is valid and ready to use.
type Interceptor struct{}
var _ safehttp.Interceptor = Interceptor{}
// Before claims and sets the following headers:
// - X-Content-Type-Options: nosniff
// - X-XSS-Protection: 0
func (Interceptor) Before(w safehttp.ResponseWriter, r *safehttp.IncomingRequest, _ safehttp.InterceptorConfig) safehttp.Result {
h := w.Header()
setXCTO := h.Claim("X-Content-Type-Options")
setXXP := h.Claim("X-XSS-Protection")
setXCTO([]string{"nosniff"})
setXXP([]string{"0"})
return safehttp.NotWritten()
}
// Commit is a no-op, required to satisfy the safehttp.Interceptor interface.
func (Interceptor) Commit(w safehttp.ResponseHeadersWriter, r *safehttp.IncomingRequest, resp safehttp.Response, _ safehttp.InterceptorConfig) {
}
// Match returns false since there are no supported configurations.
func (Interceptor) Match(safehttp.InterceptorConfig) bool {
return false
}