Added more blackhole routes

This commit is contained in:
Marcus Noble 2021-01-30 15:48:32 +00:00
parent bd66550ccc
commit ede7d2a77f
1 changed files with 4 additions and 0 deletions

View File

@ -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);