/
githubmirror
/
hugo
Обзор
Документация
Войти
/
githubmirror
/
hugo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
config/security/securityConfig_test.go
424 строки
12 KB
Bjørn Erik Pedersen
Remove tailwindcss from the default security.exec.allow list (note)
10 авг 2026, 16:59
10 авг 2026, 16:59
8a55df7
Код
Авторство
О чём код?
// Copyright 2018 The Hugo Authors. All rights reserved. // // 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 // http://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 security import ( "testing" qt "github.com/frankban/quicktest" "github.com/gohugoio/hugo/config" ) func TestDecodeConfigFromTOML(t *testing.T) { c := qt.New(t) c.Run("Slice whitelist", func(c *qt.C) { c.Parallel() tomlConfig := ` someOtherValue = "bar" [security] enableInlineShortcodes=true [security.exec] allow=["a", "b"] osEnv=["a", "b", "c"] [security.funcs] getEnv=["a", "b"] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc, qt.Not(qt.IsNil)) c.Assert(pc.EnableInlineShortcodes, qt.IsTrue) c.Assert(pc.Exec.Allow.Accept("a"), qt.IsTrue) c.Assert(pc.Exec.Allow.Accept("d"), qt.IsFalse) c.Assert(pc.Exec.OsEnv.Accept("a"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("e"), qt.IsFalse) c.Assert(pc.Funcs.Getenv.Accept("a"), qt.IsTrue) c.Assert(pc.Funcs.Getenv.Accept("c"), qt.IsFalse) }) c.Run("String whitelist", func(c *qt.C) { c.Parallel() tomlConfig := ` someOtherValue = "bar" [security] [security.exec] allow="a" osEnv="b" ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc, qt.Not(qt.IsNil)) c.Assert(pc.Exec.Allow.Accept("a"), qt.IsTrue) c.Assert(pc.Exec.Allow.Accept("d"), qt.IsFalse) c.Assert(pc.Exec.OsEnv.Accept("b"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("e"), qt.IsFalse) }) c.Run("Default exec.osEnv", func(c *qt.C) { c.Parallel() tomlConfig := ` someOtherValue = "bar" [security] [security.exec] allow="a" ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc, qt.Not(qt.IsNil)) c.Assert(pc.Exec.Allow.Accept("a"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("PATH"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("e"), qt.IsFalse) }) c.Run("Enable inline shortcodes, legacy", func(c *qt.C) { c.Parallel() tomlConfig := ` someOtherValue = "bar" enableInlineShortcodes=true [security] [security.exec] allow="a" osEnv="b" ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.EnableInlineShortcodes, qt.IsTrue) }) } func TestToTOML(t *testing.T) { c := qt.New(t) got := DefaultConfig.ToTOML() c.Assert(got, qt.Equals, "[security]\n allowContent = ['! ^text/html$']\n enableInlineShortcodes = false\n\n [security.exec]\n allow = ['^(dart-)?sass$', '^go$', '^git$', '^node$', '^postcss$']\n osEnv = ['(?i)^((HTTPS?|NO)_PROXY|PATH(EXT)?|APPDATA|TE?MP|TERM|GO\\w+|(XDG_CONFIG_)?HOME|USERPROFILE|SSH_AUTH_SOCK|DISPLAY|LANG|SYSTEMDRIVE|PROGRAMDATA)$']\n\n [security.funcs]\n getenv = ['^HUGO_', '^CI$']\n\n [security.http]\n methods = ['(?i)GET|POST']\n urls = ['(?i)^https?://[a-z0-9]', '! ^https?://\\d+\\.', '! (?i)localhost', '! (?i)^https?://[^/?#]*@']\n\n [security.node]\n [security.node.permissions]\n allowAddons = ['tailwindcss']\n allowChildProcess = ['tailwindcss']\n allowRead = ['.']\n allowWorker = ['tailwindcss']\n allowWrite = []\n disable = false", ) } func TestDecodeConfigDefault(t *testing.T) { t.Parallel() c := qt.New(t) pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) c.Assert(pc, qt.Not(qt.IsNil)) c.Assert(pc.Exec.Allow.Accept("a"), qt.IsFalse) c.Assert(pc.Exec.Allow.Accept("node"), qt.IsTrue) c.Assert(pc.Exec.Allow.Accept("npx"), qt.IsFalse) c.Assert(pc.HTTP.URLs.Accept("https://example.org"), qt.IsTrue) c.Assert(pc.HTTP.Methods.Accept("POST"), qt.IsTrue) c.Assert(pc.HTTP.Methods.Accept("GET"), qt.IsTrue) c.Assert(pc.HTTP.Methods.Accept("get"), qt.IsTrue) c.Assert(pc.HTTP.Methods.Accept("DELETE"), qt.IsFalse) c.Assert(pc.HTTP.MediaTypes.Accept("application/msword"), qt.IsFalse) c.Assert(pc.Exec.OsEnv.Accept("PATH"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("GOROOT"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("HOME"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("SSH_AUTH_SOCK"), qt.IsTrue) c.Assert(pc.Exec.OsEnv.Accept("a"), qt.IsFalse) c.Assert(pc.Exec.OsEnv.Accept("e"), qt.IsFalse) c.Assert(pc.Exec.OsEnv.Accept("MYSECRET"), qt.IsFalse) c.Assert(pc.Node.Permissions.IsEnabled(), qt.IsTrue) c.Assert(pc.Node.Permissions.AllowRead, qt.DeepEquals, []string{"."}) c.Assert(pc.Node.Permissions.AllowWrite, qt.DeepEquals, []string{}) } func TestCheckAllowedHTTPURLHardenedDefaultsIssue14792(t *testing.T) { t.Parallel() c := qt.New(t) c.Run("Public URLs allowed by default", func(c *qt.C) { c.Parallel() pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, u := range []string{ "https://example.org/", "https://example.org:8443/foo", "https://sub.example.org/path", } { c.Assert(pc.CheckAllowedHTTPURL(u), qt.IsNil, qt.Commentf(u)) } }) c.Run("Private/loopback URLs denied by default", func(c *qt.C) { c.Parallel() pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, u := range []string{ "http://localhost/", "http://LOCALHOST:8080/", "http://foo.localhost/", "http://127.0.0.1/", "http://127.1.2.3:8080/x", "http://user:pass@127.0.0.1/", // userinfo must not sneak past the deny. "http://10.0.0.1/", "http://172.16.0.1/", "http://192.168.1.1/", "http://169.254.169.254/latest/meta-data/", // AWS/GCP metadata. "http://0.0.0.0/", "http://[::1]/", "http://[fe80::1]/", "http://[fc00::1]/", // Public IP literals are blocked as collateral; users can override. "http://93.184.216.34/", "https://[2001:db8::1]/", } { err := pc.CheckAllowedHTTPURL(u) c.Assert(err, qt.IsNotNil, qt.Commentf(u)) c.Assert(err, qt.ErrorMatches, `(?s).*is not whitelisted in policy "security\.http\.urls".*`, qt.Commentf(u)) } }) c.Run("Explicit user config bypasses hardening", func(c *qt.C) { c.Parallel() tomlConfig := ` [security.http] urls = ['http://127\.0\.0\.1.*', 'http://localhost.*'] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.CheckAllowedHTTPURL("http://127.0.0.1:8080/foo"), qt.IsNil) c.Assert(pc.CheckAllowedHTTPURL("http://localhost:1313/"), qt.IsNil) }) c.Run("User can deny with the ! prefix", func(c *qt.C) { c.Parallel() tomlConfig := ` [security.http] urls = ['.*', '! ^https?://evil\.example\.com'] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.CheckAllowedHTTPURL("https://good.example.com/"), qt.IsNil) err = pc.CheckAllowedHTTPURL("https://evil.example.com/x") c.Assert(err, qt.IsNotNil) c.Assert(err, qt.ErrorMatches, `(?s).*is not whitelisted in policy "security\.http\.urls".*`) }) } func TestCheckAllowedHTTPURLAtInPathIssue14825(t *testing.T) { t.Parallel() c := qt.New(t) pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, u := range []string{ "https://cdn.jsdelivr.net/npm/mermaid@latest/dist/mermaid.esm.min.mjs", "https://unpkg.com/react@18/umd/react.production.min.js", "https://example.org/foo@bar/baz", } { c.Assert(pc.CheckAllowedHTTPURL(u), qt.IsNil, qt.Commentf(u)) } for _, u := range []string{ "http://user@127.0.0.1/", "http://user:pass@example.org/", "https://token@example.org/foo@bar", } { err := pc.CheckAllowedHTTPURL(u) c.Assert(err, qt.IsNotNil, qt.Commentf(u)) c.Assert(err, qt.ErrorMatches, `(?s).*is not whitelisted in policy "security\.http\.urls".*`, qt.Commentf(u)) } } func TestCheckAllowedHTTPURLDigitHostnameIssue14837(t *testing.T) { t.Parallel() c := qt.New(t) pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, u := range []string{ "https://1password.com/", "https://37signals.com/foo", } { c.Assert(pc.CheckAllowedHTTPURL(u), qt.IsNil, qt.Commentf(u)) } for _, u := range []string{ "http://127.0.0.1/", "http://10.0.0.1/", "http://192.168.1.1/", "http://0.0.0.0/", } { err := pc.CheckAllowedHTTPURL(u) c.Assert(err, qt.IsNotNil, qt.Commentf(u)) } } // Integer/hex/octal IPv4 encodings must be denied just like their dotted-decimal // literals; digit-leading hostnames must still be allowed. See issue 14856. func TestCheckAllowedHTTPURLIntegerIPEncodings(t *testing.T) { t.Parallel() c := qt.New(t) pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, u := range []string{ "http://2130706433/", // 127.0.0.1 decimal "http://2130706433:9777/x", // 127.0.0.1 decimal, port "http://2852039166/", // 169.254.169.254 (cloud metadata) "http://0x7f000001/", // 127.0.0.1 hex "http://017700000001/", // 127.0.0.1 octal "http://0x7f.0.0.1/", // 127.0.0.1 dotted hex "http://0177.0.0.1/", // 127.0.0.1 dotted octal "http://127.1/", // 127.0.0.1 short form "http://0/", // 0.0.0.0 "http://0xa9fea9fe/", // 169.254.169.254 hex } { err := pc.CheckAllowedHTTPURL(u) c.Assert(err, qt.IsNotNil, qt.Commentf(u)) } for _, u := range []string{ "https://1password.com/", "https://37signals.com/foo", "https://3com.com/", "https://0x.tools/", } { c.Assert(pc.CheckAllowedHTTPURL(u), qt.IsNil, qt.Commentf(u)) } } func TestCheckAllowedContent(t *testing.T) { t.Parallel() c := qt.New(t) c.Run("text/html denied by default", func(c *qt.C) { c.Parallel() pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) err = pc.CheckAllowedContent("text/html") c.Assert(err, qt.IsNotNil) c.Assert(err, qt.ErrorMatches, `(?s).*"text/html" is not whitelisted in policy "security\.allowContent".*`) }) c.Run("Other content types allowed by default", func(c *qt.C) { c.Parallel() pc, err := DecodeConfig(config.New()) c.Assert(err, qt.IsNil) for _, mt := range []string{ "text/markdown", "text/asciidoc", "text/x-org", "text/rst", "text/pandoc", } { c.Assert(pc.CheckAllowedContent(mt), qt.IsNil, qt.Commentf(mt)) } }) c.Run("User can opt in to HTML", func(c *qt.C) { c.Parallel() tomlConfig := ` [security] allowContent = ['.*'] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.CheckAllowedContent("text/html"), qt.IsNil) }) } func TestDecodeConfigNodePermissions(t *testing.T) { c := qt.New(t) c.Run("Custom paths", func(c *qt.C) { c.Parallel() tomlConfig := ` [security.node.permissions] allowRead = ["/tmp", "."] allowWrite = ["."] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.Node.Permissions.IsEnabled(), qt.IsTrue) c.Assert(pc.Node.Permissions.AllowRead, qt.DeepEquals, []string{"/tmp", "."}) c.Assert(pc.Node.Permissions.AllowWrite, qt.DeepEquals, []string{"."}) }) c.Run("Disabled", func(c *qt.C) { c.Parallel() tomlConfig := ` [security.node.permissions] disable = true ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.Node.Permissions.IsEnabled(), qt.IsFalse) }) c.Run("Wildcard", func(c *qt.C) { c.Parallel() tomlConfig := ` [security.node.permissions] allowRead = ["*"] allowWrite = ["*"] ` cfg, err := config.FromConfigString(tomlConfig, "toml") c.Assert(err, qt.IsNil) pc, err := DecodeConfig(cfg) c.Assert(err, qt.IsNil) c.Assert(pc.Node.Permissions.IsEnabled(), qt.IsTrue) c.Assert(pc.Node.Permissions.AllowRead, qt.DeepEquals, []string{"*"}) }) }