乐于分享
好东西不私藏

浅探APP

浅探APP

脱壳反编译查找加密逻辑

package com.mob.tools.utils;import android.text.TextUtils;import android.util.Base64;import com.mob.commons.p;import com.mob.commons.t;import com.mob.tools.MobLog;import com.mob.tools.proguard.PublicMemberKeeper;import java.io.ByteArrayInputStream;import java.io.File;import java.io.FileInputStream;import java.io.InputStream;import java.io.OutputStream;import java.net.URLEncoder;import java.security.MessageDigest;import java.security.Provider;import java.security.Security;import java.util.zip.CRC32;import javax.crypto.Cipher;import javax.crypto.CipherInputStream;import javax.crypto.spec.SecretKeySpec;import org.apache.commons.lang3.StringUtils;/* loaded from: C:\Users\A\Desktop\新建文件夹 (3)\APP\classes9.dex */public class Data implements PublicMemberKeeper {    public static String AES128Decode(String str, byte[] bArr) throws Throwable {        if (str == null || bArr == null) {            return null;        }        return new String(AES128Decode(str.getBytes("UTF-8"), bArr), "UTF-8");    }    public static byte[] AES128Encode(String str, String str2) throws Throwable {        if (str == null || str2 == null) {            return null;        }        byte[] bytes = str.getBytes("UTF-8");        byte[] bArr = new byte[16];        System.arraycopy(bytes, 0, bArr, 0, Math.min(bytes.length, 16));        byte[] bytes2 = str2.getBytes("UTF-8");        SecretKeySpec secretKeySpec = new SecretKeySpec(bArr, p.b("003Odkfddi"));        Cipher cipher = getCipher(p.b("003Gdkfddi") + p.b("003k:fdfg") + p.b("008%eh)k:fhgjfgdihhfh") + p.b("006c[cbcbch]d dd"), p.b("0024ehfg"));        cipher.init(1, secretKeySpec);        byte[] bArr2 = new byte[cipher.getOutputSize(bytes2.length)];        cipher.doFinal(bArr2, cipher.update(bytes2, 0, bytes2.length, bArr2, 0));        return bArr2;    }    public static String AES128PaddingDecode(byte[] bArr, byte[] bArr2) throws Throwable {        if (bArr == null || bArr2 == null) {            return null;        }        byte[] bArr3 = new byte[16];        System.arraycopy(bArr, 0, bArr3, 0, Math.min(bArr.length, 16));        SecretKeySpec secretKeySpec = new SecretKeySpec(bArr3, p.b("003Sdkfddi"));        Cipher cipher = getCipher(p.b("003Zdkfddi") + p.b("003k@fdfg") + p.b("008EehPkMfhgjfgdihhfh") + p.b("006cHcbcbch)d]dd"), p.b("002$ehfg"));        cipher.init(2, secretKeySpec);        return new String(cipher.doFinal(bArr2), "UTF-8");    }    @Deprecated    public static String Base64AES(String str, String str2) {        if (str == null || str2 == null) {            return null;        }        try {            String encodeToString = Base64.encodeToString(AES128Encode(str2, str), 0);            return (!TextUtils.isEmpty(encodeToString) && encodeToString.contains(StringUtils.LF)) ? encodeToString.replace(StringUtils.LF, "") : encodeToString;        } catch (Throwable th) {            MobLog.getInstance().w(th);            return null;        }    }    public static String CRC32(byte[] bArr) throws Throwable {        CRC32 crc32 = new CRC32();        crc32.update(bArr);        long value = crc32.getValue();        StringBuilder sb = new StringBuilder();        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 56)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 48)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 40)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 32)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 24)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 16)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) (value >>> 8)) & 255)));        sb.append(String.format("%02x", Integer.valueOf(((byte) value) & 255)));        while (sb.charAt(0) == '0') {            sb = sb.deleteCharAt(0);        }        return sb.toString().toLowerCase();    }    public static String MD5(String str) {        byte[] rawMD5;        if (str == null || (rawMD5 = rawMD5(str)) == null) {            return null;        }        return a(rawMD5);    }    public static byte[] SHA1(String str) throws Throwable {        if (TextUtils.isEmpty(str)) {            return null;        }        return SHA1(str.getBytes("utf-8"));    }    private static String a(byte[] bArr) {        StringBuffer stringBuffer = new StringBuffer();        for (byte b2 : bArr) {            stringBuffer.append(String.format("%02x", Byte.valueOf(b2)));        }        return stringBuffer.toString();    }    public static String byteToHex(byte[] bArr) {        return byteToHex(bArr, 0, bArr.length);    }    public static Cipher getCipher(String str, String str2) throws Throwable {        Cipher cipher = null;        if (!TextUtils.isEmpty(str2)) {            try {                Provider provider = Security.getProvider(str2);                if (provider != null) {                    cipher = Cipher.getInstance(str, provider);                }            } catch (Throwable unused) {            }        }        return cipher == null ? Cipher.getInstance(str, str2) : cipher;    }    public static byte[] rawMD5(String str) {        if (str == null) {            return null;        }        try {            return rawMD5(str.getBytes("utf-8"));        } catch (Throwable th) {            MobLog.getInstance().w(th);            return null;        }    }    public static String urlEncode(String str) {        try {            return urlEncode(str, "utf-8");        } catch (Throwable th) {            MobLog.getInstance().w(th);            return null;        }    }    public static String byteToHex(byte[] bArr, int i, int i2) {        StringBuffer stringBuffer = new StringBuffer();        if (bArr == null) {            return stringBuffer.toString();        }        while (i < i2) {            stringBuffer.append(String.format("%02x", Byte.valueOf(bArr[i])));            i++;        }        return stringBuffer.toString();    }    public static String MD5(byte[] bArr) {        if (bArr == null) {            return null;        }        return MD5(bArr, 0, bArr.length);    }    public static byte[] rawMD5(byte[] bArr) {        if (bArr == null) {            return null;        }        return rawMD5(bArr, 0, bArr.length);    }    public static String urlEncode(String str, String str2) throws Throwable {        String encode = TextUtils.isEmpty(str) ? "" : URLEncoder.encode(str, str2);        return TextUtils.isEmpty(encode) ? encode : encode.replace("+""%20");    }    public static byte[] AES128Decode(byte[] bArr, byte[] bArr2) throws Throwable {        if (bArr == null || bArr2 == null) {            return null;        }        byte[] bArr3 = new byte[16];        System.arraycopy(bArr, 0, bArr3, 0, Math.min(bArr.length, 16));        SecretKeySpec secretKeySpec = new SecretKeySpec(bArr3, p.b("003?dkfddi"));        Cipher cipher = getCipher(p.b("003^dkfddi") + p.b("003k=fdfg") + p.b("005Ueh*k]dgdcfh") + p.b("006cYcbcbch>d_dd"), p.b("002Gehfg"));        cipher.init(2, secretKeySpec);        byte[] bArr4 = new byte[cipher.getOutputSize(bArr2.length)];        cipher.doFinal(bArr4, cipher.update(bArr2, 0, bArr2.length, bArr4, 0));        return bArr4;    }    public static String MD5(byte[] bArr, int i, int i2) {        byte[] rawMD5;        if (bArr == null || (rawMD5 = rawMD5(bArr, i, i2)) == null) {            return null;        }        return a(rawMD5);    }    public static byte[] SHA1(byte[] bArr) throws Throwable {        MessageDigest messageDigest = MessageDigest.getInstance(p.b("005Hdieidkghgb"));        messageDigest.update(bArr);        return messageDigest.digest();    }    public static byte[] rawMD5(byte[] bArr, int i, int i2) {        ByteArrayInputStream byteArrayInputStream;        byte[] bArr2 = null;        if (bArr == null) {            return null;        }        try {            byteArrayInputStream = new ByteArrayInputStream(bArr, i, i2);        } catch (Throwable th) {            th = th;            byteArrayInputStream = null;        }        try {            bArr2 = rawMD5(byteArrayInputStream);            t.a(byteArrayInputStream);        } catch (Throwable th2) {            th = th2;            try {                MobLog.getInstance().w(th);                t.a(byteArrayInputStream);                return bArr2;            } catch (Throwable th3) {                t.a(byteArrayInputStream);                throw th3;            }        }        return bArr2;    }    public static String MD5(File file) {        FileInputStream fileInputStream;        if (file == null || !file.exists()) {            return null;        }        try {            fileInputStream = new FileInputStream(file);        } catch (Throwable th) {            th = th;            fileInputStream = null;        }        try {            byte[] rawMD5 = rawMD5(fileInputStream);            t.a(fileInputStream);            if (rawMD5 == null) {                return null;            }            return a(rawMD5);        } catch (Throwable th2) {            th = th2;            try {                MobLog.getInstance().w(th);                t.a(fileInputStream);                return null;            } catch (Throwable th3) {                t.a(fileInputStream);                throw th3;            }        }    }    public static byte[] rawMD5(InputStream inputStream) {        if (inputStream == null) {            return null;        }        try {            byte[] bArr = new byte[1024];            MessageDigest messageDigest = MessageDigest.getInstance(p.b("003.fiejgd"));            int read = inputStream.read(bArr);            while (read != -1) {                messageDigest.update(bArr, 0, read);                read = inputStream.read(bArr);            }            return messageDigest.digest();        } catch (Throwable th) {            MobLog.getInstance().w(th);            return null;        }    }    public static byte[] AES128Encode(byte[] bArr, String str) throws Throwable {        if (bArr == null || str == null) {            return null;        }        return AES128Encode(bArr, str.getBytes("UTF-8"));    }    public static void AES128Decode(String str, InputStream inputStream, OutputStream outputStream) throws Throwable {        if (str == null) {            return;        }        AES128Decode(str.getBytes("UTF-8"), inputStream, outputStream);    }    public static byte[] AES128Encode(byte[] bArr, byte[] bArr2) throws Throwable {        SecretKeySpec secretKeySpec = new SecretKeySpec(bArr, p.b("003Cdkfddi"));        Cipher cipher = getCipher(p.b("003:dkfddi") + p.b("003k3fdfg") + p.b("008:eh@k4fhgjfgdihhfh") + p.b("006c*cbcbchMdLdd"), p.b("0027ehfg"));        cipher.init(1, secretKeySpec);        byte[] bArr3 = new byte[cipher.getOutputSize(bArr2.length)];        cipher.doFinal(bArr3, cipher.update(bArr2, 0, bArr2.length, bArr3, 0));        return bArr3;    }    public static void AES128Decode(byte[] bArr, InputStream inputStream, OutputStream outputStream) throws Throwable {        CipherInputStream cipherInputStream;        Throwable th;        if (bArr == null || inputStream == null || outputStream == null) {            return;        }        byte[] bArr2 = new byte[16];        System.arraycopy(bArr, 0, bArr2, 0, Math.min(bArr.length, 16));        SecretKeySpec secretKeySpec = new SecretKeySpec(bArr2, p.b("0033dkfddi"));        Cipher cipher = getCipher(p.b("003Gdkfddi") + p.b("003k<fdfg") + p.b("008_eh=k@fhgjfgdihhfh") + p.b("006cIcbcbch<dWdd"), p.b("002,ehfg"));        cipher.init(2, secretKeySpec);        try {            cipherInputStream = new CipherInputStream(inputStream, cipher);        } catch (Throwable th2) {            cipherInputStream = null;            th = th2;        }        try {            byte[] bArr3 = new byte[1024];            for (int read = cipherInputStream.read(bArr3); read != -1; read = cipherInputStream.read(bArr3)) {                outputStream.write(bArr3, 0, read);            }            outputStream.flush();            t.a(cipherInputStream);        } catch (Throwable th3) {            th = th3;            t.a(cipherInputStream);            throw th;        }    }}

