sapling/mercurial/templates/monoblue
Gregory Szorc 9849c580fb hgweb: support Content Security Policy
Content-Security-Policy (CSP) is a web security feature that allows
servers to declare what loaded content is allowed to do. For example,
a policy can prevent loading of images, JavaScript, CSS, etc unless
the source of that content is whitelisted (by hostname, URI scheme,
hashes of content, etc). It's a nifty security feature that provides
extra mitigation against some attacks, notably XSS.

Mitigation against these attacks is important for Mercurial because
hgweb renders repository data, which is commonly untrusted. While we
make attempts to escape things, etc, there's the possibility that
malicious data could be injected into the site content. If this happens
today, the full power of the web browser is available to that
malicious content. A restrictive CSP policy (defined by the server
operator and sent in an HTTP header which is outside the control of
malicious content), could restrict browser capabilities and mitigate
security problems posed by malicious data.

CSP works by emitting an HTTP header declaring the policy that browsers
should apply. Ideally, this header would be emitted by a layer above
Mercurial (likely the HTTP server doing the WSGI "proxying"). This
works for some CSP policies, but not all.

For example, policies to allow inline JavaScript may require setting
a "nonce" attribute on <script>. This attribute value must be unique
and non-guessable. And, the value must be present in the HTTP header
and the HTML body. This means that coordinating the value between
Mercurial and another HTTP server could be difficult: it is much
easier to generate and emit the nonce in a central location.

This commit introduces support for emitting a
Content-Security-Policy header from hgweb. A config option defines
the header value. If present, the header is emitted. A special
"%nonce%" syntax in the value triggers generation of a nonce and
inclusion in <script> elements in templates. The inclusion of a
nonce does not occur unless "%nonce%" is present. This makes this
commit completely backwards compatible and the feature opt-in.

The nonce is a type 4 UUID, which is the flavor that is randomly
generated. It has 122 random bits, which should be plenty to satisfy
the guarantees of a nonce.
2017-01-10 23:37:08 -08:00
..
bookmarks.tmpl monoblue: correct feed links on /branches, /tags and /bookmarks 2015-12-29 01:40:34 +08:00
branches.tmpl monoblue: correct feed links on /branches, /tags and /bookmarks 2015-12-29 01:40:34 +08:00
changelog.tmpl hgweb: don't dereference symbolic revision in monoblue style 2015-06-16 13:59:49 +08:00
changelogentry.tmpl hgweb: apply the websub filter to revision descriptions 2013-02-09 16:48:21 +01:00
changeset.tmpl monoblue: port code selection without line numbers from gitweb 2015-09-23 16:02:35 +08:00
error.tmpl hgweb: don't show summary link as active on error pages in monoblue 2015-06-30 22:15:58 +08:00
fileannotate.tmpl hgweb: link to raw-file on annotation page (BC) 2016-12-28 15:48:17 -07:00
filecomparison.tmpl monoblue: add a link to the latest file revision 2015-10-12 15:20:04 +08:00
filediff.tmpl monoblue: add a link to the latest file revision 2015-10-12 15:20:04 +08:00
filelog.tmpl hgweb: don't dereference symbolic revision in monoblue style 2015-06-16 13:59:49 +08:00
filerevision.tmpl monoblue: add a link to the latest file revision 2015-10-12 15:20:04 +08:00
footer.tmpl hgweb: call process_dates() via DOM event listener 2017-01-10 20:47:48 -08:00
graph.tmpl hgweb: support Content Security Policy 2017-01-10 23:37:08 -08:00
header.tmpl hgweb: urlescape all urls, HTML escape repo/tag/branch/... names 2013-02-01 20:43:35 +01:00
help.tmpl monoblue: fix page subtitle on help pages 2015-09-03 22:25:16 +08:00
helptopics.tmpl hgweb: make anchor name actually match its href on help index page 2016-09-26 16:12:40 +08:00
index.tmpl hgweb: call process_dates() via DOM event listener 2017-01-10 20:47:48 -08:00
manifest.tmpl hgweb: don't dereference symbolic revision in monoblue style 2015-06-16 13:59:49 +08:00
map monoblue: remove unused templates 2016-09-22 13:19:44 +08:00
notfound.tmpl hgweb: don't try to show repo on repo-not-found page in monoblue 2015-06-30 23:34:12 +08:00
search.tmpl hgweb: don't point file links at tip hash where it doesn't make sense 2015-06-12 18:34:10 +08:00
shortlog.tmpl hgweb: support Content Security Policy 2017-01-10 23:37:08 -08:00
summary.tmpl monoblue: tweak branch table's last row's cell colspan on summary page 2016-09-21 20:19:35 +08:00
tags.tmpl monoblue: correct feed links on /branches, /tags and /bookmarks 2015-12-29 01:40:34 +08:00