我应该删除install.php和install-helper.php吗?


16

在较新版本的wordpress上是否存在保留wp-admin/install.phpwp-admin/install-helper.php安全漏洞?默认情况下,这些文件的文件许可权是644。

如果有泄漏,请什么样?

Answers:


19

不,没有安全风险。在发生任何事情之前,两个文件都进行完整性检查。

如果已经安装了WordPress:

  • install-helper.php 仅返回空白页。
  • install.php 说WordPress已安装,您应该登录: 在此处输入图片说明

您可以通过.htaccess中的固定链接上方的简单规则来禁止访问这两个文件:

RedirectMatch Permanent wp-admin/install(-helper)?\.php /

这会将所有对这些文件的请求重定向到主页。


-2
# nginx configuration

location ~ wp-admin/install(-helper)?\.php {
    rewrite ^(.*)$ / redirect;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.