Advertisement
H4T3D

PasteBin User Directory Database Searching By H4T3D

Oct 12th, 2015
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.32 KB | None | 0 0
  1. <?php
  2. ##########################################################
  3. #PasteBin User Directory Database Searching By H4T3D
  4. #Some User Searched >> http://pastebin.com/LRRQ4vnK
  5. ###########################################################
  6.  
  7.     set_time_limit(0);
  8.         error_reporting(0);
  9.         echo "<title>Check Available Users For [Pastebin.com] By H4T3D</title>
  10. <link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
  11. <style type=\"text/css\">
  12.    body,b,input,a {
  13.        background-color: #f0f0f2;
  14.        margin: 0;
  15.        padding: 0;
  16.         font-family: 'Orbitron', sans-serif;
  17.      
  18.    }
  19. textarea,input {
  20.       resize:none;
  21.       color: #4099FF ;
  22.       border: 4px solid #3B5998;
  23.  
  24.    
  25. }
  26. </style>
  27.  <form method='POST'>
  28.  <center>
  29.       <font face='Tahoma' size='5'><b>Check Available Users [PASTEBIN.com] By </b></font><br>
  30.  <br></br><textarea type='text' name='users' placeholder='userlist' rows='18' cols='20'>H4T3D\n";
  31. $homepage = file_get_contents('http://pastebin.com/raw.php?i=u5TMvRbE');echo $homepage;echo "</textarea><br>
  32.   <br></br><input type='submit' name='start' value='Check Available Users'><br></br><a href='pastebindirectory.txt'> >> Pastebin User Directory Found</a></br>
  33.    
  34.  </center></form>";
  35.        
  36.         if(isset($_POST['start']))
  37.         {
  38.             $users = explode("\r\n", $_POST['users']);
  39.                 foreach($users as $users)
  40.                 {
  41.                         $site = file_get_contents("http://pastebin.com/u/".$users);
  42.            
  43.                         if(eregi('PASTEBIN HITS', $site))
  44.                         {
  45.                         print "<font face='Tahoma' size='2' color='green'>Avaliable -> $users <font face='Tahoma' size='2' ><a href='http://pastebin.com/u/".$users."'>http://pastebin.com/u/$users</a></font></font><br>";
  46.             $myfile = fopen("pastebindirectory.txt", "a") or die("Unable to open file!");
  47.             fwrite($myfile,"http://pastebin.com/u/".$users);
  48.             fwrite($myfile,"\n");
  49.             fclose($myfile);
  50.                         flush();@ob_flush();
  51.             } else {
  52.                                 print "<font face='Tahoma' size='2'  color='red' >Not Avaliable -> <font face='Tahoma' size='2'><b>".$users."</b></font></font><br>";
  53.                         flush();@ob_flush();
  54.                 }
  55.                                
  56.         }
  57.         }
  58. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement