Git Product home page Git Product logo

dex2c's Introduction

๐ƒ๐ž๐ฑ๐Ÿ๐‚

Stars Python Forks Size Contributors License

Method-based AOT compiler that can wrap Dalvik bytecode with JNI native code.

Table of contents

About the project

This project is a forked version of amimo/dcc, which aims to make it easy for everyone to use this tool. We automated plenty of processes that you had to do manually in the original DCC. Moreover, we always try to add new features to make this tool more usable in real-world applications. Check out Roadmap to know about the changes we made and also the changes we are planning to make in the feature.

Built with

  • Python
  • Androguard

Installation

Python 3.8 or higher is required for running this tool. So, make sure your python is up-to-date.

  1. Clone the repo.
    git clone https://github.com/codehasan/dex2c
  2. Open the cloned directory.
    cd dex2c
  3. Download Apktool latest version from bitbucket and save it in tools folder with the name apktool.jar
    wget -O tools/apktool.jar https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.9.3.jar
  4. Download android NDK for your OS and extract it. Copy the folder path where ndk-build executable is located inside the extracted folder and configure ndk_dir in dcc.cfg

Linux

Linux

  1. Install required dependencies.
    pip3 install -r requirements.txt
  2. Install JRE/JDK if you don't have it installed. The recommended JDK version is 11.
    sudo apt-get install openjdk-11-jdk

Windows

Windows

  1. Install required dependencies.
    pip3 install -r requirements.txt
  2. Install JRE/JDK from oracle if you don't have it installed. Search in Google, how to install JDK in Windows if you need more guidance on this topic. The recommended JDK version is 11.

Termux

Android

One Step Installation: Run Below Command

pkg install wget && wget -O termux_install.sh https://raw.githubusercontent.com/codehasan/dex2c/termux_install.sh && chmod -R +x termux_install.sh && ./termux_install.sh

Usage

Filters

Add all your filters in filter.txt file - one rule for each line. Filters are made using regex patterns. There are two types of filters available in Dex2c - whitelist, and blacklist. You can use them whenever you need them.

WhiteList

  • Protect just one method in a specific class.
com/some/class;some_method(some_parameters)return_type
  • Protect all methods in a specific class.
com/some/class;.*
  • Protect all methods in all classes under a package path.
com/some/package/.*;.*
  • Protect a method with the name onCreate in all classes.
.*;onCreate\(.*

BlackList

Adding an exclamation ! sign before a rule will mark that rule as a blacklist.

  • Exclude one method in a specific class from being protected.
!com/some/class;some_method(some_parameters)return_type
  • Exclude all methods in a specific class from being protected.
!com/some/class;.*
  • Exclude all methods in all classes under a package path from being protected.
!com/some/package/.*;.*
  • Exclude a method with the name onCreate in all classes from being protected.
!.*;onCreate\(.*

Protect apps

  • Copy your apk file to dex2c folder where dcc.py is located and run this command.
python3 dcc.py -a input.apk -o output.apk
  • Run this command to know about all the other options available in dcc to find the best ones for your needs.
python3 dcc.py --help

How to change lib name

Open project/jni/Android.mk file in the cloned directory. You will find a variable named LOCAL_MODULE, initially with the value stub. Please change it to your desired lib name. Keep in mind the following instructions to prevent possible errors.

  • Don't use spaces in lib name, use hyphen - or underscore _
  • Don't use any kind of symbols or punctuations in lib name other than underscores and hyphens
  • Don't start the lib name with the text lib itself

Roadmap

  • Add custom lib loader
  • Add new apksigner
  • Add multi-dex support
  • Add app abi handler
  • Add signature configuration in dcc.cfg
  • Add new options
    • --skip-synthetic
    • --custom-loader
    • --force-keep-libs
    • --obfuscate

See the open issues for a full list of proposed features and known issues.

Contributing

Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give this project a star! Thanks again!

  1. Fork the project
  2. Create your feature branch. (git checkout -b feature/AmazingFeature)
  3. Commit your changes. (git commit -m 'Add some AmazingFeature')
  4. Push to the branch. (git push origin feature/AmazingFeature)
  5. Open a pull request.

License

Distributed under the Apache License. See LICENSE.txt for more information.

Acknowledgments

Projects

People

Go to top

dex2c's People

Contributors

codehasan avatar redragon14368 avatar abhithemodder avatar kirlif avatar luoyesiqiu avatar praiseqin 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.