Giter VIP home page Giter VIP logo

apk2's Introduction

APK反编译工具说明

反编译三件套: apktool:反编译资源文件和Manifest文件 dex2jar:将classes.dex文件反编译为classes-dex2jar.jar源码文件 jd-gui:查看classes-dex2jar.jar源码文件

反编译一体化工具: jadx:可以直接将apk包反编译为源码 AndroidKiller 和jadx类似 Jeb 和jadx类似

脱壳工具(手机需要root) XposedInstaller:XP框架 VitualXposed:无需root的XP框架,可能会有奇奇怪怪的bug,可能不成功,建议使用XposedInstaller FDex2:脱壳程序 APKMessenger APK信息查看工具

修改smali进行二次打包 baksmali:将classes.dex文件反编译为smali文件 smali:将smai文件编译为classes.dex文件 J2S2J:将java文件转smali文件,将smali文件转java文件

反编译命令行 java -jar apktool.jar d -f {待反编译的apk路径} -o {反编译后的文件路径}

打包命令行 java -jar apktool.jar b {待打包的文件路径} -o {打包后的apk路径}

签名命令行 jarsigner -verbose -keystore {keystore文件路径} -signedjar {签名后生成的apk路径} {待签名的apk路径} {别名}

java -jar apktool.jar b Test2 -o Test2.apk

jarsigner -verbose -keystore demo.jks -signedjar Test2s.apk Test2.apk demo

adb install -r Test2s.apk

apk2's People

Contributors

careylipu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.