Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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‎

Lines changed: 27 additions & 0 deletions
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)

AltStyle によって変換されたページ (->オリジナル) /