当前位置:首页>iOSAPP>iOS逆向_古法逆向_Instagram最新版抓包

iOS逆向_古法逆向_Instagram最新版抓包

  • 2026-03-26 09:20:15
iOS逆向_古法逆向_Instagram最新版抓包

知识点

  1. 1. Frida hook资源加载定位CACerts.plist
  2. 2. IDA交叉引用找到核心验证函数
  3. 3. Hook该函数返回0绕过SSL Pinning

参考

https://mp.weixin.qq.com/s/y12SCO7PMwNnKLuvrA2ijA  【iOS逆向】Instagram抓包小记

环境

抓包:mitmproxy

版本:419.0.0

重点是学习抓包。

使用之前老的方法已经不能够进行抓包了,所以来研究下新的抓包方案。

根据参考文章,

用 Frida hook NSBundle pathForResource:ofType:,运行时观察 App 加载了哪些资源文件:

运行的时候记得先暂时不要开抓包。

var NSBundle = ObjC.classes.NSBundle['- pathForResource:ofType:'].implementation;

Interceptor
.attach(NSBundle, {
    onEnter
: function (args) {
        var
 source = ObjC.Object(args[2]);
        console
.log(`pathForResource: ${ObjC.Object(args[2])} ofType: ${ObjC.Object(args[3])}`);
    },
    onLeave
: function (retval) {
    }
})

输出如下

muyang@Mac-Pro ins % frida -U -f com.burbn.instagram -l ssl.js
     ____
    / _  |   Frida 16.7.19 - A world-class dynamic instrumentation toolkit
   | (_| |
    > _  |   Commands:
   /_/ |_|       help      -> Displays the help system
   . . . .       object?   -> Display information about 'object'
   . . . .       exit/quit -> Exit
   . . . .
   . . . .   More info at https://frida.re/docs/home/
   . . . .
   . . . .   Connected to iPhone (id=d4be7c38721a15dd242e268d99e4700afd6e1521)
Spawned `com.burbn.instagram`. Resuming main thread!                    
[iPhone::com.burbn.instagram ]-> pathForResource: SessionlessLatencyConfig ofType: json.gz
pathForResource: zh-Hans ofType: lproj
pathForResource: fbt_language_pack ofType: bin
pathForResource: ds ofType: g10p
pathForResource: metal_rt ofType: metallib
pathForResource: IGTabBarController ofType: nib
pathForResource: IGTabBar ofType: nib
pathForResource: IGMainAppScrollingContainerViewController ofType: nib
pathForResource: IGMainAppScrollingContainerView ofType: nib
pathForResource: CACerts ofType: plist
pathForResource: FacebookSDKStrings ofType: bundle
pathForResource: prepackaged_bloks_config ofType: json

重点关注 CACerts,在ins目录下可以找到该文件。

CACerts.plist 是什么?

这是 Instagram 自带的 CA 根证书信任列表(Certificate Authority Root Certificates)。

具体来说:

内容

  • • 一个 plist 数组,包含了 143 个 DER 编码的 X.509 CA 根证书
  • • 里面的证书包括各种知名 CA,例如:
    • • COMODO RSA / ECC Certification Authority
    • • GlobalSign Root CA
    • • Telia Root CA
    • • Buypass Class 2 Root CA
    • • Go Daddy Root Certificate Authority
    • • ……等等

作用:SSL Certificate Pinning(证书锁定)

Instagram 不依赖系统的根证书信任链,而是自己打包了一套受信任的 CA 根证书。这是典型的 SSL/TLS Certificate Pinning 策略:

  1. 1. 防中间人攻击:App 只信任这 143 个 CA 签发的证书链,即使你在系统级安装了自己的 CA 证书(如 Charles / mitmproxy 的证书),Instagram 也不会信任
  2. 2. 绕过系统信任链:iOS 系统信任存储里的证书变更不会影响 Instagram 的 TLS 验证
  3. 3. 核心用途:在建立 HTTPS 连接时,Instagram 用这些证书来验证服务器的证书链是否可信

对逆向/抓包的意义

这就是为什么 直接装 Charles/mitmproxy 证书抓不了 Instagram 的包 的原因之一——App 内部有自己的信任锚点(Trust Anchor)。要抓包 Instagram,通常需要:

  • • 用 Frida hook 掉 SSL 验证逻辑
  • • 或者 直接 patch 这个 CACerts.plist,把你的抓包工具的 CA 证书加进去
  • • 或者 hook SecTrustEvaluate 等系统 API 让验证永远返回成功

你 Frida hook 到的 pathForResource: CACerts ofType: plist 就是 Instagram 在启动时加载这个自定义信任列表的过程。


定位

但是我们不用文章接下去的方法,因为我测试是没有成功的,并且 文章说的 X509_verify_cert 我测试的时候如果证书没过是没有调用的。所以去其他的方法。

既然我们已经拿到了证书名称,接着我们去询问Ai,开发的过程中

反重力 opus4.6 模型

CACerts.plist  一般怎么传递校验的,写一段代码看下

接下来是Ai的回答

好的,下面是 Instagram 这种 App 使用 CACerts.plist 进行 SSL Certificate Pinning 的典型实现流程:

1. 加载阶段(启动时执行一次)

// IGCertificatePinningManager.m
@interface IGCertificatePinningManager : NSObject

@property
 (nonatomic, strong) NSArray<SecCertificateRef> *pinnedCACerts;
+ (instancetype)sharedInstance;
@end

@implementation IGCertificatePinningManager

+ (instancetype)sharedInstance {
    static
 IGCertificatePinningManager *instance;
    static
 dispatch_once_t onceToken;
    dispatch_once
(&onceToken, ^{
        instance = [[self alloc] init];
    });
    return
 instance;
}

- (instancetype)init {
    self
 = [super init];
    if
 (self) {
        [self loadPinnedCertificates];  // 启动时加载一次
    }
    return
 self;
}

- (void)loadPinnedCertificates {
    // ========== 这就是你 hook 到的那一次调用 ==========

    NSString
 *path = [[NSBundle mainBundle] pathForResource:@"CACerts" ofType:@"plist"];
    // 读取 plist —— 得到一个 NSArray<NSData *>(143个 DER 编码的证书)

    NSArray
<NSData *> *certDataArray = [NSArray arrayWithContentsOfFile:path];
    // 把 NSData 转换成 SecCertificateRef 对象,缓存到内存

    NSMutableArray
 *certs = [NSMutableArray array];
    for
 (NSData *certData in certDataArray) {
        SecCertificateRef cert = SecCertificateCreateWithData(NULL, (__bridge CFDataRef)certData);
        if
 (cert) {
            [certs addObject:(__bridge id)cert];
            CFRelease
(cert);
        }
    }
    self
.pinnedCACerts = [certs copy];  // 缓存,后续不再读文件
    NSLog
(@"Loaded %lu pinned CA certificates", (unsigned long)self.pinnedCACerts.count);

}
@end

2. 验证阶段(每次 HTTPS 请求都执行)

// NSURLSession 的认证挑战代理方法
- (void)URLSession:(NSURLSession *)session
    didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge
      completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential *))completionHandler
{
    if
 ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {
        SecTrustRef serverTrust = challenge.protectionSpace.serverTrust;
        // ========== 核心:用自带的 CA 列表替代系统默认的信任锚点 ==========

        NSArray
 *pinnedCerts = [IGCertificatePinningManager sharedInstance].pinnedCACerts;
        // 设置自定义锚点证书(只信任这 143 个 CA)

        OSStatus status = SecTrustSetAnchorCertificates(serverTrust, (__bridge CFArrayRef)pinnedCerts);
        // 关键!设为 YES = 只信任我们提供的锚点;设为 NO = 同时也信任系统证书

        SecTrustSetAnchorCertificatesOnly(serverTrust, true);
        // 执行证书链验证

        CFErrorRef
 error = NULL;
        bool
 trusted = SecTrustEvaluateWithError(serverTrust, &error);
        if
 (trusted) {
            // ✅ 服务器证书链可以追溯到我们 CACerts.plist 中的某个 CA

            NSURLCredential
 *credential = [NSURLCredential credentialForTrust:serverTrust];
            completionHandler(NSURLSessionAuthChallengeUseCredential, credential);
        } else {
            // ❌ 验证失败 —— 证书链不在我们的信任列表里

           // 比如你用 Charles 代理,Charles 的 CA 不在这 143 个里面,就会走到这里

            NSLog
(@"SSL Pinning 验证失败: %@", error);
            completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);
        }
    } else {
        completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
    }
}

3. 整个流程图

App 启动
   │
   ▼
pathForResource:@"CACerts" ofType:@"plist"    ← 你 hook 到的就是这一步(只调用1次)
   │
   ▼
读取 plist → 143 个 NSData (DER 证书)
   │
   ▼
