mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: disable loading images from external entities
This commit is contained in:
parent
544734b843
commit
c03bd495f6
1 changed files with 1 additions and 1 deletions
2
utils.go
2
utils.go
|
@ -43,7 +43,7 @@ func write(w http.ResponseWriter, status int, data []byte) {
|
|||
|
||||
func securityHeaders(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
csp := "default-src 'self'; script-src 'self'; style-src 'self'; img-src 'self' images.genius.com; object-src 'none'"
|
||||
csp := "default-src 'self'; script-src 'self'; style-src 'self'; img-src 'self'; object-src 'none'"
|
||||
w.Header().Add("content-security-policy", csp)
|
||||
w.Header().Add("referrer-policy", "no-referrer")
|
||||
w.Header().Add("x-content-type-options", "nosniff")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue