Advertisement
H4T3D

Find Hidden Facebook Friends List - H4T3D

Nov 1st, 2015
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.82 KB | None | 0 0
  1. <?php
  2. ########################################################
  3. #H4T3D Facebook Profile Information Extractor
  4. #Find Hidden Facebook Friends List , pages etc
  5. #Coded By H4T3D
  6. ##########################################################
  7. error_reporting(0);
  8. header("X-XSS-Protection: 0");
  9. ?>
  10. <!DOCTYPE html>
  11. <html>
  12. <head>
  13. <link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
  14.   <title>Friends List Extractor Facebook</title>
  15.   <style type="text/css">
  16.     html,body{
  17.      font-family: 'Orbitron', sans-serif;
  18.      background:#000000;
  19.     }
  20.     h1,h3{
  21.          font-family: 'Orbitron', sans-serif;
  22.         color:red;
  23.         }
  24.         textarea{
  25.                     font-size: 15px;
  26.             font-family: Tahoma;
  27.             color: #0078AA;
  28.             border: dashed 1pt #0000BB;
  29.                 }
  30.         input,a,font{
  31.            color: #FF0000;
  32.            border: dotted 1pt #0078AA;
  33.              }
  34.  
  35. </style>
  36. </head>
  37. <body>
  38.   <center>
  39. <td><img src="http://i.imgur.com/gi41m1D.png"/></td>
  40. <h3>[ Open Your Facebook Friends Profile and Paste the Source Code ]</h3>
  41. </br>
  42.  
  43.       <form action="" method="POST">
  44.      <textarea name="sourcecode" cols="111" rows="15" Placeholder="Copy Friends Profile Source Code here"></textarea> <br>
  45.      <input type="submit" name="mr" value="Extrat Every Possible Profile Info"/>
  46.       </form>
  47. <br>
  48.   </center>
  49. </body>
  50. </html>
  51. <?php
  52. set_time_limit(0);
  53.  
  54. if(isset($_POST['mr'])){
  55. $text=$_POST['sourcecode'];
  56. $text=htmlspecialchars($text);
  57. preg_match_all('#100+[0-9]+#',$text,$matches);
  58.  
  59. $links=array_unique($matches[0]);
  60.  
  61. foreach ($links as $ul){
  62. $result=strlen($ul);
  63. if($result==15){
  64. echo "<a href='https://www.facebook.com/profile.php?id=$ul'>https://www.facebook.com/profile.php?id=$ul</a></br>";
  65.     }
  66.  
  67.             }//for each
  68.  
  69.  
  70.  
  71. } // button isset
  72.  
  73.  
  74. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement