File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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 ())
You can’t perform that action at this time.
0 commit comments