What is OAuth with PKCE and How Does it Work? | Way of the Future

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

Комментарии • 8

  • @senk0than
    @senk0than 3 года назад +1

    what an amazing content...Thanks much Abhay

  • @SudhanshuSrivastavaIndia
    @SudhanshuSrivastavaIndia Год назад

    Is it good practice to get PKCE as part of configuration injection from an app to a Login Framework which has OAuth 2.0?

  • @sanofamotivation
    @sanofamotivation 8 месяцев назад

    Could you please create vedio on other grant types aswell

  • @guesswho2306
    @guesswho2306 2 года назад +1

    Good explanation! Liked it! I have QQ - at 5:08 where we are sending encrypted string with type of hashing s256 so anyone easily can decrypt that request

    • @AppSecEngineer
      @AppSecEngineer  2 года назад +2

      Thanks for your question. Just to clarify. This is not an encrypted string. Its a secure random value that is subsequently subjected to a SHA256 hash. So there's no question of decryption. And attempting to crack/collide this hash is nearly impossible because of the nature of the underlying random value. In addition to all these constraints, remember that this value is a one-time use value only. Its never used subssequently, and is transmitted over HTTPS, so these risks are quite mitigated. I hope we've clarified.

    • @guesswho2306
      @guesswho2306 2 года назад +1

      Got it. Thanks again!