Advertisement
HawkingFor911

Secure Skype Resolver by Obnoxious

Feb 27th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. // secure skype resolve by obnoxious and brad apple
  2. // okay guyz so they let me have computer access in prison so i made a cool lil skype resolver for my fans ^.^
  3.  
  4. <?php
  5.  
  6. // hai ^.^ i made a function to sanitize end of command char for security first
  7.  
  8. function antiHack($string) {
  9.     $string = str_replace(";", "", $string);
  10.     return $string
  11. }
  12.  
  13. $username = antiHack($_GET['username']);
  14. $command = "./skype.sh ".$username;
  15.  
  16. // run command securely
  17. exec($command, $output, $return);
  18.  
  19. // show stdout
  20. var_dump($output);
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement