From c5dd5179df59c12ac243eb372e24d49f3a767771 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Fri, 7 Aug 2020 14:12:13 -0400 Subject: [PATCH] Change /internal/ to /admin/ in vcl param safelist (#9672) --- config/fastly/snippets/safe_params_list.vcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/fastly/snippets/safe_params_list.vcl b/config/fastly/snippets/safe_params_list.vcl index 8d204d097..1af167044 100644 --- a/config/fastly/snippets/safe_params_list.vcl +++ b/config/fastly/snippets/safe_params_list.vcl @@ -1,7 +1,7 @@ import querystring; sub vcl_recv { # return this URL with only the parameters that match this regular expression - if (req.url !~ "/internal/" && req.url !~ "/search/" && req.url !~ "/bulk_show") { + if (req.url !~ "/admin/" && req.url !~ "/search/" && req.url !~ "/bulk_show") { set req.url = querystring.regfilter_except(req.url, "^(a_id|args|article_id|article_ids|articles|asc|callback_url|category|chat_channel_id|client_id|code|collection_id|commentable_id|commentable_type|confirmation_token|created_at|end|filter|followable_id|followable_type|fork_id|i|key|message_offset|name|oauth_token|oauth_verifier|offset|org_id|organization_id|p|page|per_page|prefill|preview|purchaser|reactable_ids|redirect_uri|reported_url|reporter_username|response_type|scope|search|signature|sort|source_id|source_type|start|state|status|tag|tag_list|top|type_of|url|username|invitation_token|reset_password_token|ut|verb|invitation_slug)$"); } }