mac下使用apktool反编译

  • Mac OS X:
    1. Download Mac wrapper script (Right click, Save Link As apktool)
    2. Download apktool-2 (find newest here)
    3. Rename downloaded jar to apktool.jar
    4. Move both files (apktool.jar & apktool) to /usr/local/bin (root needed)
    5. Make sure both files are executable (chmod +x)
    6. Try running apktool via cli

1、复制以下代码,保存我apktool

#!/bin/bash
#
# Copyright (C) 2007 The Android Open Source Project
#
# 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.

# This script is a wrapper for smali.jar, so you can simply call "smali",
# instead of java -jar smali.jar. It is heavily based on the "dx" script
# from the Android SDK

# Set up prog to be the path of this script, including following symlinks,
# and set up progdir to be the fully-qualified pathname of its directory.
prog="$0"
while [ -h "${prog}" ]; do
    newProg=`/bin/ls -ld "${prog}"`
    echo ${newProg}

    newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
    if expr "x${newProg}" : ‘x/‘ >/dev/null; then
        prog="${newProg}"
    else
        progdir=`dirname "${prog}"`
        prog="${progdir}/${newProg}"
    fi
done
oldwd=`pwd`
progdir=`dirname "${prog}"`
cd "${progdir}"
progdir=`pwd`
prog="${progdir}"/`basename "${prog}"`
cd "${oldwd}"

jarfile=apktool.jar
libdir="$progdir"
if [ ! -r "$libdir/$jarfile" ]
then
    echo `basename "$prog"`": can‘t find $jarfile"
    exit 1
fi

javaOpts=""

# If you want DX to have more memory when executing, uncomment the following
# line and adjust the value accordingly. Use "java -X" for a list of options
# you can pass here.
#
javaOpts="-Xmx256M"

# Alternatively, this will extract any parameter "-Jxxx" from the command line
# and pass them to Java (instead of to dx). This makes it possible for you to
# add a command-line parameter such as "-JXmx256M" in your ant scripts, for
# example.
while expr "x$1" : ‘x-J‘ >/dev/null; do
    opt=`expr "$1" : ‘-J\(.*\)‘`
    javaOpts="${javaOpts} -${opt}"
    shift
done

if [ "$OSTYPE" = "cygwin" ] ; then
    jarpath=`cygpath -w  "$libdir/$jarfile"`
else
    jarpath="$libdir/$jarfile"
fi

# add current location to path for aapt
PATH=$PATH:`pwd`;
export PATH;
exec java $javaOpts -Djava.awt.headless=true -jar "$jarpath" "[email protected]"

2、下载apktool2.jar,墙内的同学戳这里。解压,修改文件名为apktool.jar

第4步可以忽略,只要你cd 到存放apktool的目录就好,和win一样

5、chmod +x  apktool,修改为可执行

6、./apktool d xx.apk,执行

成功反编译出xml文件

注意:apktool2必须jdk 1.7

下载http://pan.baidu.com/s/1i302CAD

安装

java -version查看版本是否变化

参考:https://code.google.com/p/android-apktool/wiki/Install

时间: 2024-10-14 01:52:37

mac下使用apktool反编译的相关文章

linux下的APK反编译软件及过程介绍

需要工具: 1.apktool apk打包工具 下载地址:http://android-apktool.googlecode.com/files/apktool1.5.2.tar.bz2 安装:直接解压即可,是一个apktool.jar文件,通过 $java -jar apktool.jar 来运行,依赖于java运行环境 2.dex2jar dex转化jar工具 下载地址:http://dex2jar.googlecode.com/files/dex2jar-0.0.9.15.zip 安装:直

Ubuntu下简单配置反编译工具以及其开发环境

0x0:前言 个人电脑重新换了下系统,Ubuntu14.04,刚好需要配置下android的反编译环境,这里简单记录一下,以供有需要的朋友参考. 其实最简单的,只需要apktool就可以了,不过有编码能力的朋友,肯定是希望用自己编写的可视化界面工具来操作了,所以我们就开始配置,并且方便后期继续开发完善工具. 0x01:相关软件的下载 Sig包 http://www.riverbankcomputing.co.uk/software/sip/download Pyqt包 http://source

android使用apktool反编译出现Input file (d:\t) was not found or was not readable

Input file (d:\t) was not found or was not readable 出现这个错误是因为apktool压缩包下载错误,我是下成首页的那个压缩包了 正确下载地址:https://code.google.com/p/android-apktool/downloads/list 如果是windows系统下载这两个包 解压下载下来的两个包,将里面的文件放到同一个文件夹下 这样apktool就可以正常使用了 android使用apktool反编译出现Input file

Eclipse下的Java反编译插件 查看源代码不再困难

Eclipse下的Java反编译插件:Eclipse Class Decompiler,整合了目前最好的2个Java反编译工具Jad和JD-Core,并且和Eclipse Class Viewer无缝集成,能够很方便的使用本插件查看类库源码,以及采用本插件进行Debug调试. 转载自:http://bbs.csdn.net/topics/390263414 Eclipse Class Decompiler插件: http://download.csdn.net/detail/ibm_hoojo/

apktool反编译时对AndroidManifest.xml的处理

apktool反编译时会对AndroidManifest.xml uses-sdk等信息去掉,写入apktool.yml. 所以反编译出来的AndroidManifest.xml根原来的是有差别的, 不应该一一对应. 最近用aapt编译的加入--min-sdk-version等参数时,用apktool反编译时,在AndroidManifest.xml 中找不到,还以为出了什么问题,原来是apktool做了处理.

转: MyEclipse 10.0,9.0,8.0 下添加jadClipse反编译插件

MyEclipse 10.0,9.0,8.0 下添加jadClipse反编译插件 (2012-11-19 15:36:35) 转载▼ 标签: myeclipse jad 反编译 插件 it 分类: Myeclipse jad是一个使用比较广泛的Java反编译软件,jadClipse是jad在eclipse下的插件,下面像大家介绍下如何将jadclipse加入到MyEclipse10.X,9.X,8.X当中: 1.http://nchc.dl.sourceforge.net/project/jad

【转】利用apktool反编译apk,并且重新签名打包

网站:https://ibotpeaches.github.io/Apktool,下载安装好apktool. 我的安装在 C:\Users\Administrator\Downloads\apktool反编译工具2.2.2.apk我放在c盘根目录,名字叫test.apk,cmd打开命令行. 运行:apktool d -f c:\test.apk 当前目前便会生成一个test的目录,对应的包的文件目录. 如要做啥修改,可以自行修改包的内容,有些加密了可能修改不了.改完了然后得重新编译成apk. 运

CENTOS 下安装APK反编译工具 APKTOOL

转于:http://www.qiansw.com/centos-apk-apktool.html 我使用的是CentOS6.4 64位的系统.首先需要下载两个包.这里下载:https://code.google.com/p/android-apktool打不开的用户直接翻到文章下面下载附件即可(版本可能不是最新的). 到这里下载java:http://www.java.com/zh_CN/download/manual.jsp 1.把附件中的两个包解压得到三个文件,全部复制到/usr/local

使用apktool反编译Android APK

工具介绍:apktool: :把APK反编译,生成程序的源代码和图片.XML配置.语言资源等文件.  官方地址:https://ibotpeaches.github.io/Apktool/ dex2jar:将apk反编译成java源码(classes.dex转化成jar文件)  官方地址:https://github.com/pxb1988/dex2jar jd-gui:查看APK中classes.dex转化成出的jar文件,即源码文件  官方地址:http://jd.benow.ca/