-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.py
208 lines (171 loc) · 5.78 KB
/
display.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
from os import system
from time import sleep
from .const import debug
from colorama import Fore
from builtins import input
from platform import system as platform
class Display(object):
__is_color = None
total_lines = None
account_exists = None
def __init__(self, username=None, passlist=None, is_color=None):
self.delay = 1.3
self.username = username
self.passlist = passlist
self.colors_disabled = True
self.cls = "cls" if platform() == "Windows" else "clear"
if Display.__is_color == None:
Display.__is_color = is_color
def clear(self):
if not debug or self.colors_disabled:
system(self.cls)
if self.colors_disabled and self.__is_color:
self.colors_disabled = False
else:
print("\n\n")
def stats(self, password, attempts, browsers, load=True):
self.clear()
complete = round((attempts / Display.total_lines) * 100, 2)
account_exists = (
self.account_exists if self.account_exists != None else ""
)
if self.__is_color:
print(
"{0}[{1}-{0}] {1}Wordlist: {2}{3}{4}".format(
Fore.YELLOW,
Fore.WHITE,
Fore.CYAN,
self.passlist,
Fore.RESET,
)
)
print(
"{0}[{1}-{0}] {1}Username: {2}{3}{4}".format(
Fore.YELLOW,
Fore.WHITE,
Fore.CYAN,
self.username.title(),
Fore.RESET,
)
)
print(
"{0}[{1}-{0}] {1}Password: {2}{3}{4}".format(
Fore.YELLOW, Fore.WHITE, Fore.CYAN, password, Fore.RESET
)
)
print(
"{0}[{1}-{0}] {1}Complete: {2}{3}%{4}".format(
Fore.YELLOW, Fore.WHITE, Fore.CYAN, complete, Fore.RESET
)
)
print(
"{0}[{1}-{0}] {1}Attempts: {2}{3}{4}".format(
Fore.YELLOW, Fore.WHITE, Fore.CYAN, attempts, Fore.RESET
)
)
print(
"{0}[{1}-{0}] {1}Browsers: {2}{3}{4}".format(
Fore.YELLOW, Fore.WHITE, Fore.CYAN, browsers, Fore.RESET
)
)
print(
"{0}[{1}-{0}] {1}Exists: {2}{3}{4}".format(
Fore.YELLOW,
Fore.WHITE,
Fore.CYAN,
account_exists,
Fore.RESET,
)
)
else:
print(
f"[-] Wordlist: {self.passlist}\n[-] Username: {self.username}\n[-] Password: {password}"
)
print(
f"Complete: {complete}\n[-] Attempts: {attempts}\n[-] Browsers: {browsers}\n[-] Exists: {account_exists}"
)
if load:
sleep(self.delay)
def stats_found(self, password, attempts, browsers):
self.stats(password, attempts, browsers, load=False)
if self.__is_color:
print(
"\n{0}[{1}!{0}] {2}Password Found{3}".format(
Fore.YELLOW, Fore.RED, Fore.WHITE, Fore.RESET
)
)
print(
"{0}[{1}+{0}] {2}Username: {1}{3}{4}".format(
Fore.YELLOW,
Fore.GREEN,
Fore.WHITE,
self.username.title(),
Fore.RESET,
)
)
print(
"{0}[{1}+{0}] {2}Password: {1}{3}{4}".format(
Fore.YELLOW, Fore.GREEN, Fore.WHITE, password, Fore.RESET
)
)
else:
print(
"\n[!] Password Found\n[+] Username: {}\n[+] Password: {}".format(
self.username.title(), password
)
)
sleep(self.delay)
def stats_not_found(self, password, attempts, browsers):
self.stats(password, attempts, browsers, load=False)
if self.__is_color:
print(
"\n{0}[{1}!{0}] {2}Password Not Found{3}".format(
Fore.YELLOW, Fore.RED, Fore.WHITE, Fore.RESET
)
)
else:
print("\n[!] Password Not Found")
sleep(self.delay)
def shutdown(self, password, attempts, browsers):
self.stats(password, attempts, browsers, load=False)
if self.__is_color:
print(
"\n{0}[{1}!{0}] {2}Shutting Down ...{3}".format(
Fore.YELLOW, Fore.RED, Fore.WHITE, Fore.RESET
)
)
else:
print("\n[!] Shutting Down ...")
sleep(self.delay)
def info(self, msg):
self.clear()
if self.__is_color:
print(
"{0}[{1}i{0}] {2}{3}{4}".format(
Fore.YELLOW, Fore.CYAN, Fore.WHITE, msg, Fore.RESET
)
)
else:
print("[i] {}".format(msg))
sleep(2.5)
def warning(self, msg):
self.clear()
if self.__is_color:
print(
"{0}[{1}!{0}] {1}{2}{3}".format(
Fore.YELLOW, Fore.RED, msg, Fore.RESET
)
)
else:
print("[!] {}".format(msg))
sleep(self.delay)
def prompt(self, data):
self.clear()
if self.__is_color:
return input(
"{0}[{1}?{0}] {2}{3}{4}".format(
Fore.YELLOW, Fore.CYAN, Fore.WHITE, data, Fore.RESET
)
)
else:
return input("[?] {}".format(data))