Skip to content

Commit d839fa8

Browse files
author
İSMAİL TAŞDELEN
authored
master
1 parent 1fb061d commit d839fa8

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

source/rpg.py

+27
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1+
#!/usr/bin/env python
2+
# -*- coding:utf-8 -*-
13

4+
import string
5+
import random
6+
7+
def random_password_genertor():
8+
chars=string.ascii_uppercase + string.ascii_lowercase + string.digits
9+
size= 8
10+
return ''.join(random.choice(chars) for x in range(size,20))
11+
12+
def random_password_genertor_ico():
13+
random_password_genertor_ico = """
14+
#############################################################
15+
# PYTHON - Random Password Generetor (RPG) - GH0ST S0FTWARE #
16+
#############################################################
17+
# CONTACT #
18+
#############################################################
19+
# DEVELOPER : İSMAİL TAŞDELEN #
20+
# Mail Address : pentestdatabase@gmail.com #
21+
# LINKEDIN : https://www.linkedin.com/in/ismailtasdelen #
22+
# Whatsapp : + 90 534 295 94 31 #
23+
#############################################################
24+
"""
25+
print random_password_genertor_ico
26+
27+
random_password_genertor_ico()
28+
print("Password : " + random_password_genertor())

0 commit comments

Comments
 (0)