有时候遇到apk文件zip加密了,classes.dex有密码保护,无法解压出来(应当说是三个文件被密码保护 AndroidManifest.xml classes.dex resources.arsc)
怎么做到classes.dex有密码保护这个效果呢?
使用了伪加密,修改zip的头,把文件的加密标志设置为ture,还原就把加密标志设置为false.利用了Android处理zip文件不判断头里的加密信息,其他压缩软件,java默认实现的zip api都有检测zip头中的加密信息。
第一步:脚本和app.apk放在相同目录下,进入目录,用命令行:unpack.py app.apk AndroidManifest.xml classes.dex resources.arsc解压。
第二步:把assets、META-INF、res三个文件夹从apk文件中拖出来,和用脚本解压出的三个文件一起压缩成apk文件,一切ok。注释:1.因为python脚本有版本2.x和3.x的差异,建议用2.7.5版本
有时候提示 argparse 包找不到,这样的话找到官方把包导入即可。argparse 包下载地址 https://pypi.python.org/pypi/argparse
2. usage: unpack [-h] apk [file[file ...]]
- #!/usr/bin/env python
- # Copyright (C) 2013 thuxnder <patrick@bluebox.com>
- #
- # Licensed under the Apache License, Version 2.0 (the 'License');
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an 'AS IS' BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import argparse
- from zipfile import ZipFile, ZipInfo
- class ApkFile(ZipFile):
- def extract(self, member, path=None, pwd=None):
- if not isinstance(member, ZipInfo):
- member = self.getinfo(member)
- member.flag_bits ^= member.flag_bits%2
- ZipFile.extract(self, member, path, pwd)
- print 'extracting %s' % member.filename
- def extractall(self, path=None, members=None, pwd=None):
- map(lambda entry: self.extract(entry, path, pwd), members if members is not None and len(members)>0 else self.filelist)
- if __name__ == '__main__':
- parser = argparse.ArgumentParser(description='unpacks an APK that contains files which are wrongly marked as encrypted')
- parser.add_argument('apk', type=str)
- parser.add_argument('file', type=str, nargs='*')
- args = parser.parse_args()
- apk = ApkFile(args.apk,'r')
- apk.extractall(members=args.file)
伪加密扩展阅读:Apk伪加密实现与破解JAVA源码
地址:http://bbs.pediy.com/showthread.php?t=174874 很好的解释了伪加密算法。