Update 'filterRoutes.js'
This commit is contained in:
parent
955d28ccd1
commit
004b41a6a1
@ -1,5 +1,7 @@
|
|||||||
const express = require('express');
|
const express = require('express');
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
const blackHole = function (req, res) {};
|
||||||
|
|
||||||
router.all('(/*)?/wp-admin/', blackHole);
|
router.all('(/*)?/wp-admin/', blackHole);
|
||||||
router.all(/.*\.php$/, blackHole);
|
router.all(/.*\.php$/, blackHole);
|
||||||
router.all(/.*\.aspx$/, blackHole);
|
router.all(/.*\.aspx$/, blackHole);
|
||||||
@ -13,6 +15,5 @@ router.post('*', blackHole);
|
|||||||
router.put('*', blackHole);
|
router.put('*', blackHole);
|
||||||
router.delete('*', blackHole);
|
router.delete('*', blackHole);
|
||||||
|
|
||||||
const blackHole = function (req, res) {};
|
|
||||||
|
|
||||||
module.exports = router
|
module.exports = router
|
||||||
|
Loading…
Reference in New Issue
Block a user