Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-22679 — # Weaver E-cology 未认证 RCE 漏洞利用与检测扫描器 针对 Weaver E-cology 的 dubboApi 调试端点的未认证 RCE 漏洞利用与检测扫描器。包含 PoC、Nmap NSE 脚本及修复建议。 | Kitploit
工具/GitHubGitHub/keraattin/cve-2026-22679
侦察漏洞扫描器漏洞分析漏洞利用Web安全渗透测试
GitHubkeraattin/cve-2026-22679

CVE-2026-22679

# Weaver E-cology 未认证 RCE 漏洞利用与检测扫描器 针对 Weaver E-cology 的 dubboApi 调试端点的未认证 RCE 漏洞利用与检测扫描器。包含 PoC、Nmap NSE 脚本及修复建议。

查看仓库
44个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-22679:泛微 E-cology 未授权 RCE(通过 dubboApi 调试端点)

CVE ID CVSS Score CWE Classification Weaver E-cology

摘要

泛微 E-cology 10.0(20260312 构建版本之前)在 /papi/esearch/data/devops/dubboApi/debug/method 端点中存在一个严重的未授权远程代码执行漏洞。攻击者无需身份验证即可通过 interfaceName 和 methodName POST 参数注入任意命令,实现完全的系统接管。Shadowserver 基金会自 2026-03-31 起已检测到活跃利用。

快速风险提示: CVSS 9.3 - 完全未授权、无需用户交互、可通过网络访问的端点,可直接导致代码执行。


目录

  1. 快速事实
  2. 什么是泛微 E-cology
  3. 漏洞深入分析
    • 根本原因分析
    • 攻击流程示意图
    • 受影响端点详情
  4. 影响分析
  5. 受影响版本
  6. 检测
    • Python 扫描器
    • Nmap NSE 脚本
  7. 入侵指标
  8. 修复方案
  9. 参考资料
  10. 作者

快速事实


什么是泛微 E-cology?

泛微 E-cology 是中国部署最广泛的企业 OA(办公自动化)与协同平台之一。由泛微集团开发,广泛应用于以下领域:

  • 政府机构:中央及省级政府部门
  • 大型企业:财富 500 强企业和国有企业
  • 金融机构:银行、保险公司和投资公司
  • 教育机构:亚洲各地的大学和研究机构

核心功能

E-cology 提供全面的企业解决方案,包括:

  • 文档管理:企业文档的安全存储、版本控制和检索
  • 工作流自动化:业务流程自动化、审批链和任务路由
  • 人力资源:员工管理、薪资集成和组织架构
  • 协作工具:邮件、即时通讯、日历和项目管理
  • 门户服务:可定制的企业门户和仪表板

部署规模

E-cology 的部署规模通常为每个组织数百至数千用户。该平台是许多组织的关键基础设施组件,因此其中的漏洞影响极为严重。


漏洞深入分析

根本原因分析

该漏洞存在于 dubboApi 调试端点中,该端点很可能是为开发和故障排查目的而遗留的可访问接口。该端点允许通过 Dubbo RPC 框架直接调用任意方法,且未进行适当的输入验证或身份验证检查。

易受攻击的代码模式:``` POST /papi/esearch/data/devops/dubboApi/debug/method HTTP/1.1 Host: target.com Content-Type: application/json

{ "interfaceName": "com.weaver.rpc.InvokeCommand", "methodName": "executeCommand", "parameters": ["id", "whoami", "cat /etc/passwd"] }

root@kitploit:~
该应用程序直接处理这些参数并将其传递给RPC命令执行辅助函数,而无需:

- 身份验证校验
- 输入验证/清理
- 方法白名单强制
- 参数类型检查

这使得攻击者能够指定执行系统命令的任意Dubbo接口方法。

### 攻击流程图```
Internet Attacker
    |
    | Sends unauthenticated POST request
    | with malicious interfaceName/methodName
    v
Weaver E-cology HTTP Server (port 80/443)
    |
    | No authentication check
    | No authorization validation
    v
/papi/esearch/data/devops/dubboApi/debug/method endpoint
    |
    | Direct parameter pass-through to Dubbo RPC layer
    v
Dubbo RPC Framework (unvalidated interface invocation)
    |
    | Resolves arbitrary interface methods
    | Attacker-controlled method name injection
    v
Command Execution Helpers (vulnerable classes)
    |
    | Direct OS command execution via Runtime.exec()
    | or similar OS command invocation mechanisms
    v
