Advertisement
6g7r

اداه صنع ادوات

Apr 17th, 2021 (edited)
1,236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. print("""
  2.  
  3.  
  4. __ ____ _____ ____
  5. U /"/_ uU /"___|u|___ "|U | _"\ u
  6. \| '_ \/\| | _ / / / \| |_) |/
  7. | (_) | | |_| | u// /\ | _ <
  8. \___/ \____| /_/ U |_| \_\
  9. _// \\_ _)(|_ <<>>_ // \\_
  10. (__) (__)(__)__)(__)__) (__) (__)
  11.  
  12.  
  13.  
  14. """)
  15. print("""
  16.  
  17. 1 = gmail Checker
  18. 2 = List user Maker
  19. 3 = Bot Report spam
  20.  
  21. """)
  22. a = input("1,2,3 : ")
  23. if ("1") in a:
  24. print("""""
  25.  
  26. import requests
  27.  
  28. print('''
  29.  
  30. your logo
  31.  
  32.  
  33. ''')
  34.  
  35.  
  36.  
  37. f = input("file email : ")
  38. file = open(f).read().splitlines()
  39. for file in file:
  40. url = f'https://mail.google.com/mail/gxlu?email={file}'
  41. req = requests.get(url)
  42.  
  43. try:
  44. if req.headers['Set-Cookie'] != '':
  45. print('Not available',file)
  46.  
  47. except KeyError:
  48. print('Available',file)
  49.  
  50. """)
  51. if ("2") in a:
  52. print("""
  53.  
  54. import secrets
  55. import time
  56. from time import sleep
  57. print('''
  58.  
  59.  
  60.  
  61. your logo
  62.  
  63.  
  64.  
  65.  
  66. ''')
  67. user = int(input('0/?'))
  68. while True:
  69. sleep(0.1)
  70. p = secrets.token_urlsafe(user)
  71. open('user.txt','w').write(f'{p}\n')
  72. print(p)
  73.  
  74.  
  75. """)
  76.  
  77. if ("3") in a:
  78. print("""
  79.  
  80.  
  81. import requests
  82. import json
  83. from time import sleep
  84. hdid = {
  85. "Host": "www.instagram.com",
  86. "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8",
  87. "Cookie": "csrftoken=missing; sessionid=missing; mid=missing",
  88. "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1",
  89. "Accept-Language": "en-us",
  90. "Accept-Encoding": "gzip, deflate, br",
  91. "Connection": "keep-alive"
  92. }
  93. print('''
  94.  
  95.  
  96.  
  97. your logo
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. ''')
  105. r = requests.session()
  106. user = input('user >> :')
  107. password = input('pass >> : ')
  108. target = input('target >> : ')
  109. def login():
  110. global hdid
  111. url_login = 'https://www.instagram.com/accounts/login/ajax/'
  112. headers_login = {
  113. 'accept': '/',
  114. 'accept-encoding': 'gzip, deflate, br',
  115. 'accept-language': 'ar,en-US;q=0.9,en;q=0.8',
  116. 'content-length': '291',
  117. 'content-type': 'application/x-www-form-urlencoded',
  118. 'cookie': 'ig_did=3E70DB93-4A27-43EB-8463-E0BFC9B02AE1; mid=YCAadAALAAH35g_7e7h0SwBbFzBt; ig_nrcb=1; csrftoken=COmXgzKurrq8awSnRS1xf3u9rL6QsGZI',
  119. 'origin': 'https://www.instagram.com/',
  120. 'referer': 'https://www.instagram.com/',
  121. 'sec-fetch-dest': 'empty',
  122. 'sec-fetch-mode': 'cors',
  123. 'sec-fetch-site': 'same-origin',
  124. 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',
  125. 'x-csrftoken': 'COmXgzKurrq8awSnRS1xf3u9rL6QsGZI',
  126. 'x-ig-app-id': '936619743392459',
  127. 'x-ig-www-claim': '0',
  128. 'x-instagram-ajax': '1cb44f68ffec',
  129. 'x-requested-with': 'XMLHttpRequest'
  130. }
  131. data_login = {
  132. 'username': user,
  133. 'enc_password': f'#PWD_INSTAGRAM_BROWSER:0:1613414957:{password}',
  134. 'queryParams': '{}',
  135. 'optIntoOneTap': 'false'
  136. }
  137. req_login = requests.post(url_login, data=data_login, headers=headers_login)
  138. if ("userId") in req_login.text:
  139. r.headers.update({'X-CSRFToken': req_login.cookies['csrftoken']})
  140. print('login True')
  141. reqid = requests.get(f'https://instagram.com/{target}/?__a=1', headers=hdid)
  142. id = json.loads(reqid.text)["graphql"]["user"]["id"]
  143. done = 1
  144. donee = 1
  145. while True:
  146.  
  147.  
  148. url_report = 'https://www.instagram.com/users/{}/report/'.format(id)
  149. datass = {'source_name': '', 'reason_id': 1, 'frx_context': ''} # spam
  150. report = r.post(url_report, data=datass)
  151. print('Done $Pam {}'.format(donee))
  152. donee += 1
  153. else:
  154. print('login false')
  155. exit()
  156.  
  157.  
  158. login()
  159.  
  160.  
  161.  
  162.  
  163. """)
  164.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement