No video

Password Strength Checker in Python

Today we build a simple tool that helps us to evaluate the strength of our passwords.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: www.neuralnine...
💻 The Algorithm Bible Book: www.neuralnine...
👕 Programming Merch: www.neuralnine...
🌐 Social Media & Contact 🌐
📱 Website: www.neuralnine...
📷 Instagram: / neuralnine
🐦 Twitter: / neuralnine
🤵 LinkedIn: / neuralnine
📁 GitHub: github.com/Neu...
🎙 Discord: / discord
🎵 Outro Music From: www.bensound.com/

Пікірлер: 26

  • @micleh
    @micleh2 жыл бұрын

    Nice videos for Python beginners. I like small projects that focus on explaining a single topic and yet leave room for creativity. Thanks a lot!

  • @DeadlyDragon_
    @DeadlyDragon_2 жыл бұрын

    Oh this is an easy one! Add an input for a user. And then a single print line that just says “you really trust a random python script with your password? You should probably change your passwords”

  • @lennuard_6998
    @lennuard_69982 жыл бұрын

    I LOVE your reecent videos

  • @gaganwishalnadipalli5797
    @gaganwishalnadipalli5797 Жыл бұрын

    import string a,b,c = input('Enter the password: '),[list(string.ascii_lowercase),list(string.ascii_uppercase),list(string.digits),list(string.punctuation)],0 for x in b: for d in a: if d in x: c+=1 break i think this would be better

  • @thomasgoodwin2648
    @thomasgoodwin26482 жыл бұрын

    Why not just: score += sum[characters] and scale the total score 0-8?

  • @Yahya-wm4hn
    @Yahya-wm4hn11 күн бұрын

    its nice🤩

  • @chriss3154
    @chriss31542 жыл бұрын

    Extra 👍👍👍 for checking against common/default password list as filter

  • @techprakash001
    @techprakash0018 ай бұрын

    One of the greatest Creater coder programmer he is helped me a lot in my projects respect++++ Brother😄😄

  • @sebbyapudo7357
    @sebbyapudo73572 жыл бұрын

    I feel glad to find this channel

  • @cheesium137
    @cheesium1372 жыл бұрын

    Whenever I run the program, it always gives me this error. UnicodeDecodeError: 'charmap' codec can't decode byte 0x8f in position 1914381: character maps to Someone please help me I really want to finish this program properly.

  • @lakewobegonesbest8725
    @lakewobegonesbest8725 Жыл бұрын

    Probably mentioned already but importing re module and using regex is more ‘elegant.’ The scoring is overly complicated, especially since any() returns a bool. A binary output, like pass or fail, makes more sense to me.

  • @_Halo117_
    @_Halo117_ Жыл бұрын

    thanx, nice code.. simple but useful

  • @tcgvsocg1458
    @tcgvsocg14582 жыл бұрын

    its time to hit the like button

  • @brandonoreo
    @brandonoreo Жыл бұрын

    nice for me a beginner

  • @lyonfiurextechsupport3133
    @lyonfiurextechsupport31332 жыл бұрын

    Dude, do you have any code examples and how to implement them for 2FA/OTA in a webpage?

  • @anshmalviya4390
    @anshmalviya43902 жыл бұрын

    Neural, can you do voice identification?

  • @kevinwestrom4775
    @kevinwestrom47752 жыл бұрын

    You didn't seem to have connected the "characters" to the password checking, for checking all of the types within it; also you mentioned in the downloading of the "most common passwords.txt" file from google, but you didn't mention where to be sure to store it/save the file to, in order for the IDE to detect/know about the 'most common passwords' file for checking the password against it. If importing the file into the program early on, or connecting it to the quick program later on, in a linked manner..

  • @_SanjayBiswas
    @_SanjayBiswas2 жыл бұрын

    1st like and comment. It's cool. Go ahead.

  • @elite_dusty
    @elite_dusty4 ай бұрын

    9:50

  • @HypnosisBear
    @HypnosisBear2 жыл бұрын

    Yo! That's an exiting video. Looks like I'm first.

  • @aaryqnnn
    @aaryqnnn2 жыл бұрын

    source code??

  • @user-wl4zi4fr4j
    @user-wl4zi4fr4j9 ай бұрын

    Where can I find source code?

  • @zenyth2108
    @zenyth21082 жыл бұрын

    Has anyone got the pseudocode for this?

  • @spiderjump
    @spiderjump2 жыл бұрын

    6wcg57chr04083mep188bjm26125 Will take thousands of years to crack right?

  • @mohitdogra7998
    @mohitdogra79982 жыл бұрын

    hey how can i contact you? @NeuralNine