转换为 SecCertificateRef 数组 → 缓存到单例内存
   │
   ╔══════════════════════════════════════════════════╗
   ║  之后每次 HTTPS 请求(循环多次):                   ║
   ║                                                  ║
   ║  服务器返回证书 → SecTrustRef                      ║
   ║       │                                          ║
   ║       ▼                                          ║
   ║  SecTrustSetAnchorCertificates(trust, 缓存的CA)   ║
   ║       │                                          ║
   ║       ▼                                          ║
   ║  SecTrustSetAnchorCertificatesOnly(trust, true)  ║
   ║       │                                          ║
   ║       ▼                                          ║
   ║  SecTrustEvaluateWithError()                     ║
   ║       │                                          ║
   ║    ┌──┴──┐                                       ║
   ║    ▼     ▼                                       ║
   ║  ✅信任  ❌拒绝(如 Charles/mitmproxy 的证书)      ║
   ╚══════════════════════════════════════════════════╝

4. 绕过方式(Frida hook 关键点)

// 方式1:hook SecTrustEvaluateWithError,让它永远返回 true
Interceptor
.attach(Module.findExportByName(null, "SecTrustEvaluateWithError"), {
    onLeave
: function(retval) {
        retval.replace(0x1);  // 返回 true,表示信任
    }
});


// 方式2:hook SecTrustSetAnchorCertificates,阻止设置自定义锚点

Interceptor
.attach(Module.findExportByName(null, "SecTrustSetAnchorCertificates"), {
    onEnter
: function(args) {
        // 不设置自定义锚点,让系统用默认信任存储(包含你安装的 Charles CA)

    },
    onLeave
: function(retval) {
        retval.replace(0x0);  // 返回 errSecSuccess
    }
});


// 方式3:hook SecTrustSetAnchorCertificatesOnly,允许系统证书

Interceptor
.attach(Module.findExportByName(null, "SecTrustSetAnchorCertificatesOnly"), {
    onEnter
: function(args) {
        args[1] = ptr(0x0);  // 改为 false,同时信任系统证书
    }
});

核心思路:两个关键 API 是 SecTrustSetAnchorCertificates(设置自定义 CA 列表)和 SecTrustSetAnchorCertificatesOnly(是否排斥系统证书)。只要 hook 掉这两个中的任意一个,就能让系统同时信任你安装的 Charles/mitmproxy 证书。

但是上面的frida代码并不能过掉代理校验,我们去打开IDA分析其他的方法看有无。


从上面的关键API入手。搜索 SecTrustSetAnchorCertificates 定位到如下函数

// attributes: thunk
OSStatus __cdecl SecTrustSetAnchorCertificates(SecTrustRef trust, CFArrayRef anchorCertificates)
{
  return
 _SecTrustSetAnchorCertificates(trust, anchorCertificates);
}

查看交叉引用。定位到 sub_46B8D4 这个函数

该函数有什么特点了?有许多验证相关的字符串。下面的 sub_760CDC 没有这些字符串。

可以询问AI sub_46B8D4 函数的作用是什么。

5.sub_46B8D4 — MNSCertificateVerifier 核心证书验证函数

这个函数位于 FBSharedFramework 中,是 Instagram/Facebook 自研的证书验证器,函数签名大致为:

int64_t MNSCertificateVerifier_verify(void *self, CFArrayRef certChain, CFStringRef hostname)

执行流程

1. CRL 吊销检查(0x46B918 - 0x46B968)

  • • 从证书链取第一个证书(叶子证书),提取序列号
  • • 调用 MNSCertificateVerifierAppleCrlUtil 处理序列号
  • • 检查 self+224 处的 CFSet(吊销列表),如果证书序列号在集合中 → 返回错误 "Certificate is revoked."

2. 创建 SecTrust 并做标准验证(0x46B978 - 0x46B9B8)

  • • SecPolicyCreateSSL(true, hostname) — 创建 SSL 策略,绑定域名
  • • SecTrustCreateWithCertificates(certChain, policy, &trust) — 创建信任对象
  • • 如果 self+24(一个 flag)为 true,会走一段特殊逻辑:调用 SecTrustSetAnchorCertificates 设置自定义锚点证书,然后 SecTrustSetAnchorCertificatesOnly(trust, false) 允许系统证书也参与验证
  • • SecTrustEvaluateWithError(trust, &error) — 执行标准 iOS 证书链验证

3. 域名白名单匹配(0x46B9E4 - 0x46BA4C)

  • • 将 hostname 转为 C 字符串
  • • 遍历 self+32 处的一个数组(最多 24 个条目,每条 64 字节),逐一与 hostname 比较
  • • 支持两种匹配:精确 strcmp 和通配符 sub_51C1F4(可能是 wildcard match)
  • • 如果 hostname 不在白名单中(index > 0x17),直接跳过 pinning 检查,返回成功

