开发者

Least Possible Permission to allow File Upload and Deletion to a file or directory?

I am trying to set the least possible permission on a file, and still be upload files and delete them. I normally use "0755", but I think it is still much f开发者_如何学编程or just doing uploading and deleting.


You want to list, read & write on a directory, so 0700. Provided you have set up the correct user(s) for the website, script owner, ftp user, etc. If you cannot harmonize these user(s) into one, creating a group with all the stakeholders, making that the owning group & setting the folder to 0770 should work.

For files that are non executable, the same 0600 vs, 0660 applies, unless you need only one writing user (files 0640, directory 0750, owned by the writing user & the stakeholders group).


Try 0644. That's "owner read/write, everyone else read". 0755 is the same but adds execute the mix, which you most likely don't want on uploaded files.

And if only the webserver software ever needs to deal the file, you can lock it down further with 0600 (only owner read/write)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