From bd4aa14c4139fac359c79c50791f3ddfeac8fd35 Mon Sep 17 00:00:00 2001 From: Kegan Maher Date: Thu, 9 Nov 2023 14:15:24 -0800 Subject: [PATCH] chore(nginx): block sqlite scraper patterns --- appcontainer/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appcontainer/nginx.conf b/appcontainer/nginx.conf index 585f6b669..27f322248 100644 --- a/appcontainer/nginx.conf +++ b/appcontainer/nginx.conf @@ -52,7 +52,7 @@ http { # 404 known scraping file targets # case-insensitive regex matches the given file extension anywhere in the request path - location ~* /.*\.(ash|asp|axd|cgi|com|env|json|php|ping|xml|ya?ml) { + location ~* /.*\.(ash|asp|axd|cgi|com|db|env|json|php|ping|sqlite|xml|ya?ml) { access_log off; log_not_found off; return 404;