blob: cb6fdaa9ef110107e3594dab0c698ec11dd4899d (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
// fix for CAN-2002-0985: mail() must reject 5th argument in safe mode
if (mail("root@localhost", "httpd-test PHP mail",
"test mail from httpd-test", "", "-C/etc/passwd")) {
print("FAIL");
} else {
print("OK");
}
?>
|