Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.47 KB

Day10.md

File metadata and controls

26 lines (20 loc) · 1.47 KB

Day 10: Solve 2 authentication labs on the portswigger lab and read blogs


1. Authentication Labs

> In this lab, a simple login form with a username and password field After entering the lab username and incorrect password and 
  capturing the request, we see that the application sends string type of values to authenticate users.
  
> We can simply add all the passwords from the given list and put them in array format.
> In this lab application has secure with 2FA but in buggy format. When the user logs in with a valid username and password, the 
  application will ask for 2FA code that can be accessed from the "Email Client" and after successfully entering the 2FA code, 
  they are redirected to the "/my-account" page.

> When we try to login with other credentials that are provided in the lab, With /login2 to /my-account, we can easily manipulate 
  requests. 

2. Read Blogs