exec_basic1.phpt 643 B

12345678910111213141516171819202122232425
  1. --TEST--
  2. exec, system, passthru — Basic command execution functions
  3. --SKIPIF--
  4. <?php
  5. // If this does not work for Windows, please uncomment or fix test
  6. // if(substr(PHP_OS, 0, 3) == "WIN") die("skip not for Windows");
  7. ?>
  8. --FILE--
  9. <?php
  10. $cmd = "echo abc\n\0command";
  11. var_dump(exec($cmd, $output));
  12. var_dump($output);
  13. var_dump(system($cmd));
  14. var_dump(passthru($cmd));
  15. ?>
  16. --EXPECTF--
  17. Warning: exec(): NULL byte detected. Possible attack in %s on line %d
  18. bool(false)
  19. NULL
  20. Warning: system(): NULL byte detected. Possible attack in %s on line %d
  21. bool(false)
  22. Warning: passthru(): NULL byte detected. Possible attack in %s on line %d
  23. bool(false)