hugo/markup
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
..
asciidocext Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
blackfriday highlight: Remove some pygments references 2021-08-21 15:50:49 +02:00
converter Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
goldmark highlight: Add tabindex when code is not highlighted 2021-08-23 12:28:45 +02:00
highlight highlight: Add tabindex when code is not highlighted 2021-08-23 12:28:45 +02:00
internal Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
markup_config Misc config loading fixes 2021-06-14 17:00:32 +02:00
mmark Misc config loading fixes 2021-06-14 17:00:32 +02:00
org Misc config loading fixes 2021-06-14 17:00:32 +02:00
pandoc Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
rst Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
tableofcontents markup: Rename Header(s) to Heading(s) in ToC struct 2021-06-19 18:19:46 +02:00
markup.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
markup_test.go Misc config loading fixes 2021-06-14 17:00:32 +02:00