当前位置:首页>安卓APP>安卓逆向 -- 以车载微信为例对微信协议请求进行抓包(理论全版本通杀)

安卓逆向 -- 以车载微信为例对微信协议请求进行抓包(理论全版本通杀)

  • 2026-02-03 21:40:33
安卓逆向 -- 以车载微信为例对微信协议请求进行抓包(理论全版本通杀)

前言

由于微信客户端(不是小程序)请求加密走的是mmtls而不是标准TLS, 因而导致所有抓包软件均无法正常抓到微信请求, (这就导致我们是难以看到微信内部请求逻辑的).

因此, 本文使用Frida 微信Java层Hook发/收包的方法实现对其请求的抓包.

车载微信版本: wechat-v1.0.13.0.2472-release-202111232123

本文仅用于学习交流,严禁用于非法用途

屏蔽设备校验

如果你在正常手机上使用车载版的微信的话, 你首先得解决这个问题:

使用Jadx打开APK文件, 在资源中搜索"合法性"将会得到:

我们不难看到"设备合法性校验中"的nameash, 在Jadx中搜索.ash可以找到这里:

 复制代码 隐藏代码
package com.tencent.mm.ui;
publicclassLauncherFloatViewextendsFloatView {
/* ...... */
staticvoida(LauncherFloatView launcherFloatView, boolean z, boolean z2, int i) {
                com.tencent.mm.sdk.platformtools.n.i("MicroMsg.LauncherFloatView""ilink auth result: auth_get_result:" + z + " if_auth_pass:" + z2 + " err_code:" + i);
if (launcherFloatView.fCT) {
            launcherFloatView.fCT = false;
if (!z2) { // 验证失败
                launcherFloatView.b(falsefalse, z ? launcherFloatView.getResources().getString(R.string.asf) + "(" + i + ")" : launcherFloatView.getResources().getString(R.string.asg));
            } elseif (launcherFloatView.aaw()) { // 验证通过
                launcherFloatView.b(falsetrue"");
                launcherFloatView.aat(); // 这个不能忘哦
            }
        }
    }
// 当z为true时提示"合法性校验中", z2为true时提示"扫码登录微信"
privatevoidb(boolean z, boolean z2, String str) {
if (z) {
            aax();
            aaC();
            ((TextView) this.fCF.findViewById(R.id.sq)).setText(R.string.ash);
            a(this.fCF.findViewById(R.id.sn), this.fCQ);
this.fCF.setVisibility(0);
return;
        }
if (z2) {
            aax();
            aaC();
            ((TextView) this.fCF.findViewById(R.id.sq)).setText(R.string.bfn);
            bS(this.fCF.findViewById(R.id.sn));
this.fCF.setVisibility(8);
return;
        }
if (!this.fCU) {
this.fCU = true;
            aax();
            p.a(str, ""nullnullfalse);
        }
    }
}

看到这顿时就豁然开朗了, 只要直接让他调用aat就可以了, 校验解决!

 复制代码 隐藏代码
Java.perform(function () {
letLauncherFloatView = Java.use("com.tencent.mm.ui.LauncherFloatView");
LauncherFloatView["b"].overload('boolean''boolean''java.lang.String').implementation = function (z, z2, str) {
console.log(`LauncherFloatView.b is called: z=${z}, z2=${z2}, str=${str}`);
this["b"](falsetrue, str);
this.aat()
    };
})

获取日志

那么从哪入手呢? 留意一下刚才的代码吧!

 复制代码 隐藏代码
package com.tencent.mm.ui;
publicclassLauncherFloatViewextendsFloatView {
/* ...... */
staticvoida(LauncherFloatView launcherFloatView, boolean z, boolean z2, int i) {
        com.tencent.mm.sdk.platformtools.n.i("MicroMsg.LauncherFloatView""ilink auth result: auth_get_result:" + z + " if_auth_pass:" + z2 + " err_code:" + i);
    }
}

看到这里的日志了吗, 像这样的日志无处不在哦, 我们只要Hook一下下就能看到日志了~

跟过去看一下:

 复制代码 隐藏代码
package com.tencent.mm.sdk.platformtools;
publicfinalclassn {
/* ... */
publicstaticvoidi(String str, String str2) {i(str, str2, null);}
publicstaticvoidd(String str, String str2) {d(str, str2, null);}
// INFO日志, str: TAG, str2: 日志内容, objArr(用于填充str2中占位符)
publicstaticvoidi(String str, String str2, Object... objArr) {/* ... */}
// DEBUG日志, 同理
publicstaticvoidd(String str, String str2, Object... objArr) {/*...*/}
}

Frida一下吧, 只需要DEBUG和INFO级别的日志就可以了 (不知道为什么, 有时候成功有时候却不行, 如果微信一启动就显示出很多的日志就表示成功了):

 复制代码 隐藏代码
