null_bytes.phpt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --TEST--
  2. Zero byte test
  3. --FILE--
  4. <?php
  5. preg_match("\0//i", "");
  6. preg_match("/\0/i", "");
  7. preg_match("//\0i", "");
  8. preg_match("//i\0", "");
  9. preg_match("/\\\0/i", "");
  10. preg_match("\0[]i", "");
  11. preg_match("[\0]i", "");
  12. preg_match("[]\0i", "");
  13. preg_match("[]i\0", "");
  14. preg_match("[\\\0]i", "");
  15. preg_replace("/foo/e\0/i", "echo('Eek');", "");
  16. ?>
  17. --EXPECTF--
  18. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 3
  19. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 4
  20. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 5
  21. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 6
  22. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 7
  23. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 9
  24. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 10
  25. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 11
  26. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 12
  27. Warning: preg_match(): Null byte in regex in %snull_bytes.php on line 13
  28. Warning: preg_replace(): Null byte in regex in %snull_bytes.php on line 15