阿里云99元服务器,新老用户均可买,99元/年续费到2027年,396元4年,多配置特价...
WordPress /wp-includes/http.php文件中的wp_http_validate_url函数函数漏洞及解决方法:
漏洞描述
wordpress /wp-includes/http.php文件中的wp_http_validate_url函数对输入IP验证不当,导致黑客可构造类似于012.10.10.10这样的畸形IP绕过验证,进行SSRF。文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
解决方法
两种方法,最简单的方法就是升级到最新的WordPress版本,另一种方法就是修改/wp-includes/http.php文件。文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
方法一:手动升级到WordPress最新版本
升级前请备份,参考:WordPress博客网站备份方法文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
升级到WordPress最新版本可以有效解决该漏洞问题,WordPress升级参考:WordPress手动更新到最新版本文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
方法二:修改/wp-includes/http.php这个有漏洞的文件
找到/wp-includes/http.php这个文件,将内容替换:
查找:文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
$same_host = strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] );
替换为:文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
if ( isset( $parsed_home['host'] ) ) { $same_host = ( strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ) || 'localhost' === strtolower( $parsed_url['host'] ) ); } else { $same_host = false; }
替换后,保存上传覆盖,即可成功修复IP验证不当漏洞。文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
注意:修复后,一定要到阿里云控制台点击“验证”或者“忽略”该漏洞,否则还是会一直发送漏洞信息的!文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html 文章源自新手站长-https://xinshouzhanzhang.com/httpvalidateurl.html
【阿里云99元服务器】入口2核2G3M带宽、新老用户同享、99元/年续费到2027年
2023阿里云优惠活动:xinshouzhanzhang.com/go/aliyun
注意:以上特价轻量服务器限制条件为“产品首单特惠”,如果你的腾讯云账号已经是老用户,建议重新注册一个腾讯云账号,如果你是新用户符合条件,那么无脑入,确实值得。