all repos — cgit @ 00ad47bbfaf7cc5c372e072a5302e871b5250390

a hyperfast web frontend for git written in c

ui-snapshot: filter permitted snapshot requests

Currently the snapshots configuration option only filters which links
are displayed, not which snapshots may be generated and downloaded.
Apply the filter also to requests to ensure that the system policy is
enforced.

Signed-off-by: John Keeping <john@keeping.me.uk>
Reviewed-by: Christian Hesse <mail@eworm.de>
John Keeping john@keeping.me.uk
Sat, 31 Mar 2018 15:19:52 +0100
commit

00ad47bbfaf7cc5c372e072a5302e871b5250390

parent

c1572bb5ec4540b5008490cf471cc4a5e65ef728

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M ui-snapshot.cui-snapshot.c

@@ -194,7 +194,7 @@ return;

} f = get_format(filename); - if (!f) { + if (!f || !(ctx.repo->snapshots & f->bit)) { cgit_print_error_page(400, "Bad request", "Unsupported snapshot format: %s", filename); return;