Update 'filterRoutes.js'

This commit is contained in:
Marcus Noble 2021-01-28 14:14:04 +00:00
parent 955d28ccd1
commit 004b41a6a1
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,7 @@
const express = require('express');
const router = express.Router();
const blackHole = function (req, res) {};
router.all('(/*)?/wp-admin/', blackHole);
router.all(/.*\.php$/, blackHole);
router.all(/.*\.aspx$/, blackHole);
@ -13,6 +15,5 @@ router.post('*', blackHole);
router.put('*', blackHole);
router.delete('*', blackHole);
const blackHole = function (req, res) {};
module.exports = router