My friend found a problem in my script, it gives acces to root files.
This url gives passwd file:
http://site.com/attachment.php?file=../../../../../../etc/passwd
How to escape this security hole?
|
There are several different solutions. If there can be only a filename, a basename() solution would work. However, if it can be path, a more complex solution is needed
there is also a useful PHP configuration option |
||||
|
|
|
Dont download the files using URL String.... Define unique IDs to denote a file, rather than paths. You might have seen downloads like this |
|||
|
|
|
You can use If the result of There's also the open_basedir security directive (and runtime option as of 5.3). |
|||
|
|
|
I suppose you have a directory where all attachments are stored. Just test if file is located in your directory.
Starx posted a solution which seems fine. It can be done without a database, though. If somebody uploads a file you can store the file as |
|||||
|
/etc/shadow./etc/passwdis readable by any user in modern Unixes, of course) – zpea Apr 13 '12 at 21:42