System Command Execution
    |
    | Complete code execution as Weaver service user
    | (typically root or high-privilege account)
    |
    +-> Read sensitive files (/etc/passwd, configs)
    +-> Execute arbitrary binaries
    +-> Create reverse shells
    +-> Exfiltrate data
    +-> Establish persistence
    v
Complete System Compromise

漏洞端点详情

端点路径: /papi/esearch/data/devops/dubboApi/debug/method

HTTP 方法: POST

所需认证: 无(零认证)

所需请求头: 标准 HTTP 请求头(无需特殊令牌或 Cookie)

请求体参数:

端点暴露流程:``` Weaver Deployment Architecture

Internet | v Firewall (often misconfigured or open for "accessibility") | v Web Server (port 80/443) | +--------> HTTP Request to any path | v Route Dispatcher | +---> /login/Login.jsp > Requires authentication | +---> /wui/index.html > Requires authentication | +---> /papi/esearch/data/devops/dubboApi/debug/method | +---> UNPROTECTED - No authentication check! | v Dubbo RPC Invoker (unrestricted method invocation) | v OS Command Execution | v System Compromise (RCE as web user)

root@kitploit:~
### 典型的 Weaver 部署架构```
Corporate Network
=================

Internet > Firewall (port 80/443 open for E-cology)
              |
              v
        Load Balancer (optional)
              |
    +---------+---------+
    |         |         |
    v         v         v
 Node1      Node2     Node3
  Web        Web       Web
 Server      Server    Server
  |          |         |
  +----------+----+----+
               |
               v
         Shared Storage
         (Documents/Config)
               |
               v
         Database Server
         (MySQL/Oracle)

Each Web Server has:
- Weaver E-cology Java application
- Embedded Tomcat/JBoss container
- Dubbo RPC framework
- VULNERABLE /papi/esearch/data/devops/dubboApi/debug/method
  endpoint (pre-patch)

影响分析

严重性评估

真实世界攻击场景

场景 1:政府数据泄露

国家级行为体或犯罪集团利用政府机构的 E-cology 部署来:

  • 访问机密文件和通信
  • 窃取公民个人数据
  • 修改政府记录
  • 建立持久后门以实现长期访问

场景 2:金融系统入侵

攻击者入侵银行或金融机构的 E-cology 实例以:

  • 访问客户账户信息和交易日志
  • 修改金融记录
  • 执行未经授权的资金转账
  • 安装支付处理恶意软件

场景 3:供应链攻击

被入侵的 E-cology 实例被用作跳板,以:

  • 访问互联的企业系统
  • 在企业网络中横向移动
  • 在关键基础设施上建立持久性
  • 促成多阶段高级持续性威胁(APT)活动

受影响版本

注意: 其他版本也可能受影响。Weaver 尚未发布全面的版本兼容性信息。组织应在部署前充分测试补丁。


检测

Python 扫描器

文件名: CVE-2026-22679_Weaver_Ecology_RCE_detector.py

