anestisb / dexRepair

Cmd line tool to repair Android DEX bytecode files CRC checksum

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dex Repair

Command line tool to repair Android DEX bytecode files CRC checksum and SHA-1 hash

Compile

  • Clone this repository
  • Install Android NDK if you want to cross-compile for Android devices
  • Invoke make.sh bash script with desired build target
    • $ ./make.sh - default system compiler
    • $ ./make.sh gcc - prefer gcc
    • $ ./make.sh clang - prefer clang
    • $ ./make.sh cross-android - cross-compile for Android with NDK
  • Executables are copied under the bin directory

Usage

$ bin/dexRepair -h
    DEX Repair ver. 0.1.4

    Anestis Bechtsoudis <anestis@census-labs.com>
  Copyright 2015-2017 by CENSUS S.A. All Rights Reserved.

  -I,  --input-files=DIR : input files dirs (1 level recursion only) or single file
  -S,  --repair-sha      : repair SHA-1 hash too (default: disabled)
  -h,  --help            : this help
  -v,  --debug=LEVEL     : debug level (0 - FATAL ... 4 - DEBUG), default: '3' (INFO)

Changelog

  • 0.1.4 - 13 October 2017
    • Dex version 038 (Oreo) & 039 (dev-master) support
  • 0.1.3 - 26 April 2017
    • Support to repair SHA-1 hash too
  • 0.1.2 - 24 April 2017
    • Refactor readdir utils
    • Improve make script & Android.mk
  • 0.1.1 - 5 September 2016
    • Add support for ODEX 037 format
  • 0.1.0 - 14 February 2015
    • Initial commit

License

   Anestis Bechtsoudis <anestis@census-labs.com>
   Copyright 2015-2017 by CENSUS S.A. All Rights Reserved.

   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.

About

Cmd line tool to repair Android DEX bytecode files CRC checksum


Languages

Language:C 88.5%Language:Makefile 7.9%Language:Shell 3.7%