Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- ######################################################
- #Facebook Ghost
- #Generates Real Facebook ID
- #Coded By H4T3D
- #Proof Of Concept (POC) : http://pastebin.com/PnfLGa3c
- ######################################################
- error_reporting(0);
- set_time_limit(0);
- ?>
- <head>
- <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
- <link href='https://fonts.googleapis.com/css?family=Eater' rel='stylesheet' type='text/css'>
- <link rel='icon' type='image/ico' href='http://media.stateofq.com/photologue/photos/cache/facebook%20favicon_thumbnail.png'/>
- <title>Facebook Mass Email Checker - H4T3D</title>
- </head>
- <style>
- h1{
- font-family: 'Eater', cursive;
- color:red;
- font-size:-webkit-xxx-large
- }
- input {
- color: ##33CCFF;
- border:1px dotted #33CCFF;
- width: 20%;
- font-family: 'Orbitron'; color:red;
- }
- html, body{
- background:#000000;
- color:#00FF00;
- text-decoration: none;
- font-family: 'Orbitron';
- }
- th,tr,td{
- border: 4px solid #3B5998;
- }
- </style>
- <center>
- <h1>Facebook GHOST <img src="https://daks2k3a4ib2z.cloudfront.net/53cda9eccbc8e0894bcf7766/53d1547065325541683a7600_Facebook_icon.png" height="100px" width="100px"></h1>
- <form action="" method="POST">
- GH0STS:<input type="number" min="1" name="many" value="10"/>
- <input type="submit" name="go"/>
- <h3> SH0W Profile PIC<input type="checkbox" name="Showpic"/></h3>
- <center><h3> >> <a href="id.txt">IDS</a></h3>
- </center>
- </form>
- </center>
- <?php
- error_reporting(0);
- set_time_limit(0);
- if(isset($_POST["go"])){
- $many=$_POST["many"];
- function getRandomString() {
- $validCharacters = "0123456789";
- $validCharNumber = strlen($validCharacters);
- $len = 10;
- $result = "";
- for ($i = 0; $i < $len; $i++) {
- $index = mt_rand(0, $validCharNumber - 1);
- $result .= $validCharacters[$index];
- }
- return $result;
- }
- function file_get_contents_curl($url) {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- // curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
- // curl_setopt($ch, CURLOPT_HEADER, 1);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_URL, $url);
- $data = curl_exec($ch);
- curl_close($ch);
- return $data;
- }
- echo'
- <p><center>';
- echo"<table style=\"width:70%\" border=\"1\" ;>
- <tr>
- <th>ID</th>
- <th>First Name</th>
- <th>Last Name</th>
- <th>Profile Link</th>
- <th>Full Name</th>
- <th>Profile Pic</th>
- </tr>";
- for ($x=0; $x < $many ; $x++){
- $id= "10000" . getRandomString();
- $url="https://graph.facebook.com/$id?uids=$id&access_token=1783757718518079|dobQHY9MTotct0hrLISZAGDgBko";
- //$url="m.facebook.com/profile.php?id=$id";
- $status = file_get_contents_curl($url);
- //echo $status."<br></br>";
- if(!(eregi("error", $status))){
- $output = json_decode($status);
- print"<tr><td>".$output->{'id'}."</td>";
- print"<td>".$output->{'first_name'}."</td>";
- print"<td>".$output->{'last_name'}."</td>";
- print"<td><a href='https://www.facebook.com/profile.php?id=$id'>https://www.facebook.com/profile.php?id=$id</a></td>";
- print"<td>".$output->{'name'}."</td>";
- if(isset($_POST['Showpic'])){ print"<tr><td><img src=\"http://graph.facebook.com/$id/picture?type=small\"></td>";}
- $myfile = fopen("id.txt", "a") or die("Unable to open file!");
- fwrite($myfile, "\n".$id."\n");
- fwrite($myfile, $output->{'name'}."\n");
- fwrite($myfile, $output->{'link'}."\n");
- fwrite($myfile, "https://www.facebook.com/profile.php?id=$id\n");
- fclose($myfile);
- flush();@ob_flush();
- }
- }
- echo"</tr>";
- echo"</table></center>";
- echo "
- </center>
- <br>";
- } //end of go
- echo "
- <br>
- <center><b>Coded BY H4T3D</b>
- </center>
- <br>
- ";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement