zoukankan      html  css  js  c++  java
  • 反编译[学习笔记]

    One step tool: //https://github.com/ufologist/onekey-decompile-apk
    create the xxxx.apk.jar and the folder

    ** Get resource files, pictures, values, strings..... :
    java -jar apktool_2.0.0rc4.jar d xxxx.apk
    java -jar apktool_2.0.2.jar d xxxx.apk

    ** Get the class files:
    Decompress the xxxx.apk.jar which generated by the tool, and then get the class files.

    ** Get Java files:
    1. Get the class files from the apk:
    2. decompile:
    jad -o -r -sjava -dsrc xxxx-classcom***.class

  • 相关阅读:
    pymysql
    Mysql
    协程
    线程池
    线程 条件
    线程 事件
    线程
    requests
    Linux 时区不对的解决办法
    Linux 简单命令
  • 原文地址:https://www.cnblogs.com/lionfight/p/5140203.html
Copyright © 2011-2022 走看看