强力全面安全防御可使用ShadowSafety
立即咨询加固包需要重新签名,必须和原包一致
上传下载慢,请使用香港代理加速
枯叶云Dex2c交流群:783407510
| ID | 包名 | 状态 | 操作 |
|---|---|---|---|
| 正在加载任务数据... | |||
类名规则用于指定需要保护的类:
# 保护指定类
com.example.MyClass
# 保护指定包名下的类(不包含子包)
com.example.*
# 保护指定包名下的类(包含子包)
com.example.**
# 保护指定以什么开头的类(不包含自身)
com.example.MyClass*
# 排除指定包名或类名
!com.example.ExcludedClass
!com.example.excluded_package.*
方法规则用于指定需要保护的方法:
# 保护完整方法名
com.example.MyClass myMethod
# 保护通配符方法名
com.example.MyClass *Method*
# 保护多个方法(逗号分隔)
com.example.MyClass onCreate,onDestroy,*Event
# 保护类中所有方法
com.example.MyClass *
# 排除特定方法
!com.example.Logger log*
| 符号 | 含义 | 示例 |
|---|---|---|
| * | 匹配任意字符(不包括路径分隔符) | com.example.* |
| ** | 匹配任意字符(包括路径分隔符) | com.example.** |
| ! | 排除规则 | !com.example.Excluded |
# 保护整个包(不含子包)
com.example.*
# 保护包及子包
com.example.**
# 保护以Base结尾的类
com.example.*Base
# 排除特定类
!com.example.DebugUtils
# 保护特定类的方法
com.example.MainActivity onCreate,onDestroy
# 保护所有以on开头的方法
com.example.** on*
# 保护整个类(所有方法)
com.example.SecretClass *
# 排除特定方法
!com.example.Logger log*