forked from sectool/Python-Random-Password-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpg.py
25 lines (22 loc) · 1014 Bytes
/
rpg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import string
import random
def random_password_generator():
chars = string.ascii_uppercase + string.ascii_lowercase + string.digits
size = 8
return ''.join(random.choice(chars) for x in range(size, 20))
def random_password_generator_ico():
random_password_generator_ico = """
#############################################################
# PYTHON - Random Password Generetor (RPG) - GH0ST S0FTWARE #
#############################################################
# CONTACT #
#############################################################
# DEVELOPER : İSMAİL TAŞDELEN #
# Mail Address : pentestdatabase@gmail.com #
# LINKEDIN : https://www.linkedin.com/in/ismailtasdelen #
# Whatsapp : + 90 534 295 94 31 #
#############################################################
"""
print(random_password_generator_ico)