描述: 安全、非破坏性的检测脚本,通过检查端点可访问性来识别易受攻击的 Weaver E-cology 实例。```python #!/usr/bin/env python3 """ CVE-2026-22679 Weaver E-cology RCE Detection Scanner Detects vulnerable dubboApi debug endpoint exposure Author: Kerem Oruc (@keraattin) """

import requests import argparse import sys from datetime import datetime from urllib.parse import urljoin import json

class WeaverEcologyScanner: def init(self, timeout=10, verify_ssl=False): self.timeout = timeout self.verify_ssl = verify_ssl self.vulnerable_endpoint = "/papi/esearch/data/devops/dubboApi/debug/method" self.weaver_identifiers = [ "/login/Login.jsp", "/wui/index.html", "/UploadFiles/", ]

root@kitploit:~
def is_weaver_ecology(self, base_url):
    """Identify if target is Weaver E-cology instance"""
    for path in self.weaver_identifiers:
        try:
            url = urljoin(base_url, path)
            response = requests.get(
                url,
                timeout=self.timeout,
                verify=self.verify_ssl,
                allow_redirects=False
            )
            if response.status_code in [200, 302, 301]:
                return True
        except:
            continue
    return False

def check_vulnerability(self, base_url):
    """Check if dubboApi debug endpoint is accessible"""
    try:
        url = urljoin(base_url, self.vulnerable_endpoint)
        
        # Test with GET request
        response = requests.get(
            url,
            timeout=self.timeout,
            verify=self.verify_ssl,
            allow_redirects=False
        )
        
        # 200 (success), 405 (method not allowed), or 400 (bad request)
        # all indicate endpoint exists
        if response.status_code in [200, 400, 405]:
            return True, response.status_code
        
        # Test with POST request as fallback
        response = requests.post(
            url,
            json={},
            timeout=self.timeout,
            verify=self.verify_ssl,
            allow_redirects=False
        )
        
        if response.status_code in [200, 400, 405]:
            return True, response.status_code
        
        return False, response.status_code
        
    except requests.exceptions.RequestException:
        return False, None

def scan_target(self, base_url):
    """Scan single target"""
    result = {
        "target": base_url,
        "timestamp": datetime.utcnow().isoformat() + "Z",
        "is_weaver": False,
        "vulnerable": False,
        "endpoint_status": None,
        "risk_level": "LOW"
    }
    
    # Normalize URL
    if not base_url.startswith(("http://", "https://")):
        base_url = "http://" + base_url
    
    # Check if Weaver E-cology
    is_weaver = self.is_weaver_ecology(base_url)
    result["is_weaver"] = is_weaver
    
    if not is_weaver:
        result["risk_level"] = "LOW"
        return result
    
    # Check vulnerability
    is_vulnerable, status_code = self.check_vulnerability(base_url)
    result["endpoint_status"] = status_code
    result["vulnerable"] = is_vulnerable
    
    if is_vulnerable:
        result["risk_level"] = "CRITICAL"
    else:
        result["risk_level"] = "UNKNOWN"
    
    return result

def format_report(self, results):
    """Format scan results for display"""
    report = []
    report.append("\n[*] CVE-2026-22679 Weaver E-cology RCE Detection Scanner")
    report.append(f"[*] Scanning {len(results)} target(s)...")
    report.append("[*] Detection method: dubboApi debug endpoint accessibility check")
    report.append(f"[*] Endpoint: {self.vulnerable_endpoint}")
    report.append("[*] NOTE: No commands are executed. Safe, non-destructive scan.\n")
    report.append("=" * 70)
    
    for result in results:
        report.append(f"\nTarget: {result['target']}")
        report.append(f"Scan Time: {result['timestamp']}")
        report.append(f"Risk Level: {result['risk_level']}")
        report.append("=" * 70)
        report.append(f"  Is Weaver E-cology:    {'YES' if result['is_weaver'] else 'NO'}")
        report.append(f"  Debug Endpoint:        {'ACCESSIBLE' if result['vulnerable'] else 'NOT ACCESSIBLE'}")
        report.append(f"  Endpoint HTTP Status:  {result['endpoint_status']}")
        report.append(f"  Vulnerable:            {'YES' if result['vulnerable'] else 'NO'}")
        
        if result["vulnerable"]:
            report.append("")
            report.append("  *** CRITICAL: dubboApi debug endpoint is exposed! ***")
            report.append("  *** Unauthenticated RCE via interfaceName/methodName injection ***")
            report.append(f"  *** Endpoint: {self.vulnerable_endpoint} ***")
            report.append("  *** Update to build 20260312 or block this endpoint immediately ***")
    
    report.append("\n" + "=" * 70)
    return "\n".join(report)

def main(): parser = argparse.ArgumentParser( description="CVE-2026-22679 Weaver E-cology RCE Detection Scanner" ) parser.add_argument("targets", nargs="+", help="Target URL(s) to scan (e.g., http://target.com)") parser.add_argument("--timeout", type=int, default=10, help="Request timeout in seconds") parser.add_argument("--no-verify-ssl", action="store_true", help="Disable SSL verification")

root@kitploit:~
args = parser.parse_args()

scanner = WeaverEcologyScanner(timeout=args.timeout, verify_ssl=not args.no_verify_ssl)

results = []
for target in args.targets:
    result = scanner.scan_target(target)
    results.append(result)

print(scanner.format_report(results))

# Exit with error if any vulnerabilities found
if any(r["vulnerable"] for r in results):
    sys.exit(1)
sys.exit(0)

if name == "main": main()

root@kitploit:~
**使用示例:**```bash
# Scan single target
python3 CVE-2026-22679_Weaver_Ecology_RCE_detector.py http://target.com

# Scan multiple targets
python3 CVE-2026-22679_Weaver_Ecology_RCE_detector.py http://target1.com http://target2.com

