阻止 php 访问并包含父目录中的文件

发布于 2024-12-20 00:38:47 字数 1556 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离鸿 2024-12-27 00:38:47

将这两个目录的所有权和组设置为相关用户,并将权限限制为目录的所有者/组(基本上,从其他人的目录中删除 rwx)。

这需要在 Apache 虚拟主机中进行进一步配置,以指定哪个“用户”Apache 应读取相关文档根目录: mod_suexec » suexecusergroup

您可能应该将服务器 umask 设置为 007,以保持对所有新文件/文件夹的此限制。

此外,我会在 web 根 sudo find 中的所有文件夹上设置 SETGID 位。 -type d -exec chmod g+s {} \;

Set the ownership and group of those two directories to the relevant user, and limit permissions to the owner/group of the directory (basically, remove rwx from others on their directories).

This will need further configuration in the Apache virtualhost to specify which 'user' Apache should read the relevant document root as of : mod_suexec » suexecusergroup

You probably should set your server umask to 007 to maintain this restriction on all new files/folders.

Additionally, I'd set the SETGID bit on all folders in your web-root sudo find . -type d -exec chmod g+s {} \;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文