BBRE guy is the only person who cares about eyesight of content consumers, he used large fonts which we can read easily
@BugBountyReportsExplained19 күн бұрын
You're welcome ;)
@KarahannAe5 ай бұрын
18:24 if anyone else was also confused when he says POST-AUTH REDIRECT he is talking about after the Oauth dance is over, he doesnt mean POST based oauth flow.
@BugBountyReportsExplained19 күн бұрын
I see how this can be confusing. Since then, I have changed how I say this part to after-auth redirect to be clearer.
@so3litude_5 ай бұрын
Even though the state parameter is present in the request you should always check for CSRF I've found many targets vulnerable to this . Most of the people leave as soon as they see State parameter in the request. This happens because of misconfig in OUath flow where it doesen't validate the state parameter server side . It only checks if it is present or not.
@deporison5 ай бұрын
Also the login csrf is still possible because we still have the state and we can send it to the user
@BugBountyReportsExplained5 ай бұрын
very true! The presence doesn't mean it's checked
@heller645 ай бұрын
most site now uses strict url validation on redirect_uri not even extra dot can be added btw thx greg