Advertisement
Xractz

MASS Zone D

Jul 15th, 2019
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #Xractz | TEH Squad Cyber
  2. #kalau mau pake oprek dulu
  3.  
  4. import requests
  5.  
  6. url = "https://zone-d.org/notify/action"
  7. a = open("m.txt","r").readlines()
  8. no = 0
  9. for x in a:
  10.     x = x.strip()
  11.     data = {'attacker':'Xractz','poc':'Not+available','url':x}
  12.     r = requests.post(url,data=data).text
  13.     if 'Success' in r:
  14.         no += 1
  15.         print(f"[{no}]Sukses ~> {x}")
  16.     elif 'Failed' in r:
  17.         print(f"Failed ~> {x}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement