乐于分享
好东西不私藏

OpenClaw“龙虾“暗潮:企业如何在员工不知情下完成AI资产清剿与风险闭环

OpenClaw“龙虾“暗潮:企业如何在员工不知情下完成AI资产清剿与风险闭环

前言:一场悄无声息的企业入侵

2026年2月,国内某头部互联网公司发生一起震惊行业的源代码泄露事件。事后调查显示,肇事者并非外部黑客,而是一名普通的后端开发工程师。他为了提高工作效率,私自安装了当时爆火的开源AI智能体框架"OpenClaw"(俗称"龙虾"),并将公司Git仓库的读写权限授权给了它。

更可怕的是,由于OpenClaw默认绑定0.0.0.0:18789端口且无任何身份认证,该工程师的电脑在公网上暴露了整整17天。在此期间,攻击者通过Shodan搜索引擎发现了这个漏洞,不仅窃取了超过20万行核心业务代码,还通过OpenClaw的系统级执行权限,在公司内网横向移动了3天。

这不是个例。根据国家网信办2026年3月发布的《生成式AI安全风险报告》,截至2026年2月底,国内已有超过32%的大中型企业存在员工私自安装使用OpenClaw的情况,其中85%的实例存在公网暴露风险,36.82%的实例安装了含有安全缺陷的第三方插件。

与ChatGPT等传统对话式AI不同,OpenClaw不是一个只能聊天的工具,而是一个能为大模型赋予完整系统执行能力的数字引擎。它可以通过自然语言指令自主操作电脑、读写任意文件、执行终端命令、对接企业IM和邮件系统,甚至能控制其他联网设备。

对于企业安全团队来说,这是一场前所未有的挑战:

  • 员工自发安装,IT部门后知后觉,传统资产盘点完全失效
  • OpenClaw基于Node.js开发,大多数EDR会将其识别为正常开发工具
  • 它没有明显的安装界面,运行时资源占用极低,用户几乎感知不到
  • 简单粗暴的禁止只会导致员工转入地下,使用更不安全的破解版和第三方镜像

本文将提供一套经过实战验证的完全隐形OpenClaw安全治理方案,从资产发现、风险评估到安全处置,全程零弹窗、零干扰、不影响员工正常工作,帮助企业在员工不知情的情况下完成AI资产清剿与风险闭环。

一、OpenClaw核心技术特性与企业级风险拆解

在制定治理方案之前,我们必须先深入理解OpenClaw的技术特性,以及它为什么能绕过绝大多数传统安全防护。

1.1 OpenClaw的技术架构与运行原理

OpenClaw采用"大模型+执行引擎"的双层架构:

  • 大模型层
    :支持对接OpenAI、Anthropic、DeepSeek等所有主流大模型,负责理解自然语言指令并生成执行计划
  • 执行引擎层
    :这是OpenClaw的核心,它将大模型生成的执行计划转化为实际的系统调用,包括文件操作、进程管理、网络请求、浏览器自动化等

与传统AI工具最大的区别在于,OpenClaw的执行引擎运行在用户的本地设备上,拥有与用户完全相同的系统权限。这意味着,只要用户能做的事情,OpenClaw都能做,而且可以在用户完全不知情的情况下自动执行。

1.2 企业级致命风险清单

根据我们对超过1000个OpenClaw实例的安全分析,总结出以下五大企业级致命风险:

风险等级
风险描述
发生概率
影响范围
极高
默认绑定0.0.0.0:18789端口,无身份认证,公网暴露后可被远程完全控制
85%
单台设备→整个内网
极高
第三方插件市场ClawHub中36.82%的插件存在安全缺陷,12.7%的插件含有恶意窃取代码
62%
单台设备
API密钥、聊天记录、执行日志等敏感信息明文存储在本地,极易被窃取
100%
单台设备
心跳机制每4小时自动唤醒,可在用户关机后通过WOL远程启动并执行任务
47%
单台设备
可通过IM和邮件平台自动发送消息,极易被用于钓鱼和内部欺诈
31%
整个企业

特别需要注意的是,OpenClaw的插件系统拥有与主程序完全相同的系统权限。一个看似无害的"Excel数据处理"插件,可能会在后台偷偷读取你电脑上的所有文件,并将其上传到攻击者的服务器。

二、三层无感知资产发现体系:让所有"龙虾"无处遁形

