Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <html>
  2. <form method="post" action="">
  3. <input type="text" name="vid">
  4. <input type="submit" value="Download">
  5. </form>
  6. </html>
  7. <?php
  8.  
  9. if(isset($_GET['vid'])){
  10.     $vid = $_GET['vid'];
  11.     $pattern = '/18\|([^,]+)/i';
  12.     $get = @file_get_contents($vid);
  13.     preg_match($pattern, $get, $down);
  14.     $down = urldecode($down[1]);
  15.     $down = str_replace("\\", "", $down);
  16.     print $down;
  17.    
  18. }
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement