1
0
Fork 0
mirror of https://github.com/gohugoio/hugo.git synced 2025-04-04 17:13:48 +00:00
hugo/tpl
Bjørn Erik Pedersen f4389e48ce
Add some basic security policies with sensible defaults
This ommmit contains some security hardening measures for the Hugo build runtime.

There are some rarely used features in Hugo that would be good to have disabled by default. One example would be the "external helpers".

For `asciidoctor` and some others we use Go's `os/exec` package to start a new process.

These are a predefined set of binary names, all loaded from `PATH` and with a predefined set of arguments. Still, if you don't use `asciidoctor` in your project, you might as well have it turned off.

You can configure your own in the new `security` configuration section, but the defaults are configured to create a minimal amount of site breakage. And if that do happen, you will get clear instructions in the loa about what to do.

The default configuration is listed below. Note that almost all of these options are regular expression _whitelists_ (a string or a slice); the value `none` will block all.

```toml
[security]
  enableInlineShortcodes = false
  [security.exec]
    allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$']
    osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']

  [security.funcs]
    getenv = ['^HUGO_']

  [security.http]
    methods = ['(?i)GET|POST']
    urls = ['.*']
```
2021-12-16 09:40:22 +01:00
..
cast
collections Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
compare
crypto
data Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
debug
encoding
fmt
hugo
images
inflect
internal
js
lang Fix description of lang.FormatNumberCustom 2021-11-01 18:54:43 +01:00
math
openapi/openapi3
os Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
partials
path
reflect
resources Allow user to handle/ignore errors in resources.Get 2021-12-10 11:10:41 +01:00
safe
site
strings
templates
time tpl/time: Use configured location when date passed to Format is string 2021-10-30 16:09:38 +02:00
tplimpl Remove empty href element from pagination template 2021-12-02 09:14:30 +01:00
transform Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
urls
template.go
template_info.go
template_test.go