diff --git a/guide/source/security.md b/guide/source/security.md index 2374f1c5aa..3e35833067 100644 --- a/guide/source/security.md +++ b/guide/source/security.md @@ -694,6 +694,7 @@ This is a collection of points to check about your app that might catch common e 1. Secure the data, not the UI - redirecting away from a client-side route does nothing for security, it's a nice UX feature. 1. [Don't ever trust user IDs passed from the client.](http://guide.meteor.com/security.html#user-id-client) Use `this.userId` inside Methods and publications. 1. Set up secure [HTTP headers](https://guide.meteor.com/security.html#httpheaders) using [Helmet](https://www.npmjs.com/package/helmet), but know that not all browsers support it so it provides an extra layer of security to users with modern browsers. +1. At the end of the day, Meteor is a Node.js app so make sure to also follow the [best practises](https://cheatsheetseries.owasp.org/cheatsheets/Nodejs_Security_Cheat_Sheet.html) to ensure maximum security.