security vulnerability

Importance of Secure Coding Practices in App Development

Estimating the potential impact of security vulnerability is harder than you might think. Few of the steps to mitigate are outlined here in this post.

  1. The input data meant to be consumed by your app be validated for invalid data formats. Example: If it is json then have schema. Mark data as optional or have valid filters, max lengths etc.
  2. The libraries you need their versions are free of vulnerabilities. Or upgrade them. Example: use OWASP Top 10 tool and others.
  3. Build security around your app. Example: follow OAuth tokens, encryption with cryptography.
  4. Error and Exception Handling: Make your app robust to handle errors gracefully.
  5. Logging and Tracing: Use Logging to log error and exception messages.

Leave a Reply