• Join CraxPro and earn real money through our Credit Rewards System. Participate and redeem credits for Bitcoin/USDT. Start earning today!
    Read the detailed thread here

Program that create random username with password for combo

Currently reading:
 Program that create random username with password for combo

yohilax951

Member
LV
1
Joined
Dec 20, 2023
Threads
63
Likes
32
Awards
5
Credits
3,810©
Cash
0$
import faker

def generate_fake_email_password_pair():
fake = faker.Faker()
email = fake.email()
password = fake.password(length=8) # You can adjust the password length as needed
return f"{email}:{password}"

# Example: Generate a fake email and password pair
fake_email_password_pair = generate_fake_email_password_pair()
print("Fake Email and Password Pair:", fake_email_password_pair)
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Top Bottom