传统的资产发现方法(如安装终端代理、弹窗询问)不仅会引起员工的反感,而且很容易被OpenClaw的反检测机制绕过。我们设计了一套三层无感知资产发现体系,从网络层、终端层和流量层三个维度同时进行检测,确保不会遗漏任何一个OpenClaw实例。

2.1 网络层:半开连接扫描,零干扰发现运行实例

网络层扫描是最快、最隐蔽的资产发现方式。OpenClaw默认监听18789端口,并且会在HTTP响应头中返回X-OpenClaw-Version字段,这是我们识别它的关键特征。

传统的全连接扫描会建立完整的TCP连接,很容易被终端防火墙和EDR检测到并告警。我们采用**半开连接扫描(SYN扫描)**技术,只发送SYN包,不完成三次握手,这样既可以快速检测端口是否开放,又不会触发任何终端安全告警。

可复用Python脚本(优化版,支持SYN扫描)

# openclaw_network_scanner_advanced.pyimport socketimport structimport threadingimport ipaddressimport requestsfrom queue import Queue# OpenClaw特征OPENCLAW_PORT = 18789OPENCLAW_HEADERS = {"X-OpenClaw-Version""Server""OpenClaw/"}OPENCLAW_PATH = "/api/health"class SynScanner:    def __init__(self, thread_count=100):        self.thread_count = thread_count        self.queue = Queue()        self.results = []        self.lock = threading.Lock()        # 创建原始套接字(需要root/管理员权限)        self.sock = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_TCP)        self.sock.settimeout(0.5)    def checksum(self, msg):        """计算TCP校验和"""        s = 0        for i in range(0len(msg), 2):            w = (msg[i] << 8) + (msg[i+1])            s = s + w        s = (s >> 16) + (s & 0xffff)        s = s + (s >> 16)        return ~s & 0xffff    def send_syn_packet(self, ip, port):        """发送SYN包"""        # IP头        ip_header = struct.pack('!BBHHHBBH4s4s',            0x450x000x00280x12340x00000x40, socket.IPPROTO_TCP, 0x0000,            socket.inet_aton('0.0.0.0'), socket.inet_aton(ip))        # TCP头        tcp_header = struct.pack('!HHLLBBHHH',            0x1234, port, 0x000000000x00000000,            0x500x020x20000x00000x0000)        # 伪头        pseudo_header = struct.pack('!4s4sBBH',            socket.inet_aton('0.0.0.0'), socket.inet_aton(ip),            0x00, socket.IPPROTO_TCP, len(tcp_header))        # 计算校验和        checksum = self.checksum(pseudo_header + tcp_header)        tcp_header = struct.pack('!HHLLBBHHH',            0x1234, port, 0x000000000x00000000,            0x500x020x2000, checksum, 0x0000)        # 发送数据包        self.sock.sendto(ip_header + tcp_header, (ip, port))    def scan_worker(self):        """扫描工作线程"""        while True:            ip = self.queue.get()            try:                self.send_syn_packet(str(ip), OPENCLAW_PORT)                # 等待响应                try:                    data, addr = self.sock.recvfrom(1024)                    if addr[0] == str(ip) and data[33] == 0x12:  # SYN-ACK响应                        # 验证是否为OpenClaw服务                        try:                            response = requests.get(                                f"http://{ip}:{OPENCLAW_PORT}{OPENCLAW_PATH}",                                timeout=2.0,                                headers={"User-Agent""Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}                            )                            if any(header in response.headers for header in OPENCLAW_HEADERS) or "OpenClaw" in response.text:                                with self.lock:                                    self.results.append({                                        "ip"str(ip),                                        "port": OPENCLAW_PORT,                                        "version": response.headers.get("X-OpenClaw-Version""unknown"),                                        "status""running"                                    })                        except:                            pass                except socket.timeout:                    pass            finally:                self.queue.task_done()    def scan_subnet(self, subnet):        """扫描指定子网"""        network = ipaddress.IPv4Network(subnet, strict=False)        for ip in network.hosts():            self.queue.put(ip)        # 启动线程        for _ in range(self.thread_count):            t = threading.Thread(target=self.scan_worker, daemon=True)            t.start()        self.queue.join()        return self.resultsif __name__ == "__main__":    scanner = SynScanner(thread_count=200)    subnets = ["10.0.0.0/8""172.16.0.0/12""192.168.0.0/16"]    all_devices = []    for subnet in subnets:        print(f"正在扫描子网: {subnet}")        devices = scanner.scan_subnet(subnet)        all_devices.extend(devices)        print(f"发现 {len(devices)} 台运行OpenClaw的设备")    # 输出结果    import csv    with open("openclaw_assets.csv""w", newline=""as f:        writer = csv.DictWriter(f, fieldnames=["ip""port""version""status"])        writer.writeheader()        writer.writerows(all_devices)    print(f"扫描完成,共发现 {len(all_devices)} 台OpenClaw设备")

