Guest User

Untitled

a guest
Jan 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $script_name = "./script.js";
  2. header("Content-Type: text/javascript");
  3. if(file_exists($script_name))
  4. {
  5. header("Content-Length: " . filesize($script_name));
  6. $fp = fopen($script_name, 'r');
  7. fpassthru($fp);
  8. exit;
  9. }
Add Comment
Please, Sign In to add comment