[Solved] How can I know my Node.JS application security is up to standard?


Security is really hard to get right. There are so many different factors to consider, countless different ways to break an application.

This guide is definitely not meant to address every single possible security flaw within application. It does, however, provide a basic checklist to ensure that an Express application addresses or application some of the biggest security threats.

  1. Enable TLS/SSL
  2. Encode All Untrusted Data Sent to an Application
  3. HTML Encoding
  4. Prevent Parameter Pollution to Stop Possible Uncaught Exceptions
  5. Add Helmet to Set Sane Defaults
  6. Block Cross-Site Request Forgeries
  7. Brute Force Protection
  8. Command Injection
  9. Don’t Use Evil Regular Expressions
    and many more you can see below link

node secuirty tips

node playback

Node Secuirty check

solved How can I know my Node.JS application security is up to standard?