Validate aliases to prevent directory traversal etc.
authorAnthony Fok <foka@debian.org>
Sun, 13 Sep 2015 12:36:08 +0000 (06:36 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 13 Sep 2015 16:08:42 +0000 (18:08 +0200)
commite71bef79e504f8a016652380ad4c0ca89a2b8898
treebec7ec563ccd360f4f343304f1bc100805ddd5e9
parentdb85299c0039fd13fd18067236e6f3b27e167fb7
Validate aliases to prevent directory traversal etc.

Add validation before creating aliases:

 * Prevent creating aliases outside webroot (public/ dir)
 * Skip empty "" alias
 * Skip "/" → "/index.html", which gets overwritten anyway
 * Refuse to create Windows-invalid filenames on Windows;
   warn on other platforms
 * In case of invalid aliases, after skipping them,
   return `err = nil` to prevent the error passing up
   all the way to `hugolib.Render()` and causing Hugo to abort.
 * Update alias tests.

Fixes #701: Add support for alias with whitespace
Fixes #1418: Add validation for alias
hugolib/site.go
target/alias_test.go
target/htmlredirect.go