表现为数据库就新增两个用户是wp2shell 开头的,权限还是管理员级别
影响版本
6.8.0 ~ 6.8.5:仅存在 SQL 注入,无法完整 RCE
6.9.0 ~ 6.9.4:完整 wp2shell 攻击链(无登录拿 shell)
7.0.0 ~ 7.0.1:完整 wp2shell 攻击链
修复安全版本:
6.8 分支:6.8.6
6.9 分支:6.9.5
7.0 分支:7.0.2
详细说明可以点签名,最新文章就是。
表现为数据库就新增两个用户是wp2shell 开头的,权限还是管理员级别
影响版本
6.8.0 ~ 6.8.5:仅存在 SQL 注入,无法完整 RCE
6.9.0 ~ 6.9.4:完整 wp2shell 攻击链(无登录拿 shell)
7.0.0 ~ 7.0.1:完整 wp2shell 攻击链
修复安全版本:
6.8 分支:6.8.6
6.9 分支:6.9.5
7.0 分支:7.0.2
详细说明可以点签名,最新文章就是。
nginx拦截
if ($request_uri ~* "/wp-json/batch/v1|\?rest_route=/batch/v1") { return 444; }
插件拦截
wp-content/mu-plugins/block-batch.php
<?php defined('ABSPATH') || exit; add_filter('rest_pre_dispatch', function($result, $server, $request) { $route = $request-?>get_route(); if ($route === '/batch/v1' && !is_user_logged_in()) { return new WP_Error('forbidden', 'Access denied', ['status' => 403]); } return $result; }, 10, 3);
感谢优质内容,用金币表达支持。同一主题仅可打赏一次。
我的金币: 0