Compare commits

..

3 Commits

Author SHA1 Message Date
88e9ee5d33 Filter more routes 2021-06-21 04:22:39 +01:00
2380008894 Fixed broken link 2021-06-21 04:19:33 +01:00
1d093f3dfb Filter gz files 2021-06-21 04:19:01 +01:00
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,9 @@ 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);
router.all(/.*\.gz$/, blackHole);
router.all(/.*\.bz2$/, blackHole);
router.all(/.*\.tar$/, blackHole);
router.all('(/*)?/wp-includes/(*)?', blackHole); router.all('(/*)?/wp-includes/(*)?', blackHole);
router.all('/.git/*?', blackHole); router.all('/.git/*?', blackHole);
router.all('/.env', blackHole); router.all('/.env', blackHole);
@ -14,6 +17,9 @@ router.all('/admin(/.*)?', blackHole)
router.all('/wordpress/', blackHole); router.all('/wordpress/', blackHole);
router.all('/wp(2)?/', blackHole); router.all('/wp(2)?/', blackHole);
router.all('/backup/', blackHole); router.all('/backup/', blackHole);
router.all('/db-backup/', blackHole);
router.all('/db_backup/', blackHole);
router.all('/dbbackup/', blackHole);
router.all('/bak/', blackHole); router.all('/bak/', blackHole);
router.all(/.*\/mail\/config-.+\.xml/, blackHole); router.all(/.*\/mail\/config-.+\.xml/, blackHole);
router.post('*', blackHole); router.post('*', blackHole);

View File

@ -6,7 +6,7 @@ tags: nodejs node npm javascript truncatise ghost
summary: "Today I finally got around to modifying my <a href='https://ghost.org/' target='_blank'>Ghost</a> blog to make use of my new Node Module <a href='//blog.marcusnoble.co.uk/publishing-my-first-npm-module/'>Truncatise</a>.<br/><br/>This didn't go as smoothly as I hoped." summary: "Today I finally got around to modifying my <a href='https://ghost.org/' target='_blank'>Ghost</a> blog to make use of my new Node Module <a href='//blog.marcusnoble.co.uk/publishing-my-first-npm-module/'>Truncatise</a>.<br/><br/>This didn't go as smoothly as I hoped."
--- ---
Today I finally got around to modifying my [Ghost](https://ghost.org/) blog to make use of my new Node Module [Truncatise](/29-10-2013-publishing-my-first-npm-module/). Today I finally got around to modifying my [Ghost](https://ghost.org/) blog to make use of my new Node Module [Truncatise](/2013-10-29-publishing-my-first-npm-module/).
This didn't go as smoothly as I hoped. This didn't go as smoothly as I hoped.