1 Star 1 Fork 2

过一种悠然的生活/FridaContainer

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
decompress_multi_dex.py 398 Bytes
一键复制 编辑 原始数据 按行查看 历史
DM星痕 提交于 2023-01-11 16:01 +08:00 . 细节问题调整
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# name: decompress_multi_dex.py
import os
path = r'/path/dex/dir/' # dex 文件夹目录
out_path =r'/path/out/dir/' #输出文件夹
files = os.listdir(path)
for file in files: # 遍历文件夹
if file.find("dex") > 0: ## 查找dex 文件
sh = f'jadx -j 1 -r -d {out_path} {path}/{file}'
print(sh)
os.system(sh)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pythonzz/FridaContainer.git
git@gitee.com:pythonzz/FridaContainer.git
pythonzz
FridaContainer
FridaContainer
master

搜索帮助