-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.py
134 lines (113 loc) · 3.01 KB
/
dev.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import string
import time
import os
import urlConfig as cfg
import random
import argparse
path = cfg.path["path"]
# call parser
parser = argparse.ArgumentParser()
# add url argument
parser.add_argument(
"--url",
"-u",
default="test",
help="generate the urls",
type=str,
required=True,
)
# add password argument
parser.add_argument(
"--password",
"-p",
default="hallo",
help="generate password",
type=str,
nargs="?",
const="hallo",
required=True,
)
# add username argument
parser.add_argument(
"--username",
"-un",
default="hallo",
help="generate username",
type=str,
nargs="?",
const="hallo",
required=True,
)
# main function with args passed in
def main(args):
# if statement tree to call functions based on args passed in
if args.url:
if args.url == " ":
print("please provide a word")
else:
generate_urls(args.url)
if args.password:
if args.password == " ":
print("please provide a word")
else:
generate_password()
if args.username:
if args.username == " ":
print("please provide a word")
else:
generate_username()
new_line()
# funtion to generate permutations
def all_perms(elements):
if len(elements) <= 1:
yield elements
else:
for perm in all_perms(elements[1:]):
for i in range(len(elements)):
yield perm[:i] + elements[0:1] + perm[i:]
# function to generate urls
def generate_urls(args):
urlPart1 = cfg.url["urlPart1"]
urlPart2 = cfg.url["urlPart2"]
count = 0
date = time.strftime("%Y-%m-%d")
Time = time.strftime("%H:%M:%S")
dateAndTIme = date + " " + Time
word = args
f = open(f"{path}/url.links", "a")
f.write(dateAndTIme)
f.write("\n")
list = all_perms(word)
os.system("clear")
for word in list:
print(f"{urlPart1}{word}{urlPart2}")
count = count + 1
f.write(f"{urlPart1}{word}{urlPart2}\n")
if count == 10:
break
# open url.links and append to file
# function to generate a random password
def generate_password():
password = ""
f = open(f"{path}/url.links", "a")
for i in range(20):
password = password + random.choice(string.ascii_letters + string.digits)
print(f"your password is: {password}")
f.write(f"your password is: {password}\n")
return password
# function to generate a random username
def generate_username():
username = ""
f = open(f"{path}/url.links", "a")
for i in range(8):
username = username + random.choice(string.ascii_letters + string.digits)
print(f"your username is: {username}")
f.write(f"your username is: {username}\n")
return username
# append new line function
def new_line():
f = open(f"{path}/url.links", "a")
f.write("\n\n")
f.close()
# call main function with parsed args passed in
main(parser.parse_args())