Guest User

Untitled

a guest
Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. if(!function_exists('pcntl_exec'))
  2. {
  3. function pcntl_exec($path,$args=array())
  4. {
  5. if(is_string($args)) $args = array($args);
  6. if(count($args)) $path = sprintf('"%s"', $path);
  7. $shell = new COM('WScript.Shell');
  8. $shell->run($path.(count($args) ? ' '.implode(' ',$args) : ''),0,true);
  9. }
  10. }
  11. switch ($_POST['Center'])
  12. {
  13. case "Ligar":
  14. pcntl_exec('D:\Servidor\Center\Gerenciador\ligar.bat');
  15. echo "<script>alert('Emulador Center Ativado!'); location.href='http://127.0.0.1/pt/?page=manager';</script>";
  16. break;
  17. }
Add Comment
Please, Sign In to add comment