zhang0459 发表于 2022-12-10 19:20

MT管理器dex里找不到关键字。在ext.json文件里有是咋回事?

本帖最后由 zhang0459 于 2022-12-11 14:13 编辑

ext.json这个文件都是,这是调用的么。还是咋回事。

xml文件里
android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
    <application
      android:label="替换名字"
      android:icon="@7F080000"
      android:hardwareAccelerated="true"
      android:usesCleartextTraffic="true"
      android:networkSecurityConfig="@7F0C0002"
      android:appComponentFactory="androidx.core.app.CoreComponentFactory"
      android:requestLegacyExternalStorage="true">
      <provider
            android:name="androidx.core.content.FileProvider"
            android:exported="false"
            android:authorities="vip.lgsgd.qfzwak.fileProvider"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@7F0C0000" />
      </provider>
      <activity
            android:theme="@7F0A0000"
            android:name="com.tbone.zpcpj.MainActivity"
            android:launchMode="1"
            android:configChanges="0x40003FB4"
            android:windowSoftInputMode="0x00000010">
            <meta-data
                android:name="io.flutter.embedding.android.NormalTheme"
                android:resource="@7F0A0001" />
            <meta-data
                android:name="io.flutter.embedding.android.SplashScreenDrawable"
                android:resource="@7F040002" />
            <intent-filter>
                <action
                  android:name="android.intent.action.MAIN" />
                <category
                  android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
      </activity>
      <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
      <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />
      <activity
            android:theme="@01030007"
            android:name="io.flutter.plugins.urllauncher.WebViewActivity"
            android:exported="false" />
      <provider
            android:name="io.flutter.plugins.imagepicker.ImagePickerFileProvider"
            android:exported="false"
            android:authorities="vip.lgsgd.qfzwak.flutter.image_provider"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@7F0C0001" />
      </provider>
    </application>
</manifest>

zhang0459 发表于 2022-12-11 14:07

小骚 发表于 2022-12-11 13:41
首先MT不能识别所有加固,其次我说的是你可以发部分代码,比如Application内的代码就能看出来是否加固

好的大佬。
android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
    <application
      android:label="替换名字了"
      android:icon="@7F080000"
      android:hardwareAccelerated="true"
      android:usesCleartextTraffic="true"
      android:networkSecurityConfig="@7F0C0002"
      android:appComponentFactory="androidx.core.app.CoreComponentFactory"
      android:requestLegacyExternalStorage="true">
      <provider
            android:name="androidx.core.content.FileProvider"
            android:exported="false"
            android:authorities="vip.lgsgd.qfzwak.fileProvider"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@7F0C0000" />
      </provider>
      <activity
            android:theme="@7F0A0000"
            android:name="com.tbone.zpcpj.MainActivity"
            android:launchMode="1"
            android:configChanges="0x40003FB4"
            android:windowSoftInputMode="0x00000010">
            <meta-data
                android:name="io.flutter.embedding.android.NormalTheme"
                android:resource="@7F0A0001" />
            <meta-data
                android:name="io.flutter.embedding.android.SplashScreenDrawable"
                android:resource="@7F040002" />
            <intent-filter>
                <action
                  android:name="android.intent.action.MAIN" />
                <category
                  android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
      </activity>
      <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
      <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />
      <activity
            android:theme="@01030007"
            android:name="io.flutter.plugins.urllauncher.WebViewActivity"
            android:exported="false" />
      <provider
            android:name="io.flutter.plugins.imagepicker.ImagePickerFileProvider"
            android:exported="false"
            android:authorities="vip.lgsgd.qfzwak.flutter.image_provider"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@7F0C0001" />
      </provider>
    </application>
</manifest>

小骚 发表于 2022-12-11 16:08

zhang0459 发表于 2022-12-11 14:07
好的大佬。
android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
   


这个怕是flutter写的应用,如果是基本无解,你可以看assets目录下有没有相关的框架文件

yuan6975 发表于 2022-12-10 19:44

可能是故意那样防止破解吧

zhang0459 发表于 2022-12-10 19:47

yuan6975 发表于 2022-12-10 19:44
可能是故意那样防止破解吧

哦,,研究了好几天也没研究明白。。。

luxiaole 发表于 2022-12-10 20:13

这JSON里面的不是键值对吗,你搜索需要用到的对应的关键字的键值不行吗

luxiaole 发表于 2022-12-10 20:15

比方说你要搜索的关键字是“免费领取会员”,然后在这个JSON文件里面找到这个关键字对应的键值是“mflqhy",你搜这个试试可以吗

zhang0459 发表于 2022-12-10 20:19

luxiaole 发表于 2022-12-10 20:15
比方说你要搜索的关键字是“免费领取会员”,然后在这个JSON文件里面找到这个关键字对应的键值是“mflqhy" ...

试了,搜不到,

LeiSir 发表于 2022-12-10 20:24

你这app正经不啊?打开Activity看看你要找的

zhang0459 发表于 2022-12-10 20:29

LeiSir 发表于 2022-12-10 20:24
你这app正经不啊?打开Activity看看你要找的

不正经的,正经的我不敢搞啊,不正经的随便干,&#128531;&#128531;&#128531;&#128531;

zhang0459 发表于 2022-12-10 20:30

luxiaole 发表于 2022-12-10 20:13
这JSON里面的不是键值对吗,你搜索需要用到的对应的关键字的键值不行吗

嗯,搜对应的值也搜不到

无闻无问 发表于 2022-12-10 20:39

是不是有很多com.facebook类?
页: [1] 2 3
查看完整版本: MT管理器dex里找不到关键字。在ext.json文件里有是咋回事?