• We just launched and are currently in beta. Join us as we build and grow the community.

Brute INSTAGRAM MASS REPORTING TOOL

darkshaw

Cloud Native Developer
Divine
D Rep
0
0
0
Rep
0
D Vouches
0
0
0
Vouches
0
Posts
131
Likes
124
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 400 XP
[]
PROXIES = []
def MultiThread(username, userid, loginuser, loginpass, proxy, reasonid):
client = None
if (proxy != None):
PrintStatus("[" + loginuser + "]", "Logging into the Account!")
client = InstaClient(
loginuser,
loginpass,
proxy["ip"],
proxy["port"]
)
else:
PrintStatus("[" + loginuser + "]", "Logging into the Account!")
client = InstaClient(
loginuser,
loginpass,
None,
None
)
client.Connect()
client.Login()
client.Spam(userid, username, reasonid)
print("")
def NoMultiThread():
for user in USERS:
client = None
if (useproxy):
proxy = choice(PROXIES)
PrintStatus("[" + user["user"] + "]", "Logging into the Account!")
client = InstaClient(
user["user"],
user["password"],
proxy["ip"],
proxy["port"]
)
else:
proxy = choice(PROXIES)
PrintStatus("[" + user["user"] + "]", "Logging into the Account!")
client = InstaClient(
user["user"],
user["password"],
None,
None
)
client.Connect()
client.Login()
client.Spam(userid, username, reasonid)
print("")
if __name__ == "__main__":
PrintBanner()
PrintStatus("Loading users!")
USERS = LoadUsers("./users.txt")
PrintStatus("Loading Proxes!")
PROXIES = LoadProxies("./proxy.txt")
print("")
username = GetInput("Account username you want to complain about:")
userid = GetInput("Account number you want to complain about:")
useproxy = GetInput("Do you want to use proxy? [Yes No]:")
if (useproxy == "Yes"):
useproxy = True
elif (useproxy == "No"):
useproxy = False
else:
PrintFatalError("Please just enter 'Yes' or 'No'!")
exit(0)
usemultithread = GetInput("Do you want to use multithreading? [Yes / No] (Do not use this feature if you have too many users or if your computer is slow!):")
if (usemultithread == "Yes"):
usemultithread = True
elif (usemultithread == "No"):
usemultithread = False
else:
PrintFatalError("Please just enter 'Yes' or 'No'!")
exit(0)
PrintChoices()
reasonid = GetInput("Please select one of the reasons for the above complaint (ex: 1 for spam):")
print("")
PrintStatus("Starting...")
print("")
if (usemultithread == False):
NoMultiThread()
else:
for user in USERS:
p = Process(target=MultiThread,
args=(username,
userid,
user["user"],
user["password"],
None if useproxy == False else choice(PROXIES),
reasonid
)
)
p.start()
 

436,046

314,222

314,231

Top