# Scan with custom timeout
python3 CVE-2026-22679_Weaver_Ecology_RCE_detector.py http://target.com --timeout 5

# Scan with SSL verification disabled
python3 CVE-2026-22679_Weaver_Ecology_RCE_detector.py https://target.com --no-verify-ssl

示例输出:``` [] CVE-2026-22679 Weaver E-cology RCE Detection Scanner [] Scanning 1 target(s)... [] Detection method: dubboApi debug endpoint accessibility check [] Endpoint: /papi/esearch/data/devops/dubboApi/debug/method [*] NOTE: No commands are executed. Safe, non-destructive scan.

====================================================================== Target: http://10.0.0.10 Scan Time: 2026-04-15T12:00:00Z Risk Level: CRITICAL

Is Weaver E-cology: YES Debug Endpoint: ACCESSIBLE Endpoint HTTP Status: 200 Vulnerable: YES

*** CRITICAL: dubboApi debug endpoint is exposed! *** *** Unauthenticated RCE via interfaceName/methodName injection *** *** Endpoint: /papi/esearch/data/devops/dubboApi/debug/method *** *** Update to build 20260312 or block this endpoint immediately ***

======================================================================

root@kitploit:~
### Nmap NSE 脚本

**文件名:** `CVE-2026-22679_Weaver_Ecology_RCE.nse`

**描述:** 用于漏洞检测的 Nmap NSE 脚本,可与 Nmap 工作流集成。```lua
-- CVE-2026-22679 Weaver E-cology RCE Detection Script
-- Detects vulnerable dubboApi debug endpoint exposure
-- Author: Kerem Oruc (@keraattin)

local http = require "http"
local shortport = require "shortport"
local stdnse = require "stdnse"
local vulns = require "vulns"

description = [[
Detects Weaver E-cology instances vulnerable to CVE-2026-22679.
This vulnerability allows unauthenticated remote code execution through
the exposed dubboApi debug endpoint at /papi/esearch/data/devops/dubboApi/debug/method
]]

author = "Kerem Oruc (@keraattin)"
license = "Same as Nmap--See https://nmap.org/COPYING"
categories = {"vuln", "safe"}

portrule = shortport.http

local VULNERABLE_ENDPOINT = "/papi/esearch/data/devops/dubboApi/debug/method"
local WEAVER_IDENTIFIERS = {
  "/login/Login.jsp",
  "/wui/index.html",
  "/UploadFiles/"
}

local function is_weaver_ecology(host, port)
  for _, path in ipairs(WEAVER_IDENTIFIERS) do
    local response = http.get(host, port, path)
    if response.status and response.status >= 200 and response.status < 400 then
      return true
    end
  end
  return false
end

local function check_vulnerability(host, port)
  local response = http.get(host, port, VULNERABLE_ENDPOINT)
  
  if response.status then
    -- 200 (OK), 400 (Bad Request), 405 (Method Not Allowed)
    -- all indicate the endpoint exists (unpatched)
    if response.status == 200 or response.status == 400 or response.status == 405 then
      return true, response.status
    end
  end
  
  -- Try POST as fallback
  local response = http.post(host, port, VULNERABLE_ENDPOINT, nil, {}, "")
  if response.status then
    if response.status == 200 or response.status == 400 or response.status == 405 then
      return true, response.status
    end
  end
  
  return false, response.status or "unknown"
end

action = function(host, port)
  local vuln_table = {
    title = "Weaver E-cology Unauthenticated RCE (CVE-2026-22679)",
    state = vulns.STATE.UNKNOWN,
    risk_level = "CRITICAL",
    IDS = {
      CVE = "CVE-2026-22679",
      CWE = "CWE-94"
    },
    description = [[
The dubboApi debug endpoint is exposed without authentication.
An attacker can send POST requests with crafted parameters to
achieve remote code execution through parameter injection.
    ]],
    references = {
      "https://nvd.nist.gov/vuln/detail/CVE-2026-22679",
    },
    dates = {
      disclosure = {year = 2026, month = 3, day = 31},
      discovery = {year = 2026, month = 3, day = 12}
    }
  }
  
  local vuln_report = vulns.Report:new(VULNERABLE_ENDPOINT, host, port)
  
  -- Check if target is Weaver E-cology
  if not is_weaver_ecology(host, port) then
    vuln_table.state = vulns.STATE.NOT_VULN
    return vuln_report:make_output(vuln_table)
  end
  
  -- Check if vulnerable endpoint is accessible
  local is_vulnerable, status_code = check_vulnerability(host, port)
  
  if is_vulnerable then
    vuln_table.state = vulns.STATE.VULNERABLE
    vuln_table.extra_info = string.format(
      "Debug endpoint accessible at %s (HTTP %d)",
      VULNERABLE_ENDPOINT,
      status_code
    )
  else
    vuln_table.state = vulns.STATE.NOT_VULN
  end
  
  return vuln_report:make_output(vuln_table)
