Two-Factor Authentication (2FA) in Python

  Рет қаралды 46,070

NeuralNine

NeuralNine

Күн бұрын

Пікірлер: 45
@captainobvious7898
@captainobvious7898 4 ай бұрын
Excellent to the point video without wasting any time with nonsense. Learned exactly what I came here for, nothing more, nothing less. This is a perfect example of what all KZbin tutorial videos should be.
@Lorry127
@Lorry127 Ай бұрын
Great video! Brief, informative, precise, and without BS. Keep up the fantastic work!
@rafaArt680
@rafaArt680 Жыл бұрын
Best channel for python developers ever, I learn a lot from you man!!
@tracyprice8548
@tracyprice8548 Жыл бұрын
This is awesome. This is similar to the project I am building in my current class. I added similar code to flask app along with html files to create webpages😊🎉
@thienviet3429
@thienviet3429 Жыл бұрын
I want to inform other people, that the key needs to be more than 19 letters. You will get an error, if you the key has less than 20 letters.
@carecavoador
@carecavoador Жыл бұрын
Awesome, man. As always very interesting content showing practical use of nice things.
@kiiikoooPT
@kiiikoooPT 11 ай бұрын
this is very usefull, but I'm looking for kind of the oposite, like I want to make the authenticator itself, what I mean is, I want to make my own app where I can scan the qr code or something, and aply the uri there from any service, to keep them all in the same app, my own app. and you probably will ask why, well i have a bunch of acounts and 3 Auth apps, and some accounts dont work with some Auth apps, you need a specific auth app for that type of account, so I wonder if is possible to make your own Auth app and have all the accounts on it???
@Julie9009
@Julie9009 Жыл бұрын
Thank you 😊 This video came at just the right time for me. It will allow me to very easily add 2FA to an app that I'm currently developing.
@mindcreativestudios4709
@mindcreativestudios4709 Жыл бұрын
Thank you! So helpful and practical.
@Salmanmushtaq-cs3jm
@Salmanmushtaq-cs3jm 3 ай бұрын
I create the uri and generate the QRCODE, when I scan using google authenticator it shows "key not recognized"
@vedantbarhate2028
@vedantbarhate2028 Жыл бұрын
hey brother can u plz. tell u r from which university and what are u learning like ur major and all.......
@Jmignet
@Jmignet Жыл бұрын
Great Video! Is it advisable to have some sort of destruction mechanism on that QR Code? Otherwise, anyone that scans it would be able to add it to an authenticator app? Or does that QR Code already come with some sort of OTP encrypted?
@editsensei6876
@editsensei6876 Жыл бұрын
Plz Share code
@limitlessplays007
@limitlessplays007 Жыл бұрын
Please make a video on python with keycloak it has all these features and 2fa and main thing is its open source
@1mrnewton
@1mrnewton Жыл бұрын
Great Great🔥🔥
@Stl71
@Stl71 Жыл бұрын
Beautiful man! Can you make a video and explain how to have a different code for each computer?
@paulthomas1052
@paulthomas1052 Жыл бұрын
Very useful demo. Thanks :)
@mikepenprogrammer2652
@mikepenprogrammer2652 Жыл бұрын
Awesome! Thank you for the great content.
@strycinek
@strycinek Жыл бұрын
Very useful. Thank you for the tutorial
@user-tw9oo1kd9g
@user-tw9oo1kd9g Жыл бұрын
Thank you for great tutorial!
@elricho72
@elricho72 11 ай бұрын
Great chanel !, awesome example, thank you
@Salmanmushtaq-cs3jm
@Salmanmushtaq-cs3jm 3 ай бұрын
when i generate qrcode and scan using google authenticator i received error "key not recognized"
@user-po5nc8pw1b
@user-po5nc8pw1b Жыл бұрын
Thank you for the video.
@rabeemohammed5351
@rabeemohammed5351 Жыл бұрын
I want ask you question please Can I send sms messages for my phone use python Or use USB Or use kivy I mean same apk sms messages in phone📱
@acrobite26
@acrobite26 Жыл бұрын
I get the following error: TypeError: argument should be a bytes-like object or ASCII string, not 'list' What do i do?😭
@irfanshaikh262
@irfanshaikh262 Жыл бұрын
Great stuff
@c0rp0rat1on1
@c0rp0rat1on1 11 ай бұрын
I am trying to do this in bit different way but I get non base32 detection error and I am not able to log in to my broker plz help
@writetogupta
@writetogupta 15 күн бұрын
Great
@aadityasahoo6244
@aadityasahoo6244 10 ай бұрын
Hey what do i do when i try to scan the qr with google authenticator and it says that error: key not recognised? any solutions/ideas?
@mrpinkm4n
@mrpinkm4n 9 ай бұрын
pyotp.totp.TOTP(base64.b32encode(secret_key)) google authenticator needs converted base32 key
@abdullahsaid8561
@abdullahsaid8561 Жыл бұрын
the key has to be base64, not string
@kristianjackson6196
@kristianjackson6196 Жыл бұрын
Was wondering about this, thank you
@1DannyJh
@1DannyJh Жыл бұрын
gracias!
@ozkanozdemir6255
@ozkanozdemir6255 Жыл бұрын
Great...
@santaclausiscomingtotown3923
@santaclausiscomingtotown3923 Жыл бұрын
love!
@rajat6249
@rajat6249 Жыл бұрын
How to increase time from 30 seconds to 3 minutes or more??
@EdwinVanAssen
@EdwinVanAssen Жыл бұрын
You can't increase the duration that a TOTP token is valid. However you can add an extra argument in the verify function to increase the window of tokens that will be valid: # accept the current, previous and next token (for most applications this should be sufficient): pyotp.verify(otp=, valid_window=1) # accept the current, previous 3 and next 3 tokens: pyotp.verify(otp=, valid_window=3)
@naveensc867
@naveensc867 7 ай бұрын
Hi ModuleNotFoundError: No module named 'pyotp'
@khalidbouychou
@khalidbouychou 6 күн бұрын
install it
@samrijijkot
@samrijijkot Жыл бұрын
Comment for engagement
@-sothea2143
@-sothea2143 Жыл бұрын
👌💖
@tcgvsocg1458
@tcgvsocg1458 Жыл бұрын
too much import you show nothing...
@shad-intech
@shad-intech Жыл бұрын
Happy I will not be writing the logic provided py PyOTP from scratch.
@jorgechavarriaga395
@jorgechavarriaga395 Жыл бұрын
Nice ! Thanks! Great video! Little question.. I'm trying to in my provisioning_uri to send an image.. (to be able to have it in the autentication app ..like microsoft, etc).. but so far without success ... i have not found any documentation related.. any ideas ? uri = totp.provisioning_uri(name=user, issuer_name=company, image=url) url = "XXXXX/myimage.png" i dont receive any error.. but also no image in the app
2FA: Two Factor Authentication - Computerphile
12:34
Computerphile
Рет қаралды 502 М.
Coding Encrypted Chat in Python
20:33
NeuralNine
Рет қаралды 47 М.
❌Разве такое возможно? #story
01:00
Кэри Найс
Рет қаралды 6 МЛН
Throwing Swords From My Blue Cybertruck
00:32
Mini Katana
Рет қаралды 11 МЛН
拉了好大一坨#斗罗大陆#唐三小舞#小丑
00:11
超凡蜘蛛
Рет қаралды 16 МЛН
Towards Django Two Factor Authentication Integration
46:23
Very Academy
Рет қаралды 25 М.
Modern Graphical User Interfaces in Python
11:12
NeuralNine
Рет қаралды 1,5 МЛН
Obfuscating python code with subdora for code security
8:27
robotrakesh
Рет қаралды 391
RSA Private & Public Key Encryption in Python
12:42
NeuralNine
Рет қаралды 53 М.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,6 МЛН
How Hackers Bypass Two-Factor Authentication (2FA)?!
9:20
Loi Liang Yang
Рет қаралды 130 М.
Automate TOTP 2-Factor Authentication (2FA) with Playwright
10:17
AutomateTogether
Рет қаралды 14 М.
Makefiles in Python For Professional Automation
13:43
NeuralNine
Рет қаралды 42 М.
❌Разве такое возможно? #story
01:00
Кэри Найс
Рет қаралды 6 МЛН