Advertisement
H4T3D

FaceBook UserName & Email Extractor

Sep 16th, 2015
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.45 KB | None | 0 0
  1. <?php
  2. ob_start();
  3. @set_time_limit(0);
  4.  error_reporting(0);
  5. echo "
  6. <head>
  7. <link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
  8. <form method='POST'>
  9. </head>
  10. <style>
  11. textarea {
  12.     margin-left: 0px; margin-right: 0px; width: 823px;
  13.        color: #1975FF ;
  14.        border:4px solid red ;
  15.        font-family: 'Orbitron', sans-serif;
  16.        font-size:15px;
  17. }
  18. html,body{
  19.       font-family: 'Orbitron', sans-serif;
  20.       background:#000000;
  21. }
  22.  
  23. input {
  24.       color: 3300FF;
  25.       border:4px solid #33CCFF;
  26.       font-family: 'Orbitron', sans-serif;
  27. }
  28. h1{
  29.        color: #FFFFFF;
  30.       font-family: 'Orbitron', sans-serif;
  31.        }
  32. h3,fieldset {
  33.       color: #FFFFFF;
  34.       width:50%;
  35.       border:4px solid red;
  36.       font-family: 'Orbitron', sans-serif;
  37.  
  38. }
  39. </style>";
  40.  
  41. echo "
  42. <center><h1>FaceB00k UserName & Email Extractor - H4T3D</h1></center>
  43. <center><h3>EnTer Facebook Profile Url </h3></center>
  44. <p dir='ltr' align='center'>
  45. <textarea cols='22' class='area'  rows='14' name='username'>https://www.facebook.com/profile.php?id=100005207325887\nhttps://www.facebook.com/profile.php?id=100005408441434\nhttps://www.facebook.com/profile.php?id=100005686629223\nhttps://www.facebook.com/profile.php?id=100007705632626\r\nhttps://www.facebook.com/profile.php?id=100006794283657\r\nhttps://www.facebook.com/profile.php?id=100002416635195\r\nhttps://www.facebook.com/gaf.richards.3\r\nhttps://www.facebook.com/sutthiphong.koolsing</textarea>
  46. <br>
  47. <br>
  48. <input type='submit' name='scan' value='Start'><br>
  49. <center><h3> >> <a href=\"validfbemails.txt\">Valid Emails</a></h3></center>
  50. </p>";
  51.    
  52. if(isset($_POST['scan'])){
  53. $username = explode("\n", $_POST['username']);
  54.        
  55. echo"<center>
  56. <textarea rows=\"14\">";    
  57. foreach($username as $users) {
  58.         $users = @trim($users);
  59.        
  60.     $users = trim($users,"https://www.facebook.com/profile.php?id=");
  61.     $users = trim($users,"http://www.facebook.com/profile.php?id=");
  62.     $users = trim($users,"http://www.m.facebook.com/profile.php?id=");
  63.     $users = trim($users,"https://www.m.facebook.com/profile.php?id=");
  64.     $users = trim($users,"https://www.facebook.com/");
  65.     $users = trim($users,"https://www.m.facebook.com/");
  66.     $users = trim($users,"http://www.m.facebook.com/");
  67.  
  68.  
  69.                 echo $users."@facebook.com\n";
  70.                              }
  71.  
  72. }
  73. echo"
  74. </textarea>
  75. </center>";
  76.  
  77. echo"<center><h3> Coded By H4T3D</h3></center>";
  78. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement