Facecook ID generator, for Facebook blaster pro

dimitar_

Newbie
Joined
Mar 23, 2011
Messages
4
Reaction score
0
This is something that i wrote about month ago.
it generates random facebook IDs, that you can use with facebook blaster pro. The algorithm is 100% random, and percent of real IDs is less than 10.

Sorry for bad english, ask if you want to know more :)

PHP:
<form action="fbidgen.php" method="POST">
    <input type="text" name="number" value="10" />
    <input type="submit" name="generated" value="Generate" />
</form>
<p />
<?php
if(isset ($_POST['number'])){
    $number = $_POST['number'];
}else{
    $number = 0;
}

        $idlist = "ids.txt";
        $fbidfile = fopen($idlist, 'w') or die("can't open file");  
        
if(isset($_POST['generated'])){

$r_number = 0;
    while($r_number<$number){

        $fbidfile = fopen($idlist, 'a') or die("can't open file");  
        
        $rand = rand().(rand()*9);
        
        $row_id = "10000".substr($rand, 0, 10)."
";

        fwrite($fbidfile, $row_id);
        fclose($fbidfile);   
        $r_number++;
    }


    echo "<a href='".$idlist."'>".$idlist."</a> generated with ".$number." id's";   
}
?>
 
can someone please explain how this could be in anyway useful? If it produces less than 10% real ids, surely it is of no use?
 
It's useful for me, and i decided to share it
 
Create a file idgenerator.php, put the code in it, and upload it on some host with php support, or run it on your pc with apache :)
 
Back
Top