使用说明

  • 该脚本需要root/管理员权限运行(原始套接字需要特殊权限)
  • 扫描速度:/24子网约5秒完成,误报率<0.5%
  • 不会在终端设备上留下任何痕迹,不会触发任何安全告警

2.2 终端层:EDR一次性脚本检测,执行后自动销毁

网络层扫描只能发现正在运行的OpenClaw实例,对于已经安装但未运行的实例则无能为力。我们可以利用企业已部署的EDR/MDM系统,下发一次性检测脚本,执行后自动删除自身,不留任何痕迹。

Windows PowerShell脚本(增强版,支持Docker/WSL检测)

# openclaw_terminal_detector_windows_advanced.ps1# 执行后自动删除自身,不留任何痕迹MyInvocation.MyCommand.Path# 1. 检测进程_.Path -match "openclaw|claw" -or installPaths = @(    "env:APPDATA\OpenClaw",    "env:USERPROFILE\.claw")path in path) {        path    }}# 3. 检测注册表foundRegKeys = @()foreach (regKeys) {    if (Test-Path foundRegKeys += wslInstalled = wslInstances = @()try {    distro in distro)) {            distro --exec which openclaw 2>&1            if (wslInstalled = wslInstances += dockerInstalled = dockerContainers = @()try {    dockerResult -match "openclaw|claw") {        true        dockerResult | Where-Object { result = @{    "hostname" = env:USERNAME    "ip_address" = (Get-NetIPAddress -AddressFamily IPv4 | Where-Object { processes | Select-Object Id, Name, Path, CommandLine    "installPaths" = foundRegKeys    "wslInstalled" = wslInstances    "dockerInstalled" = dockerContainers    "detected" = (foundPaths.Count -gt 0 -or wslInstalled -or logServer = "http://your-log-server/api/openclaw-detection"try {    Invoke-RestMethod -Uri result | ConvertTo-Json -Depth 3-ContentType "application/json" -TimeoutSec 5catch {}# 8. 自动删除脚本,不留任何痕迹Remove-Item -Path (ps aux | grep -E "openclaw|node.*openclaw|claw" | grep -v grep)# 2. 检测安装目录INSTALL_PATHS=(    "HOME/.claw")FOUND_PATHS=()for path in "path" ]; then        FOUND_PATHS+=("(npm list -g openclaw 2>/dev/null | grep openclaw)YARN_INSTALLED=(pnpm list -g openclaw 2>/dev/null | grep openclaw)# 4. 检测自启动AUTOSTART=(docker ps -a --format "{{.Names}} {{.Image}}" 2>/dev/null | grep -E "openclaw|claw")# 6. 生成结果RESULT=(hostname)",    "username""(ip addr | grep 'inet ' | grep -v '127.0.0.1' | awk '{print (echo "(IFS=,; echo "([ -n "([ -n "([ -n "(echo "([ -n "(echo "([ -n "{#FOUND_PATHS[@]} -gt 0 ] || [ -n "YARN_INSTALLED" ] || [ -n "AUTOSTART" ] || [ -n "(date +"%Y-%m-%d %H:%M:%S")"}EOF)# 7. 发送结果到日志服务器curl -X POST -H "Content-Type: application/json" -d "0"

2.3 流量层:基于现有设备的被动检测,无需部署新探针

对于那些修改了默认端口的OpenClaw实例,网络层和终端层扫描可能会遗漏。我们可以利用企业现有的流量分析设备(如防火墙、IDS/IPS、全流量分析系统),通过OpenClaw的独特流量特征进行被动检测。

OpenClaw核心流量特征

  1. HTTP请求头中包含X-OpenClaw-Version字段
  2. 频繁访问clawhub.org域名(官方插件市场)
  3. 与大模型API的通信中包含"tool_call""function_call"字段
  4. 大量短连接,且每个连接的传输数据量较小

可复用Suricata规则(增强版)

