-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.py
129 lines (92 loc) · 3.96 KB
/
generate.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
import random
import string
import re
import time
# Define the character classes
lowercase_letters = string.ascii_lowercase
digits = string.digits
# Combine the character classes
character_classes = lowercase_letters + digits
# letters numbers
rates = {}
rates["zero_ten"] = 0
rates["one_nine"] = 0
rates["two_eight"] = 0
rates["three_seven"] = 0
rates["four_six"] = 0
rates["five_five"] = 0
rates["six_four"] = 0
rates["seven_three"] = 0
rates["eight_two"] = 0
rates["nine_one"] = 0
rates["ten_zero"] = 0
anomalies = []
endpoints = []
total_iter = 10000000
file_name = "api_gateway_endpoints.txt"
time_start = time.time()
for x in range(0,total_iter):
# Generate a 10-character string
password = ''.join(random.choice(character_classes) for _ in range(10))
print(password)
# this takes too much time
#if password not in endpoints:
# endpoints.append(password)
# Check if the generated string matches the regex
regex_pattern = r"^(?=(?:.*[a-z]){0})(?=(?:.*[0-9]){10})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["zero_ten"] = rates["zero_ten"] + 1
anomalies.append(password)
regex_pattern = r"^(?=(?:.*[a-z]){1})(?=(?:.*[0-9]){9})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["one_nine"] = rates["one_nine"] + 1
anomalies.append(password)
regex_pattern = r"^(?=(?:.*[a-z]){2})(?=(?:.*[0-9]){8})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["two_eight"] = rates["two_eight"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){3})(?=(?:.*[0-9]){7})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["three_seven"] = rates["three_seven"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){4})(?=(?:.*[0-9]){6})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["four_six"] = rates["four_six"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){5})(?=(?:.*[0-9]){5})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["five_five"] = rates["five_five"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){6})(?=(?:.*[0-9]){4})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["six_four"] = rates["six_four"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){7})(?=(?:.*[0-9]){3})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["seven_three"] = rates["seven_three"] + 1
endpoints.append(password)
regex_pattern = r"^(?=(?:.*[a-z]){8})(?=(?:.*[0-9]){2})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["eight_two"] = rates["eight_two"] + 1
endpoints.append(password)
regex_pattern = r"^(?=(?:.*[a-z]){9})(?=(?:.*[0-9]){1})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["nine_one"] = rates["nine_one"] + 1
regex_pattern = r"^(?=(?:.*[a-z]){0})(?=(?:.*[0-9]){10})[a-z0-9]{10}$"
if re.match(regex_pattern, password):
rates["ten_zero"] = rates["ten_zero"] + 1
anomalies.append(password)
print(str(rates["zero_ten"]/1000)+ '% are rates["zero_ten"]')
print(str(rates["one_nine"]/1000)+ '% are rates["one_nine"]')
print(str(rates["two_eight"]/1000)+ '% are rates["two_eight"]')
print(str(rates["three_seven"]/1000)+ '% are rates["three_seven"]')
print(str(rates["four_six"]/1000)+ '% are rates["four_six"]')
print(str(rates["five_five"]/1000)+ '% are rates["five_five"]')
print(str(rates["six_four"]/1000)+ '% are rates["six_four"]')
print(str(rates["seven_three"]/1000)+ '% are rates["seven_three"] : Added to the endpoints saved')
print(str(rates["eight_two"]/1000)+ '% are rates["eight_two"] : Added to the endpoints saved')
print(str(rates["nine_one"]/1000)+ '% are rates["nine_one"]')
print(str(rates["ten_zero"]/1000)+ '% are rates["ten_zero"]')
print(anomalies)
print(str(total_iter) + "total endpoints generated")
print(str(len(endpoints)) + "total endpoints saved")
time_end = time.time()
file1 = open(file_name,"w+")
file1.write("\n".join(endpoints))
file1.close()
print("Total time spent: " + str(time_end-time_start) + " seconds")