end

使用示例:```bash

Scan single host

nmap -p 80 --script CVE-2026-22679_Weaver_Ecology_RCE.nse target.com

Scan multiple ports

nmap -p 80,443,8080,8443 --script CVE-2026-22679_Weaver_Ecology_RCE.nse target.com

Scan network range

nmap -p 80 --script CVE-2026-22679_Weaver_Ecology_RCE.nse 10.0.0.0/24

Verbose output

nmap -p 80 --script CVE-2026-22679_Weaver_Ecology_RCE.nse -v target.com

Combine with other scripts

nmap -p 80 --script http-title,http-headers,CVE-2026-22679_Weaver_Ecology_RCE.nse target.com

root@kitploit:~
**示例输出:**```
PORT   STATE SERVICE
80/tcp open  http
| CVE-2026-22679_Weaver_Ecology_RCE:
|   VULNERABLE:
|   Weaver E-cology Unauthenticated RCE (CVE-2026-22679)
|     State: VULNERABLE
|     Risk level: CRITICAL
|     Debug endpoint: accessible at /papi/esearch/data/devops/dubboApi/debug/method
|     Description:
|       The dubboApi debug endpoint is exposed without authentication.
|       An attacker can send POST requests with crafted parameters to
|       achieve remote code execution. Update to build 20260312.
|     Discovery Date: 2026-03-12
|     Disclosure Date: 2026-03-31
|     IDs:
|       CVE: CVE-2026-22679
|       CWE: CWE-94 (Code Injection)
|     References:
|_      https://nvd.nist.gov/vuln/detail/CVE-2026-22679

入侵指标

网络指标

  • 向 /papi/esearch/data/devops/dubboApi/debug/method 发送的 HTTP POST 请求
  • 包含 interfaceName 或 methodName 参数的请求
  • 来自同一源 IP 对调试端点的多次快速请求
  • 来自外部/意外源 IP 的请求
  • 针对 RPC 接口、携带 JSON 负载的 POST 请求
  • 调试端点路径返回异常的 HTTP 200 或 405 响应

日志指标

Web 服务器访问日志:``` POST /papi/esearch/data/devops/dubboApi/debug/method HTTP/1.1 200 - POST /papi/esearch/data/devops/dubboApi/debug/method HTTP/1.1 405 - GET /papi/esearch/data/devops/dubboApi/debug/method HTTP/1.1 405 -

root@kitploit:~
**应用程序日志:**

- 与 Dubbo RPC 调用相关的异常或错误
- RPC 框架日志中未经验证的参数警告
- ClassNotFoundException 或方法调用失败
- 意外的接口解析尝试

### 基于主机的指标

- 从 Weaver Java 进程派生的意外子进程
- 系统上创建的新用户账户
- 来自 Weaver 服务的意外网络连接
- Weaver 配置文件的修改
- Weaver 目录中存在 WebShell
- 对系统目录的异常文件写入
- 可疑的 cronjob 或服务条目

### 文件系统指标

- `/tmp/` 或 `/var/tmp/` 中的意外文件
- 被修改的 Weaver JAR 文件或配置文件
- Web 可访问目录中的新 shell 脚本
- 存在常见 WebShell 文件名(shell.jsp、cmd.jsp 等)

---

## 修复措施

### 立即行动(0-24 小时)

1. **禁用对调试端点的网络访问**

   添加防火墙规则以阻止对易受攻击端点的访问:   ```
   # iptables example
   iptables -I INPUT -p tcp --dport 80 -m string --string "/papi/esearch/data/devops/dubboApi" --algo bm -j DROP
   
   # nginx example
   location /papi/esearch/data/devops/dubboApi {
       return 403;
   }
   
   # Apache example
   <Location "/papi/esearch/data/devops/dubboApi">
       Deny from all
   </Location>
  1. 监控主动利用

    • 审查 Web 服务器访问日志,查找对易受攻击端点的 POST 请求
    • 检查是否存在可疑的 Dubbo RPC 调用
    • 监控系统进程,留意意外产生的子进程
    • 为端点访问设置告警
  2. 限制网络访问

    • 将泛微 E-cology 实例的访问限制为仅限内部网络
    • 如有可能,禁用面向互联网的暴露
    • 实施网络分段
    • 使用 VPN/堡垒主机进行远程访问