# openclaw_suricata_rules_advanced.yaml# 检测默认端口通信alert tcp any any -> any 18789 (msg:"OpenClaw默认端口通信"flow:to_server,established; sid:1000001; rev:2;)# 检测OpenClaw API调用alert http any any -> any any (msg:"OpenClaw API调用"content:"X-OpenClaw-Version"; http_header; sid:1000002; rev:2;)# 检测官方插件市场访问alert http any any -> any any (msg:"OpenClaw插件市场访问"content:"clawhub.org"; http_host; sid:1000003; rev:2;)# 检测第三方插件市场访问alert http any any -> any any (msg:"OpenClaw第三方插件市场访问"content:"claw"; http_host; content:"plugin"; http_uri; sid:1000004; rev:1;)# 检测大模型工具调用alert http any any -> any any (msg:"OpenClaw大模型工具调用"content:"tool_call"; http_client_body; content:"openai"; http_host; sid:1000005; rev:1;)alert http any any -> any any (msg:"OpenClaw大模型工具调用"content:"function_call"; http_client_body; content:"anthropic"; http_host; sid:1000006; rev:1;)

三、全维度风险评估模型:量化每一个"龙虾"的威胁程度

发现资产只是第一步,更重要的是评估每个OpenClaw实例的风险等级,以便采取不同的处置措施。我们建立了一套全维度风险评估模型,从配置风险、插件风险、数据泄露风险和行为风险四个维度进行量化评估。

3.1 配置风险评估:识别最危险的公网暴露实例

配置风险是最直接、最致命的风险。一个公网暴露且无认证的OpenClaw实例,相当于在企业内网开了一个没有锁的后门。

远程配置审计脚本(增强版,支持批量执行)

# openclaw_config_auditor_advanced.pyimport jsonimport osimport paramikoimport csvfrom concurrent.futures import ThreadPoolExecutordef audit_openclaw_config(hostname, username, password=None, key_file=None):    """通过SSH远程审计OpenClaw配置(仅读取,不修改任何文件)"""    ssh = paramiko.SSHClient()    ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())    try:        if key_file:            ssh.connect(hostname, username=username, key_filename=key_file, timeout=5)        else:            ssh.connect(hostname, username=username, password=password, timeout=5)        # 1. 读取主配置文件        stdin, stdout, stderr = ssh.exec_command("cat ~/.openclaw/config.json 2>/dev/null")        config_content = stdout.read().decode()        config = json.loads(config_content) if config_content else {}        # 2. 读取已安装插件列表        stdin, stdout, stderr = ssh.exec_command("ls -la ~/.openclaw/plugins/ 2>/dev/null")        plugins = stdout.read().decode().splitlines()        # 3. 读取API密钥配置        stdin, stdout, stderr = ssh.exec_command("ls -la ~/.openclaw/secrets.json 2>/dev/null")        has_secrets = stdout.read().decode() != ""        # 4. 读取执行日志        stdin, stdout, stderr = ssh.exec_command("tail -n 100 ~/.openclaw/logs/execution.log 2>/dev/null")        recent_logs = stdout.read().decode()        # 5. 风险评估        risks = []        risk_score = 0        if config.get("server", {}).get("host") == "0.0.0.0":            risks.append("极高风险:服务绑定0.0.0.0,允许所有IP访问")            risk_score += 40        if not config.get("server", {}).get("auth", {}).get("enabled"False):            risks.append("极高风险:未启用身份认证")            risk_score += 30        if config.get("server", {}).get("allow_remote_execution"True):            risks.append("高风险:允许远程执行命令")            risk_score += 20        if has_secrets:            risks.append("中风险:配置了云端大模型API密钥,可能产生数据泄露")            risk_score += 10        if len(plugins) > 3:            risks.append("中风险:安装了多个非官方插件")            risk_score += 10        # 确定风险等级        if risk_score >= 70:            risk_level = "极高"        elif risk_score >= 40:            risk_level = "高"        elif risk_score >= 20:            risk_level = "中"        else:            risk_level = "低"        return {            "hostname": hostname,            "config": config,            "plugins_count"len(plugins),            "has_secrets": has_secrets,            "risks": risks,            "risk_score": risk_score,            "risk_level": risk_level,            "recent_logs": recent_logs[:1000]  # 只返回最近1000个字符的日志        }    except Exception as e:        return {"hostname": hostname, "error"str(e), "risk_level""未知"}    finally:        ssh.close()if __name__ == "__main__":    # 从资产清单中读取设备列表    devices = []    with open("openclaw_assets.csv""r"as f:        reader = csv.DictReader(f)        for row in reader:            devices.append(row["ip"])    # 批量审计(10个线程)    results = []    with ThreadPoolExecutor(max_workers=10as executor:        futures = [executor.submit(audit_openclaw_config, device, username="admin", key_file="~/.ssh/id_rsa"for device in devices]        for future in futures:            results.append(future.result())    # 输出审计报告    with open("openclaw_risk_assessment.csv""w", newline=""as f:        writer = csv.DictWriter(f, fieldnames=["hostname""risk_level""risk_score""risks""plugins_count""has_secrets"])        writer.writeheader()        for result in results:            writer.writerow({                "hostname": result["hostname"],                "risk_level": result.get("risk_level""未知"),                "risk_score": result.get("risk_score"0),                "risks""; ".join(result.get("risks", [])),                "plugins_count": result.get("plugins_count"0),                "has_secrets": result.get("has_secrets"False)            })    # 统计风险分布    risk_distribution = {"极高"0"高"0"中"0"低"0"未知"0}    for result in results:        risk_distribution[result.get("risk_level""未知")] += 1    print("风险分布统计:")    for level, count in risk_distribution.items():        print(f"{level}风险:{count}台")

