Advertisement
puggan

johan.bash.php

Nov 11th, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.81 KB | None | 0 0
  1. <?php
  2.  
  3.     echo "passthru()" . PHP_EOL;
  4.     passthru("ls");
  5.  
  6.     echo PHP_EOL;
  7.     echo "exec()" . PHP_EOL;
  8.     $output = '';
  9.     $last_line = exec("ls", $output);
  10.     echo implode(PHP_EOL, $output) . PHP_EOL;
  11.  
  12.     echo PHP_EOL;
  13.     echo "shell_exec()" . PHP_EOL;
  14.     echo shell_exec("ls");
  15.  
  16.     echo PHP_EOL;
  17.     echo "system()" . PHP_EOL;
  18.     $last_line = system("ls");
  19.  
  20.     echo PHP_EOL;
  21.     echo "popen()" . PHP_EOL;
  22.     $p = popen("ls", "r");
  23.     while(!feof($p))
  24.     {
  25.         echo fread($p, 1024);
  26.     }
  27.     pclose($p);
  28.  
  29.     echo PHP_EOL;
  30.     echo "proc_open()" . PHP_EOL;
  31.     $pipe_descriptions = array(array("pipe", "r"), array("pipe", "w"), array("pipe", "r"));
  32.     $p = proc_open("ls", $pipe_descriptions, $pipes);
  33.     fclose($pipes[0]);
  34.     while(!feof($pipes[1]))
  35.     {
  36.         echo fread($pipes[1], 1024);
  37.     }
  38.     fclose($pipes[1]);
  39.     fclose($pipes[2]);
  40.     proc_close($p);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement