hugo/common
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
..
collections Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
constants Allow getJSON errors to be ignored 2020-10-22 09:09:29 +02:00
herrors Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
hexec Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
hreflect Correct function name in comment 2021-04-22 12:24:12 +02:00
htime common/htime: Fix time.Format with Go layouts 2021-11-01 15:45:59 +01:00
hugio Add custom font support to images.Text 2021-12-07 16:53:02 +01:00
hugo Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
loggers tpl/fmt: Add erroridf template func 2021-06-07 19:11:03 +02:00
maps Fix it so disableKinds etc. does not get merged in from theme 2021-08-22 13:25:20 +02:00
math tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
para para: Skip para test when not on CI 2020-12-23 19:47:20 +01:00
paths Split out the puthe path/filepath functions into common/paths 2021-06-18 10:55:00 +02:00
terminal Fix ANSI character output regression on Windows 2018-11-02 09:09:02 +01:00
text Revert "publisher: Make the HTML element collector more robust" 2021-05-19 03:45:36 +02:00
types commands: Make the --poll flag a duration 2021-07-05 10:23:29 +02:00
urls Add file (line/col) info to ref/relref errors 2018-11-01 21:06:35 +01:00