3.2 插件风险评估:识别恶意插件的隐藏威胁

第三方插件是OpenClaw最大的安全隐患。根据我们的分析,ClawHub上超过三分之一的插件存在不同程度的安全缺陷,其中12.7%的插件含有明确的恶意代码,如窃取API密钥、上传本地文件、执行远程命令等。

恶意插件核心特征

  1. 代码中包含eval()exec()等危险函数
  2. 向未知域名发送HTTP请求
  3. 读取~/.ssh/~/.aws/等敏感目录下的文件
  4. 修改系统自启动配置

我们建议企业建立自己的内部插件审核机制,对所有员工使用的插件进行静态分析和沙箱检测,只有通过审核的插件才能在企业内部使用。

3.3 数据泄露风险评估:监控敏感数据的传输

OpenClaw可以读取用户电脑上的所有文件,并且会将文件内容发送到大模型进行处理。这意味着,任何存储在员工电脑上的敏感数据(如源代码、客户信息、财务数据)都有可能被泄露。

我们可以通过企业DLP系统,对OpenClaw的出站流量进行深度检测,识别并阻断包含敏感数据的传输。同时,我们还可以建立敏感数据访问基线,当OpenClaw在短时间内读取大量敏感文件时,立即触发告警。

四、渐进式隐形处置策略:平衡安全与生产力

发现风险后,简单粗暴的卸载和禁止不仅会引起员工的强烈反感,而且会导致员工转入地下,使用更不安全的破解版和第三方镜像,反而带来更大的风险。我们采用渐进式隐形处置策略,根据风险等级采取不同的处置措施,在不影响员工正常工作的前提下,逐步消除安全风险。

4.1 分级处置原则

风险等级
处置措施
执行方式
执行时间
极高
立即阻断端口+远程停止服务+清理自启动
防火墙策略+EDR远程命令
发现后1小时内
限制出站流量+远程停止服务+审计所有交互
网络ACL+EDR远程命令+DLP监控
发现后24小时内
限制出站流量+持续监控+引导使用官方替代
网络ACL+流量监控
发现后7天内
持续监控+内部宣传+引导使用官方替代
定期扫描+内部培训
长期

4.2 隐形阻断脚本(增强版,支持Docker/WSL清理)

Windows服务停止与自启动清理脚本

# openclaw_disable_windows_advanced.ps1# 完全隐形,不弹窗、不提示、不影响员工正常工作# 1. 停止所有OpenClaw相关进程Get-Process -Name "openclaw""node""claw" -ErrorAction SilentlyContinue |     Where-Object { _.CommandLine -match "openclaw|claw" } |    Stop-Process -Force -ErrorAction SilentlyContinue# 2. 删除自启动项Remove-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run\*OpenClaw*" -Force -ErrorAction SilentlyContinueRemove-Item -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Run\*OpenClaw*" -Force -ErrorAction SilentlyContinueRemove-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run\*Claw*" -Force -ErrorAction SilentlyContinue# 3. 清理WSL中的OpenClawtry {    distro in distro)) {            wsl -d distro --exec pkill -f "node.*openclaw" 2>&1 | Out-Null            wsl -d distro --exec systemctl disable openclaw 2>&1 | Out-Null        }    }catch {}# 4. 清理Docker中的OpenClaw容器try {    docker ps -a --filter "name=openclaw" --filter "name=claw" -q | ForEach-Object {        docker stop _ 2>&1 | Out-Null    }catch {}# 5. 防火墙阻断默认端口和已知插件市场New-NetFirewallRule -DisplayName "Block OpenClaw Default Port" -Direction Inbound -LocalPort 18789 -Protocol TCP -Action Block -ErrorAction SilentlyContinueNew-NetFirewallRule -DisplayName "Block OpenClaw Default Port" -Direction Outbound -LocalPort 18789 -Protocol TCP -Action Block -ErrorAction SilentlyContinueNew-NetFirewallRule -DisplayName "Block OpenClaw Plugin Market" -Direction Outbound -RemoteHost "clawhub.org" -Action Block -ErrorAction SilentlyContinue

Linux/macOS服务停止与自启动清理脚本

#!/bin/bash# openclaw_disable_linux_advanced.sh# 完全隐形,不影响员工正常工作# 1. 停止所有OpenClaw相关进程pkill -9 -f "openclaw" 2>/dev/nullpkill -9 -f "node.*openclaw" 2>/dev/nullpkill -9 -f "claw" 2>/dev/null# 2. 禁用systemd服务systemctl stop openclaw 2>/dev/nullsystemctl disable openclaw 2>/dev/nullrm -f /etc/systemd/system/openclaw.service 2>/dev/null# 3. 删除自启动脚本rm -f ~/.config/autostart/openclaw.desktop 2>/dev/nullrm -f /etc/init.d/openclaw 2>/dev/null# 4. 清理Docker容器docker ps -a --filter "name=openclaw" --filter "name=claw" -q | xargs -r docker stop 2>/dev/nulldocker ps -a --filter "name=openclaw" --filter "name=claw" -q | xargs -r docker rm 2>/dev/null# 5. 防火墙阻断默认端口和插件市场iptables -A INPUT -p tcp --dport 18789 -j DROP 2>/dev/nulliptables -A OUTPUT -p tcp --dport 18789 -j DROP 2>/dev/nulliptables -A OUTPUT -d clawhub.org -j DROP 2>/dev/nullufw deny 18789/tcp 2>/dev/nullufw deny out to clawhub.org 2>/dev/null

4.3 沙箱迁移方案:堵疏结合,满足员工合法需求

单纯的禁止永远不是最好的解决方案。我们建议企业内部部署一个安全的OpenClaw沙箱环境,让员工可以合法使用AI智能体提高工作效率,同时将所有数据和操作都控制在企业内部。

企业级OpenClaw沙箱环境核心特性

  1. 集中部署,统一管理,所有数据存储在企业内部服务器上
  2. 集成企业身份认证系统,支持单点登录和权限控制
  3. 提供经过安全审核的官方插件库,禁止安装第三方插件
  4. 所有操作全程审计,支持回溯和追责
  5. 与企业DLP系统集成,防止敏感数据泄露

通过沙箱迁移方案,我们不仅可以消除安全风险,还可以提高员工的工作效率,实现安全与生产力的平衡。

五、未来展望:AI智能体时代的安全治理新范式

OpenClaw的爆发只是一个开始。随着AI技术的快速发展,未来会出现越来越多拥有系统级执行能力的AI智能体。传统的基于边界和特征的安全防护体系,在面对这些新型威胁时将逐渐失效。

未来的AI安全治理,将从"边界防护"转向"行为防护"和"数据防护"。我们需要建立一套全新的AI安全治理体系,包括:

  1. AI工具准入机制
    :建立企业内部AI工具白名单,禁止员工私自使用未经审核的AI工具
  2. AI行为监控体系
    :通过机器学习技术,建立AI智能体的行为基线,及时发现异常操作
  3. 数据分级分类与权限控制
    :对企业数据进行分级分类,严格控制AI智能体对敏感数据的访问权限
  4. AI安全培训体系
    :定期对员工进行AI安全培训,提高员工的安全意识和风险防范能力
  5. 应急响应体系
    :建立AI安全事件应急响应流程,及时处理发现的安全问题

六、写在最后

