Security upgrades

This commit is contained in:
2020-07-15 19:54:48 +02:00
parent 59cc6c54cd
commit ad8ed283d2
3164 changed files with 408897 additions and 28 deletions

24
node_modules/hide-powered-by/README.md generated vendored Normal file
View File

@@ -0,0 +1,24 @@
Hide X-Powered-By
=================
[![Build Status](https://travis-ci.org/helmetjs/hide-powered-by.svg?branch=master)](https://travis-ci.org/helmetjs/hide-powered-by)
Simple middleware to remove the `X-Powered-By` HTTP header if it's set.
Hackers can exploit known vulnerabilities in Express/Node if they see that your site is powered by Express (or whichever framework you use). For example, `X-Powered-By: Express` is sent in every HTTP request coming from Express, by default. This won't provide much security benefit ([as discussed here](https://github.com/expressjs/express/pull/2813#issuecomment-159270428)), but might help a tiny bit. It will also improve performance by reducing the number of bytes sent.
```javascript
const hidePoweredBy = require('hide-powered-by')
app.use(hidePoweredBy())
```
You can also explicitly set the header to something else, if you want. This could throw people off:
```javascript
app.use(hidePoweredBy({ setTo: 'PHP 4.2.0' }))
```
Note: if you're using Express, you don't need this middleware and can just do this:
```javascript
app.disable('x-powered-by')
```