admin管理员组文章数量:1310513
I'm currently working on a team that needs two distinct users from the same wpadmin
group to be able to modify the wordpress files.
Following the guide at Hardening WordPress (Codex), the following commands would give 755
and 644
access to directories and files respectively:
find /path/to/my/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/my/wordpress/install/ -type f -exec chmod 644 {} \;
But the lack of the g+w
permission would make this unusable on a multi-user environment.
What best practices should I follow in this case? Is it secure to just do
find /path/to/my/wordpress/install/ -type d -exec chmod 775 {} \;
find /path/to/my/wordpress/install/ -type f -exec chmod 664 {} \;
To add group access?
本文标签: securitySecuring a multiuser permission structure
版权声明:本文标题:security - Securing a multi-user permission structure 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741807996a2398622.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论