Python Password Generator | Get unhackable passwords with 5 lines of python #shorts #copyrightfree

preview_player
Показать описание
Python Password Generator | Get unhackable passwords with 5 lines of python #shorts #copyrightfree #password #programming #harshitbhaiyt #hacking

How to generate passwords using python programming language with just 6-8 lines of codes.

Remember I have uploaded this video 2nd time just because of using copyrighted music, thats why I uploaded this video one more time to sure that I am not using any copyrighted.
I will unlist or remove that copyrighted music soon
Рекомендации по теме
Комментарии
Автор

You don't need to write a-z, A-Z or 1 to 9, just initialize that with list(map(chr, range(97, 123))) for lowercase and change ascii codes for another list of uppercase or numbers

aarkestraclub
Автор

Random libraries function aren't truly random actually. They are based on seed values and can be easily be duplicated by research or hackers.

jairajsahgal
Автор

This method is very insecure and should not be used.
The random module generates random numbers based on time. An attacker could guess the numbers generated if they know when the password was generated.


Use the secrets module.

I literally found this code on python docs for secrets just now and it will create a password with much higher entropy then the code in the video.

Generate an eight-character alphanumeric password:

import string
Import secrets
alphabet = string.ascii_letters + string.digits
password = for i in range(8))

decryptingelectrons
Автор

Instead of creating strings to store lowercase, uppercase, etc you can use string library.

prasangsinghal
Автор

...or, and just hear me out here. You expand the scope to create a password storage utility for all of your frequented websites. Once you expand it that far, the next step would be to make a one-size fits all account deactivater that works on all major platforms 🤷

Sabrsulab
Автор

Hi bro can please please help and tell which software you are please so I also do coding .just a request please
Love from Fiji Islands

Lata
Автор

Hey im nee to python i alrwady know java and c# but could you please give some tips??

Ig_loverplayz
Автор

Just use string module don't need to write out all characters

mrgamer-luim
Автор

Can you plz make a viedo on router wpa2 wifi hacking python plz its is a request from all

movieminded
Автор

"python password generator"
also imports random

join
Автор

Use 'secrets' module to generate pseudorandom passwords. It will be more secure than 'random' module.

souvikghosh
Автор

This is a bad password generation and the random module if you look it up says explicitly do not use for purpose of cryptography. Because you could replicate the random output, if you know enough about it.

fable
Автор

8 characters are eminently hackable make length random between 15 and 25, and you're cooking on solar.

patrickfreeman
Автор

upper characters = lower_characters.upper()

tcgmilan
Автор

Can we generate passwords for Google account?

srikrishnanamah
Автор

Bro it's just can tackle brute force attack nothing than that
I can get the exact password by other methods like key logger and phishing also the spyware
I can bind them with any of the other softwares like video, image and pdf documents
But still good but if the password would contain symbols and long password than it's hard to brute the password.
Yes I'm a hacker but white hate '_'

Anurag_gupta
Автор

Well next vid on how to auto import those passwords

deathdanoob
Автор

It don't give you guarantee that each and every password contains at least one LOWERCASE, UPPERCASE, NUMBER and SYMBOL....

adityavaste
Автор

I'm facing some errors in line number 8 which start with password =

ismailzakaria
Автор

string and secret and naming module and naming convention may go to hell, I will generate an easy password using random

hadawardgz