Skip to content

Latest commit

 

History

History
91 lines (90 loc) · 9.01 KB

dev-security.md

File metadata and controls

91 lines (90 loc) · 9.01 KB

Development Security Checklist

TRANSMITING INFORMATION
  • Never send credentials unencrypted over public network. Always use encryption (such as HTTPS, SSL, etc.).
  • Don't accept passwords or session tokens over HTTP.
  • Use HTTPS for all web traffic.
  • Use HTTPS in the beginning; it's harder to introduce later.
  • Use HTTPS redirects for HTTP traffic.
  • Use HSTS headers to enforce HTTPS traffic.
  • Use secure cookies.
  • Avoid protocol-relative URLs.
STORING INFORMATION
  • Never store secrets (passwords, keys, etc.) in the sources in version control.
  • Don't log passwords.
  • Don't store passwords in plain text.
  • Don't hash passwords using a reversible cipher.
  • Don't hash passwords using a broken cipher, such as MD5 or SHA1.
LOGGING
  • For applications handling sensitive data, it's good to maintain audit logging—storing a sequence of actions/events that took place in the system, together with the event/source originator.
  • Data should be anonymized as much as possible. Avoid logging personally identifiable information, for example user’s name.
  • If you must log sensitive information try hashing before logging so you can identify the same entity between different parts of the processing.
DOCKER

Using Docker will not make your service more secure. Generally, you should consider at least following things if using Docker:

  • Don't run any untrusted binaries inside Docker containers
  • Create unprivileged users inside Docker containers and run binaries using unprivileged user instead of root whenever possible
  • Periodically rebuild and redeploy your containers with updated libraries and dependencies
  • Periodically update (or rebuild) your Docker hosts with latest security updates
  • Multiple containers running on same host will by default have some level of access to other containers and the host itself. Properly secure all hosts, and run containers with a minimum set of capabilities, for example preventing network access if they don't need it.
AUTHENTICATION SYSTEMS (Signup/Signin/2 Factor/Password reset)
  • Use HTTPS everywhere. Never send credentials unencrypted over public network.
  • Store password hashes using Bcrypt (no salt necessary - Bcrypt does it for you).
  • Destroy the session identifier after logout.
  • Destroy all active sessions on reset password (or offer to).
  • Must have the state parameter in OAuth2.
  • No open redirects after successful login or in any other intermediate redirects.
  • When parsing Signup/Login input, sanitize for javascript://, data://, CRLF characters.
  • Set secure, httpOnly cookies.
  • In Mobile OTP based mobile verification, do not send the OTP back in the response when generate OTP or Resend OTP API is called.
  • Limit attempts to Login, Verify OTP, Resend OTP and generate OTP APIs for a particular user. Have an exponential backoff set or/and something like a captcha based challenge.
  • Lock a user account for specific time after a given number of failed attempts
  • Check for randomness of reset password token in the emailed link or SMS.
  • Set an expiration on the reset password token for a reasonable period.
  • Expire the reset token after it has been successfully used.
USER DATA & AUTHORIZATION
  • Any resource access like, my cart, my history should check the logged in user's ownership of the resource using session id.
  • Serially iterable resource id should be avoided. Use /me/orders instead of /user/37153/orders. This acts as a sanity check in case you forgot to check for authorization token.
  • Edit email/phone number feature should be accompanied by a verification email to the owner of the account.
  • Any upload feature should sanitize the filename provided by the user. Also, for generally reasons apart from security, upload to something like S3 (and post-process using lambda) and not your own server capable of executing code.
  • Profile photo upload feature should sanitize all the EXIF tags also if not required.
  • For user ids and other ids, use RFC compliant UUID instead of integers. You can find an implementation for this for your language on Github.
  • JWT are awesome. Use them if required for your single page app/APIs.
SANITIZATION OF INPUT
  • Sanitize all user inputs or any input parameters exposed to user to prevent XSS.
  • Always use parameterized queries to prevent SQL Injection.
  • Sanitize user input if using it directly for functionalities like CSV import.
  • Sanitize user input for special cases like robots.txt as profile names in case you are using a url pattern like coolcorp.io/username.
  • Do not hand code or build JSON by string concatenation ever, no matter how small the object is. Use your language defined libraries or framework.
  • Sanitize inputs that take some sort of URLs to prevent SSRF.
  • Sanitize Outputs before displaying to users.
ANDROID / IOS APP
  • salt from payment gateways should not be hardcoded.
  • secret / auth token from 3rd party SDK's should not be hardcoded.
  • API calls intended to be done server to server should not be done from the app.
  • In Android, all the granted permissions should be carefully evaluated.
  • On iOS, store sensitive information (authentication tokens, API keys, etc.) in the system keychain. Do not store this kind of information in the user defaults.
  • Certificate pinning is highly recommended.
SECURITY HEADERS & CONFIGURATIONS
  • Add CSP header to mitigate XSS and data injection attacks. This is important.
  • Add CSRF header to prevent cross site request forgery. Also add SameSite attributes on cookies.
  • Add HSTS header to prevent SSL stripping attack.
  • Add your domain to the HSTS Preload List
  • Add X-Frame-Options to protect against Clickjacking.
  • Add X-XSS-Protection header to mitigate XSS attacks.
  • Update DNS records to add SPF record to mitigate spam and phishing attacks.
  • Add subresource integrity checks if loading your JavaScript libraries from a third party CDN. For extra security, add the require-sri-for CSP-directive so you don't load resources that don't have an SRI sat.
  • Use random CSRF tokens and expose business logic APIs as HTTP POST requests. Do not expose CSRF tokens over HTTP for example in an initial request upgrade phase.
  • Do not use critical data or tokens in GET request parameters. Exposure of server logs or a machine/stack processing them would expose user data in turn.
OPERATIONS
  • If you are small and inexperienced, evaluate using AWS elasticbeanstalk or a PaaS to run your code.
  • Use a decent provisioning script to create VMs in the cloud.
  • Check for machines with unwanted publicly open ports.
  • Check for no/default passwords for databases especially MongoDB & Redis.
  • Use SSH to access your machines; do not setup a password, use SSH key-based authentication instead.
  • Install updates timely to act upon zero day vulnerabilities like Heartbleed, Shellshock.
  • Modify server config to use TLS 1.2 for HTTPS and disable all other schemes. (The tradeoff is good.)
  • Do not leave the DEBUG mode on. In some frameworks, DEBUG mode can give access full-fledged REPL or shells or expose critical data in error messages stacktraces.
  • Be prepared for bad actors & DDOS - use a hosting service that has DDOS mitigation.
  • Set up monitoring for your systems, and log stuff (use New Relic or something like that).
  • If developing for enterprise customers, adhere to compliance requirements. If AWS S3, consider using the feature to encrypt data. If using AWS EC2, consider using the feature to use encrypted volumes (even boot volumes can be encrypted now).
  • Set up Netflix's Scumblr to hear about talks about your organization on social platforms and Google search.