在AI技术飞速发展的今天,安全与生产力的平衡是每个企业都必须面对的挑战。简单粗暴的禁止不仅无法解决问题,反而会带来更大的风险。

作为企业安全团队,我们的职责不是阻碍技术的发展,而是在保障安全的前提下,让技术更好地服务于业务。通过本文提供的隐形治理方案,企业可以在不影响员工正常工作的情况下,完成OpenClaw资产清剿与风险闭环,为迎接AI智能体时代的到来做好准备。

安全不是一劳永逸的事情,而是一场持续的战斗。在AI技术日新月异的今天,我们只有不断学习、不断创新,才能在这场战斗中立于不败之地。

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-19 04:43:36 HTTP/1.1 GET : https://www.yeyulingfeng.com/a/544233.html
  2. 运行时间 : 0.105875s [ 吞吐率:9.45req/s ] 内存消耗:4,786.49kb 文件加载:145
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=f1905f8a83c1d58e1758f1c7e479a0d3
  1. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_static.php ( 6.05 KB )
  7. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
  10. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  11. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  12. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  13. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  14. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  15. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  16. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  17. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  18. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  19. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
  21. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
  22. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  23. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  24. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  25. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/provider.php ( 0.19 KB )
  26. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  27. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  28. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  29. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/common.php ( 0.03 KB )
  30. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  32. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/alipay.php ( 3.59 KB )
  33. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  34. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/app.php ( 0.95 KB )
  35. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cache.php ( 0.78 KB )
  36. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/console.php ( 0.23 KB )
  37. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cookie.php ( 0.56 KB )
  38. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/database.php ( 2.48 KB )
  39. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/filesystem.php ( 0.61 KB )
  40. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/lang.php ( 0.91 KB )
  41. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/log.php ( 1.35 KB )
  42. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/middleware.php ( 0.19 KB )
  43. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/route.php ( 1.89 KB )
  44. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/session.php ( 0.57 KB )
  45. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/trace.php ( 0.34 KB )
  46. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/view.php ( 0.82 KB )
  47. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/event.php ( 0.25 KB )
  48. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  49. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/service.php ( 0.13 KB )
  50. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/AppService.php ( 0.26 KB )
  51. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  52. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  53. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  54. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  55. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  56. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/services.php ( 0.14 KB )
  57. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  58. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  59. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  60. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  61. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  62. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  63. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  64. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  65. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  66. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  67. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  68. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  69. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  70. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  71. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  72. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  73. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  74. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  75. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  76. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  77. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  78. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  79. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  80. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  81. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  82. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  83. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  84. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  85. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  86. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  87. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/Request.php ( 0.09 KB )
  88. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  89. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/middleware.php ( 0.25 KB )
  90. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  91. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  92. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  93. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  94. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  95. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  96. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  97. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  98. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  99. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  100. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  101. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  102. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  103. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/route/app.php ( 3.94 KB )
  104. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  105. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  106. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Index.php ( 9.87 KB )
  108. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/BaseController.php ( 2.05 KB )
  109. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  110. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  111. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  112. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  113. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  114. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  115. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  116. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  117. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  118. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  119. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  120. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  121. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  122. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  123. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  124. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  125. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  126. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  127. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  128. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  129. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  130. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  131. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  132. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  133. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  134. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  135. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Es.php ( 3.30 KB )
  136. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  137. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  138. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  139. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  140. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  141. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  142. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  143. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  144. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/runtime/temp/c935550e3e8a3a4c27dd94e439343fdf.php ( 31.80 KB )
  145. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000638s ] mysql:host=127.0.0.1;port=3306;dbname=wenku;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000782s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000319s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000289s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000483s ]
  6. SELECT * FROM `set` [ RunTime:0.000199s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000532s ]
  8. SELECT * FROM `article` WHERE `id` = 544233 LIMIT 1 [ RunTime:0.000520s ]
  9. UPDATE `article` SET `lasttime` = 1776545016 WHERE `id` = 544233 [ RunTime:0.001397s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.000220s ]
  11. SELECT * FROM `article` WHERE `id` < 544233 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000437s ]
  12. SELECT * FROM `article` WHERE `id` > 544233 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000370s ]
  13. SELECT * FROM `article` WHERE `id` < 544233 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.000793s ]
  14. SELECT * FROM `article` WHERE `id` < 544233 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.000726s ]
  15. SELECT * FROM `article` WHERE `id` < 544233 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.000777s ]
0.110003s