Tag view

#security

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with security

11 cards

React Medium Theory

React security and best practices

Safe React code avoids dangerous HTML injection, unnecessary direct DOM manipulation, state mutation, and side effects during render.

  • `dangerouslySetInnerHTML` is risky
  • Keep components focused and state colocated
  • Avoid premature optimization and hidden mutation

React security and best practices

Django Easy Theory

What is CSRF in Django?

CSRF protection ensures a state-changing request comes from your site and includes a valid token.

  • Protects POST and unsafe methods
  • Relies on token validation
  • Use csrf_token in forms

What is CSRF in Django?

DevOps Easy Theory

What is AWS IAM?

IAM manages who can do what in AWS through users, roles, policies, and least-privilege permissions.

  • Authentication plus authorization
  • Roles are preferred for workloads
  • Least privilege is the design goal

What is AWS IAM?