Java.perform(function () {
let n = Java.use("com.tencent.mm.sdk.platformtools.n");
    n["d"].overload('java.lang.String''java.lang.String''[Ljava.lang.Object;').implementation = function (str, str2, objArr) {
console.log(`[D][${str}${str2}${objArr}`);
this["d"](str, str2, objArr);
    };
    n["i"].overload('java.lang.String''java.lang.String''[Ljava.lang.Object;').implementation = function (str, str2, objArr) {
console.log(`[I][${str}${str2}${objArr}`);
this["i"](str, str2, objArr);
    };

})

请求抓包

分析日志

 复制代码 隐藏代码
......
[I][MicroMsg.Cgi] Start doScene:%d func:%d netid:%dtime:%d9929498,503,0,26
[I][MicroMsg.RemoteResp] bufToResp unpack ret[%b], jType[%d], noticeid[%d], headExtFlags[%d] true,503,0,255
[I][MicroMsg.RemoteResp] bufToResp using protobuf ok jType:%d, enType:%d errCode:%d, len:%d, headExtFlags:%d503,3,0,244,255
[I][MicroMsg.Cgi] onGYNetEnd:%d func:%dtime:%d [%d,%d,%s9929498,503,246,0,0,
......
[I][MicroMsg.RunCgi] Start doScene:%d func:%d netid:%dtime:%d245210210,684,3,124
......
[I][MicroMsg.RunCgi] onGYNetEnd:%d func:%dtime:%d [%d,%d,%s245210210,684,283,0,0,
......

不难发现, 每次发送和接收都会经过MicroMsg.CgiMicroMsg.RunCgi, 只要在这两处Hook是不是就可以了呢?

分析代码

搜索字符串可以定位到此处:

 复制代码 隐藏代码
package com.tencent.mm.q;
publicclassa<_Resp extendshv> {
/* ... */
publicstaticclassb<_Resp extendshvextendsk {
        com.tencent.mm.q.b cJB;
        com.tencent.mm.vending.g.b cJC;
        a cJD;
ecJz=null;
finalkcJA=this;
finallongmStartTime= aq.XI();
private com.tencent.mm.network.kcJE=newcom.tencent.mm.network.k() { // from class: com.tencent.mm.q.a.b.1
@Override// com.tencent.mm.network.k
publicfinalvoida(int i, int i2, int i3, String str, com.tencent.mm.network.q qVar, byte[] bArr) {
                com.tencent.mm.vending.g.g.a(b.this.cJC, C0315a.a(i2, i3, str, (hv) b.this.cJB.cJH.cJP, b.this, b.this.cJD));
                b.this.cJz.a(i2, i3, str, b.this.cJA);
                com.tencent.mm.sdk.platformtools.n.i("MicroMsg.Cgi""onGYNetEnd:%d func:%d time:%d [%d,%d,%s]", Integer.valueOf(b.this.cJA.hashCode()), Integer.valueOf(b.this.cJB.cJI), Long.valueOf(aq.XI() - b.this.mStartTime), Integer.valueOf(i2), Integer.valueOf(i3), str);  // 日志位置
            }
        };

@Override// com.tencent.mm.q.k
publicfinalinta(com.tencent.mm.network.e eVar, e eVar2) {
this.cJz = eVar2;
inta2= a(eVar, this.cJB, this.cJE);
            com.tencent.mm.sdk.platformtools.n.i("MicroMsg.Cgi""Start doScene:%d func:%d netid:%d time:%d", Integer.valueOf(this.cJA.hashCode()), Integer.valueOf(this.cJB.cJI), Integer.valueOf(a2), Long.valueOf(aq.XI() - this.mStartTime)); // 日志, func表示cgi号, this.cJB是重点
if (a2 < 0) {
                com.tencent.mm.vending.g.g.a(this.cJC, C0315a.a(3, -1"", (hv) this.cJB.cJH.cJP, thisthis.cJD));
            }
return a2;
        }
    }
}

继续追踪com.tencent.mm.q.b cJB

 复制代码 隐藏代码
package com.tencent.mm.q;

publicfinalclassbextendsi {
public C0316b cJG; // 请求Protobuf, 调用Ep()得到请求体
public c cJH; // 响应Protobuf, 调用cJP.toBytesArray()得到响应体(原因见下)
public String uri; // 请求的uri
privateint cJI; // 请求cgi
/* ...... */

privateb(com.tencent.mm.ag.a aVar, com.tencent.mm.ag.a aVar2, String str, int i, int i2, int i3, boolean z) {
/* ...... */
this.cJG = newC0316b(aVar, i, i2, z2);
this.cJH = newc(aVar2, i3, z);
this.uri = str;
this.cJI = i;
    }
publicstaticfinalclassC0316bextendsg.d implementsg.b {
privateint cJI;
public com.tencent.mm.ag.a cJP;
privateboolean cJQ;
publicint cmdId;
publicC0316b(com.tencent.mm.ag.a aVar, int i, int i2, boolean z) {
this.cJP = aVar;
this.cJI = i;
this.cmdId = i2;
this.cJQ = z;
        }
/* ...... */
// Protobuf实现中的toBytesArray, 调用即可
@Override
publicfinalbyte[] Ep() {
if (this.cJP instanceof ho) {
                ((ho) this.cJP).eTu = com.tencent.mm.protocal.g.a(this);
            }
returnthis.cJP.toByteArray(); // 这里cJP和下面cJP类型一样, 都有这个函数
        }
    }
publicstaticfinalclasscextendsg.e implementsg.c {
public com.tencent.mm.ag.a cJP;
privateboolean cJQ;
publicint cmdId;
publicc(com.tencent.mm.ag.a aVar, int i, boolean z) {
this.cJP = null;
this.cJP = aVar;
this.cmdId = i;
this.cJQ = z;
        }
// Protobuf实现中的parseFrom
@Override
publicfinalintA(byte[] bArr) {
this.cJP = this.cJP.T(bArr);
if (this.cJP instanceof ih) {
return ((ih) this.cJP).getRet();
            }
            com.tencent.mm.protocal.g.a(this, ((hv) this.cJP).eTO);
return ((hv) this.cJP).eTO.eHv;
        }
    }
}

写个Hook吧

 复制代码 隐藏代码
// Jadx生成的代码, 手改了改, 可能有点乱, 见谅
Java.perform(function () {
functionjavaByteArrayToJsArray(javaByteArray) {
const len = javaByteArray.length;
const jsArr = newArray(len);
for (let i = 0; i < len; i++) jsArr[i] = javaByteArray[i] & 0xFF;
return jsArr;
    }

// MicroMsg.Cgi
let b = Java.use("com.tencent.mm.q.a$b");
    b["a"].implementation = function (eVar, eVar2) {
console.log(`CGIReq [${this.cJA.value.hashCode()}][CGI=${this.cJB.value.cJI.value}]${this.cJB.value.uri.value} DATA:`)
letRes = this.cJB.value.cJG.value.Ep()
let jsArr = javaByteArrayToJsArray(Res);
const ptrBuf = Memory.alloc(Res.length);
Memory.writeByteArray(ptrBuf, jsArr);
console.log(jsArr)
console.log(hexdump(ptrBuf, {
offset0,
lengthRes.length,
headertrue,
ansitrue
        }));
let result = this["a"](eVar, eVar2);
return result;
    };
letAnonymousClass1 = Java.use("com.tencent.mm.q.a$b$1");
AnonymousClass1["a"].implementation = function (i, i2, i3, str, qVar, bArr) {
console.log(`CGIResp [${this.cJF.value.cJA.value.hashCode()}][CGI=${this.cJF.value.cJB.value.cJI.value}]${this.cJF.value.cJB.value.uri.value} DATA:`)
letRes = this.cJF.value.cJB.value.cJH.value.cJP.value.toByteArray()
let jsArr = javaByteArrayToJsArray(Res);
const ptrBuf = Memory.alloc(Res.length);
Memory.writeByteArray(ptrBuf, jsArr);
console.log(jsArr)
console.log(hexdump(ptrBuf, {
offset0,
lengthRes.length,
headertrue,
ansitrue
        }));
this["a"](i, i2, i3, str, qVar, bArr);
    };

// MicroMsg.RunCgi
letRCAnonymousClass1 = Java.use("com.tencent.mm.q.u$1");
RCAnonymousClass1["a"].implementation = function (eVar, eVar2) {
console.log(`RunCGIReq [${this.cLn.value.hashCode()}][CGI=${this.cLq.value.cJI.value}]${this.cLq.value.uri.value} DATA:`)
letRes = this.cLq.value.cJG.value.Ep()
let jsArr = javaByteArrayToJsArray(Res);
const ptrBuf = Memory.alloc(Res.length);
Memory.writeByteArray(ptrBuf, jsArr);
console.log(jsArr)
console.log(hexdump(ptrBuf, {
offset0,
lengthRes.length,
headertrue,
ansitrue
        }));
let result = this["a"](eVar, eVar2);
return result
    };
letC03181 = Java.use("com.tencent.mm.q.u$1$1");
C03181["a"].implementation = function (i, i2, i3, str, qVar, bArr) {
console.log(`RunCGIResp [${this.cLt.value.cLn.value.hashCode()}][CGI=${this.cLt.value.cLq.value.cJI.value}]${this.cLt.value.cLq.value.uri.value} DATA:`)
letRes = this.cLt.value.cLq.value.cJH.value.cJP.value.toByteArray()
let jsArr = javaByteArrayToJsArray(Res);
const ptrBuf = Memory.alloc(Res.length);
Memory.writeByteArray(ptrBuf, jsArr);
console.log(jsArr)
console.log(hexdump(ptrBuf, {
offset0,
lengthRes.length,
headertrue,
ansitrue
        }));
this["a"](i, i2, i3, str, qVar, bArr);
    };
})

成果展示

抓包得到的Protobuf建议结合网上公开的微信协议源码看, 这样可以把抓到的和源码中的结构对照一下, 方便加深理解.

(我看了一下, 任何版本的微信你只要找到特征改一下就照样可以抓)

最新文章

随机文章

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