{% extends 'introduction/base.html' %} {% block content %} {% block title %} Broken Authentication {% endblock %}

Description

What is Broken Authentication

Broken authentication is an umbrella term for several vulnerabilities that attackers exploit to impersonate legitimate users online. Broadly, broken authentication refers to weaknesses in two areas: session management and credential management. Both are classified as broken authentication because attackers can use either avenue to masquerade as a user: hijacked session IDs or stolen login credentials.

Broken Authentication errors occur when:


The main consequences are:
  • Unauthorized users can acess the system.
  • User information is leaked

Mitigation

Try thinking about cookies and how they can expose secrets !!!!

{% endblock %}