我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android Google马甲包处理

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android Google马甲包处理

这是整理其他人的plugin代码,最后有亮点,耐心看下吧

plugins {    id 'com.android.application'    id 'org.jetbrains.kotlin.android'    id 'xml-class-guard'//    id 'AndResGuard'//    id 'com.bytedance.android.aabResGuard'//    id 'stringfog'    id 'android-junk-code'//    id 'kotlin-android-extensions'}

gradle文件增加以下代码

task geneDictTask {    doFirst {        def dictPath = rootDir.getAbsolutePath() + '/app/dict.txt'        def random = new Random()        def lowercase = "abcdefghijklmnopqrstuvwxyz"        def wordList = new HashSet()        for (int i = 0; i < 1000; i++) {            def word = new StringBuilder()            def wordLength = random.nextInt(5) + 4            for (int j = 0; j < wordLength; j++) {                word.append(lowercase.charAt(random.nextInt(lowercase.length())))            }            wordList.add(word.toString())        }        def f = new File(dictPath)        f.getParentFile().mkdirs()        f.withWriter("UTF-8") { it.write(wordList.join(System.lineSeparator())) }    }}///批量修改文件名ext {    //需要批量重命名的Been路径    renameBeenPath = "class="lazy" data-src/main/java/com/mosen/xxx/huawei"    //如果有productFlavors 就多次执行下    renameResPath = "class="lazy" data-src/main/res"}task renameBeenProcesser {    doLast {        FileTree beenTree = fileTree(renameBeenPath) {            include '***.kt'        }        def start = System.currentTimeMillis()        println(">>>>>> renameBeenProcesser start")        beenTree.each { File beenFile ->            //println(beenFile.path + " Processing...")            def sname = beenFile.name            def fileEx = sname.substring(sname.lastIndexOf("."))            sname = sname.replace(fileEx, "")            if (sname == "PrintStream" || sname == "StringFog") {                return            }            def tName = ""            def random = new Random()            def lowercase = "abcdefghijklmnopqrstuvwxyz"            def word = new StringBuilder()            def wordLength = random.nextInt(5) + 4            for (int j = 0; j < wordLength; j++) {                word.append(lowercase.charAt(random.nextInt(lowercase.length())))            }            tName = word.toString() + random.nextInt(999)            beenFile.renameTo(beenFile.parentFile.path + File.separator + tName + fileEx)            //生成一个文件树,替换import后面的路径            FileTree processTree = fileTree("class="lazy" data-src") {                include '***.kt'                include '**/layoutAndroidManifest.xml'            }            processTree.each { File f ->                ImportBeenReplacer(f.path, sname, tName)            }        }        def cost = (System.currentTimeMillis() - start) / 1000        println(">>>>>> renameBeenProcesser end(cost:${cost}s)")    }}task renameLayoutProcesser {    doLast {        FileTree beenTree = fileTree(renameResPath) {            include '**/layout*.java'                include '**layoutAndroidManifest.xml'            }            processTree.each { File f ->                ImportResReplacer(f.path, sname, tName)            }        }        def cost = (System.currentTimeMillis() - start) / 1000        println(">>>>>> renameBeenProcesser end(cost:${cost}s)")    }}xmlClassGuard {        findAabConstraintReferencedIds = false        findAndConstraintReferencedIds = false    //用于增量混淆的 mapping 文件    mappingFile = file("xml-class-mapping.txt")    //更改manifest文件的package属性,即包名    packageChange = ["com.mosen.xxx.huawei": "com.mosen.target.huawei"]    //移动目录    moveDir = ["com.mosen.xxx.huawei": "com.mosen.target.huawei"]}// 导入RandomKeyGenerator类,如果不使用RandomKeyGenerator,可以删除此行import com.github.megatronking.stringfog.plugin.kg.RandomKeyGeneratorstringfog {    // 必要:加解密库的实现类路径,需和上面配置的加解密算法库一致。    implementation 'com.github.megatronking.stringfog.xor.StringFogImpl'    // 可选:加密开关,默认开启。    enable true    // 可选:指定需加密的代码包路径,可配置多个,未指定将默认全部加密。    fogPackages = ['com.mosen.xxx.huawei']    // 可选(3.0版本新增):指定密钥生成器,默认使用长度8的随机密钥(每个字符串均有不同随机密钥),    // 也可以指定一个固定的密钥:HardCodeKeyGenerator("This is a key")    kg new RandomKeyGenerator()    // 可选(4.0版本新增):用于控制字符串加密后在字节码中的存在形式, 默认为base64,    // 也可以使用text或者bytes    mode com.github.megatronking.stringfog.plugin.StringFogMode.bytes    //应用的包名    packageName = "com.mosen.xxx.huawei"    //开启调试    debug false    //辣鸡代码类    junkCodeClass = "com.mosen.xxx.huawei.PrintStream"}androidJunkCode {    //com.mosen.target.huawei    def config = {        def random = new Random()        packageBase = "com.mosen.xxx.huawei.ui"        packageCount = random.nextInt(5) + 1        activityCountPerPackage = random.nextInt(5) + 1        excludeActivityJavaFile = false        otherCountPerPackage = random.nextInt(1) + 1        methodCountPerClass = 0        def lowercase = "abcdefghijklmnopqrstuvwxyz"        def word = new StringBuilder()        def wordLength = random.nextInt(5) + 5        for (int j = 0; j < wordLength; j++) {            word.append(lowercase.charAt(random.nextInt(lowercase.length())))        }        resPrefix = word.toString() + "_"        drawableCount = random.nextInt(1) + 1        stringCount = random.nextInt(10) + 1    }    variantConfig {        a1Debug config        a1Release config    }}//替换有导入目标been的文件内容def ImportBeenReplacer(String filePath, sourceBeenName, targetBeenName) {    if (sourceBeenName.equals("PrintStream") || sourceBeenName.equals("StringFog")) {        return    }    def readerString = ""    def hasReplace = false    def xml = filePath.endsWith(".xml")    file(filePath).withReader('UTF-8') { reader ->        reader.eachLine { String it ->            if (it.find(sourceBeenName)) {                if (xml) {                    //println("###$filePath: $sourceBeenName->$targetBeenName")                    it = it.replaceAll("(?]*)(?![a-zA-Z0-9]+)", targetBeenName)                } else {                    it = it.replaceAll("(?\\?\\:\\(]*)(?![a-zA-Z0-9]+)", targetBeenName)                }                hasReplace = true            }            readerString <<= it            readerString << '\n'        }    }    if (hasReplace) {        if (readerString.toString().endsWith("\n")) readerString = readerString.subSequence(0, readerString.length() - 1)        //替换文件        //println(filePath + " has replace been.")        file(filePath).withWriter('UTF-8') {            writer ->                writer.append(readerString)        }    }}//替换有导入目标been的文件内容def ImportResReplacer(String filePath, sourceBeenName, targetBeenName) {    def readerString = ""    def hasReplace = false    def xml = filePath.endsWith(".xml")    file(filePath).withReader('UTF-8') { reader ->        reader.eachLine { String it ->            if (it.find(sourceBeenName)) {                if (xml) {                    //println("###$filePath: $sourceBeenName->$targetBeenName")                    it = it.replaceAll("/$sourceBeenName", "/$targetBeenName")                } else {                    it = it.replaceAll("(?\\?\\:\\(]*)(?![a-zA-Z0-9]+)", targetBeenName)                }                hasReplace = true            }            readerString <<= it            readerString << '\n'        }    }    if (hasReplace) {        if (readerString.toString().endsWith("\n")) readerString = readerString.subSequence(0, readerString.length() - 1)        //替换文件        //println(filePath + " has replace been.")        file(filePath).withWriter('UTF-8') {            writer ->                writer.append(readerString)        }    }}

root.gradle

buildscript {    dependencies {        //https://github.com/shwenzhang/AndResGuard        classpath 'com.tencent.mm:AndResGuard-gradle-plugin:1.2.21'        //https://github.com/bytedance/AabResGuard        classpath "com.bytedance.android:aabresguard-plugin:0.1.0"        classpath "com.github.liujingxing:XmlClassGuard:1.2.3"        classpath 'com.github.megatronking.stringfog:gradle-plugin:5.0.0'        // 选用加解密算法库,默认实现了xor算法,也可以使用自己的加解密库。        classpath 'com.github.megatronking.stringfog:xor:5.0.0'        //https://github.com/qq549631030/AndroidJunkCode        classpath 'com.github.qq549631030:android-junk-code:1.2.5'        //classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"    }}

在人家的基础上

我优化了名字的随机性

androidJunkCode这个感觉意义不到,基于asm我自己定义了一版逻辑

这是我处理后的结果,插入了很多无用代码在每个方法上

 3、stringfog优化支持了buildConfig的字符混淆

来源地址:https://blog.csdn.net/moziqi123/article/details/131561011

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android Google马甲包处理

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

React Native release包全局错误处理——Android篇

当我们在开发React Native应用时,如果在调试状态下,获取错误的异常信息是非常简单的,JS异常会立即在真机上显示(或者打开调试模式在浏览器控制台中显示),原生层的java闪退异常则可以通过Android Studio的Logcat进
2022-06-06

使用OkHttp包在Android中进行HTTP头处理的教程

HTTP 头处理 HTTP 头是 HTTP 请求和响应中的重要组成部分。在创建 HTTP 请求时需要设置一些 HTTP 头。在得到 HTTP 的响应之后,也会需要对其中包含的 HTTP 头进行解析。从代码的角度来说,HTTP 头的数据结构是
2022-06-06

Android的OkHttp包处理用户认证的代码实例分享

OkHttp 提供了对用户认证的支持。当 HTTP 响应的状态代码是 401 时,OkHttp 会从设置的 Authenticator 对象中获取到新的 Request 对象并再次尝试发出请求。Authenticator 接口中的 auth
2022-06-06

Android中使用OkHttp包处理HTTP的get和post请求的方法

概览 http是现在主流应用使用的网络请求方式, 用来交换数据和内容, 有效的使用HTTP可以使你的APP 变的更快和减少流量的使用 OkHttp 是一个很棒HTTP客户端(GitHub主页:https://github.com/squar
2022-06-06

Android使用OKHttp包处理HTTP相关操作的基本用法讲解

OKHttp是一款高效的HTTP客户端,支持连接同一地址的链接共享同一个socket,通过连接池来减小响应延迟,还有透明的GZIP压缩,请求缓存等优势。(GitHub页:https://github.com/square/okhttp) A
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录