From ede7d2a77fbd119f4fcf6a931ca3fd0d312950ca Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 30 Jan 2021 15:48:32 +0000 Subject: [PATCH] Added more blackhole routes --- filterRoutes.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/filterRoutes.js b/filterRoutes.js index f1b5e46..8338ba4 100644 --- a/filterRoutes.js +++ b/filterRoutes.js @@ -11,6 +11,10 @@ router.all('/.env', blackHole); router.all('/autodiscover/autodiscover.xml', blackHole) router.all('/.well-known/autoconfig(/.*)?', blackHole) router.all('/admin(/.*)?', blackHole) +router.all('/wordpress/', blackHole); +router.all('/wp(2)?/', blackHole); +router.all('/backup/', blackHole); +router.all('/bak/', blackHole); router.post('*', blackHole); router.put('*', blackHole); router.delete('*', blackHole);