4. 过期时间检查(0x46BA7C)

  • • 如果 self+16 有一个 CFDate,检查当前时间是否已超过该日期
  • • 超过则跳过 pinning,返回成功(相当于 pinning 有"有效期")

5. 证书 Pin 验证 — 核心(0x46BA80 - 0x46BAF8)

  • • 遍历信任链中的每个证书
  • • 对每个证书调用 sub_3AF0B0(很可能是计算证书的 SHA256 指纹)
  • • 将指纹与 off_2218550 处存储的 18 个预置 pin 值(144 / 8 = 18 个指针)逐一比较
  • • 如果任一证书的指纹匹配任一 pin → 验证通过,返回 0(成功)
  • • 如果 self+24 flag 为 true,还会尝试用证书数据重新构造证书再比较一次
  • • 全部不匹配 → 返回错误 "Pinning validation failed."

两个调用者

sub_3B8158 — TLS 握手阶段的证书验证回调

  • • 先做一次快速检查(sub_51BCCC),如果通过就跳过
  • • 否则调用 sub_46B8D4 做完整验证
  • • 验证失败返回 0xFFFFFFFF(-1),成功返回 0

sub_130E120 — TLS 1.3 CertificateVerify 签名验证

  • • 先验证签名(SecKeyVerifySignature),支持 ECDSA-SHA256/384/512 和 RSA-PSS-SHA256
  • • 签名验证通过后,再调用 sub_46B8D4 做证书 pinning 检查
  • • 这是 Fizz(Facebook 的 TLS 1.3 实现)的验证路径

关键结论

这个函数就是 Instagram SSL Pinning 的核心。要绕过它,有三个切入点:

  1. 1. off_2218550 — 存储了 18 个预置的证书指纹 pin 值,这就是 CACerts.plist  里那些 SHA256 hash 对应的运行时数据。替换 CACerts.plist ` 文件本质上就是替换这些 pin 值。
  2. 2. 直接 hook sub_46B8D4 让它返回 0 — 这是最直接的方式,一个 hook 点搞定。
  3. 3. 域名白名单和过期时间机制 — 如果 hostname 不在白名单或 pin 已过期,函数会自动放行。
Interceptor.attach(Module.findBaseAddress("FBSharedFramework").add(0x46b8d4), {
    onEnter
: function(args) {
        // 不设置自定义锚点,让系统用默认信任存储(包含你安装的 Charles CA)

    },
    onLeave
: function(retval) {
        console
.log("0x46b8d4",retval)
        retval.replace(0x0);  // 返回 errSecSuccess
    }
});

这样就可以抓到包了。


后续如果更新。

思路一:从字符串入手(最常用)

"Pinning validation failed"
"Certificate is revoked"
"verify/trust init failed"

这个函数里有 "Pinning validation failed." 和 "Certificate is revoked.",非常明显。

思路二:从 API 调用入手

SSL 验证绕不开这几个系统 API:

  • • SecTrustEvaluateWithError
  • • SecTrustCreateWithCertificates
  • • SecTrustSetAnchorCertificates
  • • SecPolicyCreateSSL

在 IDA 里对这些函数按 X 查交叉引用,看谁调用了它们。

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-03-26 10:38:12 HTTP/2.0 GET : https://c.mffb.com.cn/a/478711.html
  2. 运行时间 : 0.075312s [ 吞吐率:13.28req/s ] 内存消耗:4,308.73kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=0f468d449c2eb16e95ac9835f16937a1
  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.000480s ] mysql:host=127.0.0.1;port=3306;dbname=c_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000523s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000271s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000272s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000523s ]
  6. SELECT * FROM `set` [ RunTime:0.000217s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000567s ]
  8. SELECT * FROM `article` WHERE `id` = 478711 LIMIT 1 [ RunTime:0.000511s ]
  9. UPDATE `article` SET `lasttime` = 1774492692 WHERE `id` = 478711 [ RunTime:0.000950s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 65 LIMIT 1 [ RunTime:0.000302s ]
  11. SELECT * FROM `article` WHERE `id` < 478711 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000458s ]
  12. SELECT * FROM `article` WHERE `id` > 478711 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000334s ]
  13. SELECT * FROM `article` WHERE `id` < 478711 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.000788s ]
  14. SELECT * FROM `article` WHERE `id` < 478711 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.000588s ]
  15. SELECT * FROM `article` WHERE `id` < 478711 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.000615s ]
0.076977s