短期行动(1-7 天)

  1. 应用官方补丁

    升级至泛微 E-cology 构建版本 20260312 或更高版本: ```bash

    Contact Weaver support or download from official repository

    Backup current installation

    cp -r /opt/ecology /opt/ecology.backup.20260415

    Apply patch

    /opt/ecology/bin/upgrade.sh --version 20260312

    Verify patch application

    curl -X POST http://localhost/papi/esearch/data/devops/dubboApi/debug/method

    Should return 404 after patch

    root@kitploit:~
  2. 审查访问日志

    • 分析部署以来的所有 Web 服务器日志
    • 查找与失陷指标相匹配的模式
    • 检查是否存在成功的 RCE 执行模式
    • 确定潜在失陷的范围
  3. 开展主机取证

    • 检查是否存在意外的用户账户
    • 扫描 WebShell 或后门
    • 审查最近的文件修改
    • 检查系统日志中的可疑活动

长期措施(1-4 周)

  1. 全面系统评估

    • 确定系统在打补丁之前是否已被利用
    • 审查所有 RCE 尝试和系统修改
    • 评估对业务数据和系统的损害
    • 若确认失陷,启动事件响应
  2. 实施网络分段

    • 将 Weaver 实例部署在隔离的网络分段中
    • 实施严格的入站/出站过滤
    • 使用 Web 应用防火墙(WAF)
    • 管理访问要求使用 VPN
  3. 加固

    • 禁用不必要的调试端点
    • 实施请求签名/验证
    • 部署运行时应用自我保护(RASP)
    • 定期进行安全审计和渗透测试
  4. 更新安全监控

    • 实施端点检测与响应(EDR)
    • 部署 SIEM 进行集中日志分析
    • 为 RPC 端点访问模式创建告警
    • 监控其他应用程序中是否存在类似漏洞

参考

  • CVE-2026-22679 NVD 详情
  • CWE-94:代码生成控制不当
  • Shadowserver 基金会 - 活跃利用报告
  • 泛微 E-cology 官方安全公告
  • Dubbo RPC 框架安全指南
  • CVSS v3.1 规范

作者

Kerem Oruc (@keraattin)

  • GitHub:https://github.com/keraattin
  • Twitter:https://twitter.com/keraattin

免责声明: 此信息仅供教育和防御性安全目的使用。未经授权访问计算机系统属于违法行为。在测试或访问非您所有的系统之前,请务必获得适当授权。

最后更新: 2026-04-15

下载工具
方面详情
CVE IDCVE-2026-22679
CVSS 评分9.3(严重)
CVSS 向量CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CWECWE-94(代码注入)
厂商泛微(Fanwei)
产品E-cology 10.0
漏洞类型未授权远程代码执行(RCE)
受影响端点/papi/esearch/data/devops/dubboApi/debug/method
攻击向量网络 / HTTP POST
所需身份验证无
受影响版本20260312 构建版本之前的 10.0 版本
修复版本构建版本 20260312(发布于 2026-03-12)
活跃利用自 2026-03-31 起(Shadowserver 基金会)
修补方式完全移除受影响端点
参数类型描述示例
interfaceName字符串RPC 接口类名(攻击者可控)com.weaver.rpc.InvokeCommand
methodName字符串要调用的方法名(攻击者可控)executeCommand
parameters数组直接传递给执行逻辑的方法参数["id"]
影响领域严重性详情
机密性严重未授权访问所有系统数据、文档、用户凭据、数据库内容
完整性严重能够修改文件、文档、数据库记录和系统配置
可用性严重系统关闭、资源耗尽、数据破坏、服务中断
影响范围已变更Weaver 服务用户通常以 root 或高权限账户运行;可导致系统完全沦陷
版本
构建范围
状态
可用补丁
10.0< 20260312易受攻击是
10.0>= 20260312已修补不适用(端点已移除)
9.x 及更早版本全部未知请咨询供应商