iamyours / ApkCrack

A tool that make your apk debuggable for Charles/Fiddler in Android 7.0

Home Page:https://juejin.im/post/5e16a372e51d456f5d78a55a

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A tool that make your apk debuggable for Charles/Fiddler with Android 6.0

requirement

  • jdk
  • make sure jarsigner works
  • Fiddler/Charles

How to use

we can use it in GUI,command line,library
download latest release version.

GUI

java -jar ApkCrackUI.jar

command line use

config file in config/config.properties

  • add apk path,out apk path
  • add your sign file(or you can use test.jks)
  • add your certFile that export from Charles/Fiddler。
java -jar ApkCrack.jar

library

add ApkCrack.jar in your project.

apkCrack.setApkFile(apkFile);
apkCrack.setCertFile(certFile);
apkCrack.setStoreFile(storeFile);
apkCrack.setStorePassword(storePassword);
apkCrack.setKeyAlias(keyAlias);
apkCrack.setKeyPassword(keyPassword);
apkCrack.start();

export cert file from Charles

open Charles,then Help -> SSL Proxying -> Save Charles Root Certificate... -> change Format to Binary certificate(.cer)-> Save

export cert file from Fiddler

ApkCrack for mac

ApkCrack for windows

About

A tool that make your apk debuggable for Charles/Fiddler in Android 7.0

https://juejin.im/post/5e16a372e51d456f5d78a55a


Languages

Language:Java 100.0%