Skip to content

linuxhsj/AutoTransformPlugin

 
 

Repository files navigation

AutoTransformPlugin

ASM字节码插桩插件,向代码中插入垃圾代码,用于马甲包代码混淆

引用发布的库

project build.gradle引入Maven地址

buildscript {
   repositories {
       maven {
            url 'https://raw.githubusercontent.com/mtjsoft/AutoTransformPlugin/master/repo'
       }
   }
   dependencies { 
       // 导入插件 
       classpath "cn.mtjsoft.www:burypoint.plugin:1.0.17"
   }
}

allprojects {
   repositories {
       // // 仓库地址
       maven {
            url 'https://raw.githubusercontent.com/mtjsoft/AutoTransformPlugin/master/repo'
       }
   }
}

在module build.gradle 中启用

    apply plugin: 'mtjsoft.auto.burypoint.plugin'
    methodhook {
        // 是否启用字节码插入
        enable = true
        // 项目中的class true:全部插桩
        all = true
        // 在满足以下类名正则的类中插入垃圾代码
        classRegexs = [
                "cn/mtjsoft/www/autotransformplugin/keep.*?Java",
                "cn/mtjsoft/www/autotransformplugin.*?Activity"
        ]
        // 排除jar包操作
        jarRegexs = []
        // 每个类中随机插入的变量、方法数量
        randomCount = 10
    }

特别注意:

  • 如果代码开启了混淆,一定要在 proguard-rules.pro 中添加:
    #关闭代码压缩,防止插入的垃圾代码被认为是无用的代码给删除了。马甲包可配置不压缩,正式包可以掉此配置
    -dontshrink 

About

ASM字节码插桩插件,向代码中插入垃圾代码,用于马甲包代码混淆

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Groovy 56.6%
  • Java 31.2%
  • Kotlin 12.2%