Is setting the uploads folder 777 permission secure?

后端 未结 3 1213
情书的邮戳
情书的邮戳 2020-12-19 19:47

I have seen a lot of upload forms hacked, and some had some really good security checks of the file being uploaded (at least I think so), but still somebody managed to uploa

3条回答
  •  醉梦人生
    2020-12-19 20:20

    In general 777 is about as insecure as it gets... that means anybody can read and write to your files.

    HTTP PUT isn't inherently any more secure than HTTP POST if you're allowing the uploaded files to be exceuted on your server.

    Overall, if you are allowing arbitrary files to be executed you need to be doing very good file checking server-side, and using chroot on the server would be wise.

    Permission-wise, I generally set anything web-accessible to 644 owned by the webserver user.

提交回复
热议问题