当前位置:网站首页>使用 Allatori 进行 Jar 包混淆
使用 Allatori 进行 Jar 包混淆
2022-08-04 19:43:00 【梦想blog】
场景
对外提供 SDK,核心代码等,需要进行代码混淆的场景。但注意,混淆只是让代码变的晦涩难懂,真正需要保护的代码,仅仅这样是没办法保证安全的
下载
官方网站:https://allatori.com/
这里下载的版本:Allatori-8.2-Demo
使用
解压后可见
- 在此文件夹新建文件夹:auto-oa-demo,
随便找一个示例,将文件复制进去:
allatori.jar
Clean.bat
config.xml
RunAllatori.bat - 将你需要混淆的 jar 丢进去:auto-oa-demo.jar
- 修改 config.xml
这里主要配置需要过滤的第三方 jar 包或者代码,加过期等
<config>
<input>
<jar in="auto-oa-demo.jar" out="auto-oa-demo-mix.jar"/>
</input>
<property name="log-file" value="log.xml"/>
<keep-names>
<class access="protected+">
<field access="protected+"/>
<method access="protected+"/>
</class>
</keep-names>
<ignore-classes>
<!--不混淆 引入的第三方jar包-->
<class template="class *org*" />
<class template="class *cn*" />
<class template="class *ch*" />
<class template="class *beust*" />
<class template="class *google*" />
<class template="class *sun*" />
<class template="class *typesafe*" />
<class template="class *zwit*" />
<class template="class *dev*" />
<class template="class *io*" />
<class template="class *javax*" />
<class template="class *kotlin*" />
<class template="class *lombok*" />
<class template="class *net*" />
<class template="class *okhttp*" />
<class template="class *okio*" />
<class template="class *okio*" />
<!--不混淆的类-->
<!--<class template="class com.*" />-->
</ignore-classes>
<!-- 到期时间(到期后无法启动jar) 格式:yyyy/mm/dd-->
<!--<expiry date="2021/04/03" string="SERVICE EXPIRED!"/>-->
<!-- 随机命名混淆字符-->
<!--<property name="random-seed" value="abcdef ghnljk svi"/>-->
</config>
- 修改 RunAllatori.bat
这里主要修改编译所需的内存,按实际大小设置
java -Xms512m -Xmx1024m -jar allatori.jar config.xml
- 修改 Clean.bat
del log.xml
del auto-oa-demo-mix.jar
运行
点击 RunAllatori.bat
混淆后 jar
反编译
反编译混淆过的 class,可以看到,变量这些已经变的他妈都不认得了…
边栏推荐
- The book "The Essence of Alipay Experience Design", a record of knowledge related to testing
- Pedestrian fall detection experiment based on YOLOV5
- Internship: changed the requirements
- 华为WLAN技术:AP上线及相关模板的配置实验
- 【Attention 演变史】RNN的产生、架构、推广、问题(第一弹)
- 5G NR 笔记记录
- SAP UI5 ensures that the control id is globally unique implementation method
- 元国度链游系统开发
- Aura clock chip generation configuration file script
- 高效目标检测:动态候选较大程度提升检测精度(附论文下载)
猜你喜欢
随机推荐
华为WLAN技术:AP上线及相关模板的配置实验
zynq records
ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators
QT 小知识随记
openharmony代码框架初识(2)
seata源码解析:seata server各种消息处理流程
【有奖征文】秋招特训,打造你的专属产品体验
蚂蚁集团时序数据库CeresDB正式开源
Highlights of some performance tests
正畸MIA微种植体支抗技术中国10周年交流会在沈举办
The list of Kubernetes - watch mechanism
SAP UI5 ensures that the control id is globally unique implementation method
Defaced Fingerprint Recovery and Identification
In July 2022, domestic database memorabilia
PostgreSQL的 SPI_接口函数
IIC驱动OLED
量化交易机器人系统开发
Pedestrian fall detection experiment based on YOLOV5
Finger Vein Recognition-matlab
zynq 记录