通过代码可以看出,这是AES-EBC的加密,直接hook一下

接着在一个图片上传点上传shell,拿下

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-14 18:19:18 HTTP/1.1 GET : https://www.yeyulingfeng.com/a/526948.html
  2. 运行时间 : 0.110037s [ 吞吐率:9.09req/s ] 内存消耗:4,761.82kb 文件加载:145
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=e8fb95f755c40398badc4fb2a7dc09fc
  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.000546s ] mysql:host=127.0.0.1;port=3306;dbname=wenku;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000786s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000289s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000294s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000566s ]
  6. SELECT * FROM `set` [ RunTime:0.000211s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000614s ]
  8. SELECT * FROM `article` WHERE `id` = 526948 LIMIT 1 [ RunTime:0.000439s ]
  9. UPDATE `article` SET `lasttime` = 1776161958 WHERE `id` = 526948 [ RunTime:0.008553s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.000323s ]
  11. SELECT * FROM `article` WHERE `id` < 526948 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000483s ]
  12. SELECT * FROM `article` WHERE `id` > 526948 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000458s ]
  13. SELECT * FROM `article` WHERE `id` < 526948 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.006774s ]
  14. SELECT * FROM `article` WHERE `id` < 526948 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.006540s ]
  15. SELECT * FROM `article` WHERE `id` < 526948 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.008427s ]
0.112227s