ID: 17162
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Bogus
Bug Type: Scripting Engine problem
Operating System: Linux 2.4.18
PHP Version: 4.2.0
New Comment:
Also not a bug, you can unlink files in directories you own. In this
case "directories you own" means a directory owned by the user id that
owns the current script.
Previous Comments:
------------------------------------------------------------------------
[2002-05-12 10:41:26] [EMAIL PROTECTED]
This has nothing to do with file permissions, update summary
Derick
------------------------------------------------------------------------
[2002-05-12 10:40:27] [EMAIL PROTECTED]
I forgot to add, the webserver runs as user/group "www".
------------------------------------------------------------------------
[2002-05-12 10:38:59] [EMAIL PROTECTED]
unlink() function can be used to delete files that user does not have
permissions to delete.
Ex.
touch test;
ls -l test;
-rw-r--r-- 1 forum forum 0 May 12 10:33 test
ls -l a.php
-rw-rw-rw- 1 www www 35 May 12 10:33 a.php
a.php:
<?php unlink('test'); ?>
after a.php is run via the web the file test is GONE!
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=17162&edit=1