# JustTrustMe **Repository Path**: tpdev/JustTrustMe ## Basic Information - **Project Name**: JustTrustMe - **Description**: JustTrustMe是一个去掉https证书校验的xposed hook插件,去掉之后就可以抓取做了证书校验的app的数据包。 https://github.com/Fuzion24/JustTrustMe 安装好模块之后勾选JustTrustMe模块后重启手机 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2020-03-19 - **Last Updated**: 2024-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README JustTrustMe =========== An xposed module that disables SSL certificate checking. This is useful for auditing an application which does certificate pinning. There also exists a nice framework built by @moxie to aid in pinning certs in your app: [certificate pinning](https://github.com/moxie0/AndroidPinning). An example of an application that does cert pinning is [Twitter](https://play.google.com/store/apps/details?id=com.twitter.android). If you would like to view the network traffic for this application, you must disable the certificate pinning. I built this for xposed rather than cydia substrate because xposed seems to support newer devices better. Marc Blanchou wrote the [original tool](https://github.com/iSECPartners/Android-SSL-TrustKiller) for cydia substrate. If you find that you are not able to MITM an application please file an issue. ## Installation As a prequsite, your device must be rooted and the xposed framework must be installed. You can download the xposed framework [here](http://repo.xposed.info/module/de.robv.android.xposed.installer). ### Install from binary The JustTrustMe binary can be downloaded from [https://github.com/Fuzion24/JustTrustMe/releases/latest](https://github.com/Fuzion24/JustTrustMe/releases/latest) ``` adb install ./JustTrustMe.apk ``` or navigate here and download the APK on your phone: [https://github.com/Fuzion24/JustTrustMe/releases/latest](https://github.com/Fuzion24/JustTrustMe/releases/latest) ### Build from Source All the normal gradle build commands apply: To build a release APK: ``` ./gradlew assembleRelease ``` To install directly to the phone connected via ADB: ``` ./gradlew installRelease ```