0% found this document useful (0 votes)
149 views2 pages

Spam Source

This Python script automates spam reporting on Instagram. It takes a target username, login credentials, and repeatedly sends report requests to Instagram to report the target for spam. The script prints status messages as it logs in and sends reports. It uses the requests library and threads to animate a loading message while logging in.

Uploaded by

takdir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
149 views2 pages

Spam Source

This Python script automates spam reporting on Instagram. It takes a target username, login credentials, and repeatedly sends report requests to Instagram to report the target for spam. The script prints status messages as it logs in and sends reports. It uses the requests library and threads to animate a loading message while logging in.

Uploaded by

takdir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

import requests

import time
import json
import itertools
import threading
import sys
done = False
def animate():
for c in itertools.cycle(['' '' '' '']):
if done:
break
sys.stdout.write(' ' + c)
sys.stdout.flush()
time.sleep(0.1)
sys.stdout.write('Add username & password ')

t = threading.Thread(target=animate)

print("""

_ _
| | | |
| | ___ _ __ ___| |_ _
| |/ _ \| '_ \ / _ \ | | | |
| | (_) | | | | __/ | |_| |
|_|\___/|_| |_|\___|_|\__, |
__/ |
|___/

""")
time.sleep(1)
print("Mr.lonely @2222L0")
print("——————————————————————————")
t.start()

time.sleep(2)
done = True
username = input(" ~ Enter username >>:")
pasword = input(" ~ Enter Pasword >>:")
Target = input("Enter Target:")
r = requests.session()
url = "https://www.instagram.com/accounts/login/ajax/"
headers = {
"accept":"*/*",
"accept-encoding":"gzip, deflate,br",
"accept-language": "ar,en-US;q=0.9,en;q=0.8",
"content-length": "279",
"content-type": "application/x-www-form-urlencoded",
"origin": "https://www.instagram.com",
"referer": "https://www.instagram.com/",
"sec-fetch-dest":"empty",
"sec-fetch-site":"same-origin",
"user-agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/85.0.4183.83 Safari/537.36",
"x-csrftoken": "lih2ypMfhzdqwMbm5jIILqxZDj4zLeCW",
"x-ig-app-id": "936619743392459",
"x-ig-www-claim": "hmac.AR1_p9SjMFQF73bcZgzygDgxb9yBZUn83e69xoDD2qpSdmtW",
"x-instagram-ajax":"901e37113a69",
"x-requested-with":"XMLHttpRequest"
}
data =
{"username":username,"enc_password":"#PWD_INSTAGRAM_BROWSER:0:1589682409:"+pasword,
"queryParams":"{}","optIntoOneTap":"false"}
login = r.post(url,headers=headers,data=data,allow_redirects=True)
if login.text.find("userId") >= 0 :
print('[~] Done login !:',username)
s = requests.get("https://instagram.com/"+Target+"/?__a=1")

data2 = {"source_name":"","reason_id":1,"frx_context":""}
r.headers.update({'X-CSRFToken': login.cookies['csrftoken']})
for x in range(100000000):
spam = "https://www.instagram.com/users/"+Target+"/report/"
spamr = r.post(spam,data=data2)
if spamr.text.find("Your reports help keep our community free of spam."):
print("[~] #dOnE ! spam:",Target,'')
time.sleep(1)
else:
print("[~] Error Report ")
time.sleep(1)
else:
if login.text.find("checkpoint_required"):
print("[~] Error secure")
else:
print('[~] ErroR Worng')

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy