AndroidPinning
AndroidPinning copied to clipboard
A standalone library project for certificate pinning on Android.
My name is Davy Yue, and I am the Founder + CEO of LifeEverlasting, an innovative technology enabling a user to interact with anyone from history. See our pitch slide...
https://github.com/moxie0/AndroidPinning/blob/master/src/org/thoughtcrime/ssl/pinning/PinningTrustManager.java#L176 The chain you get is the chain given by the peer = web server. It can contain any number of certificates that have nothing to do with the trust...
Noticed there is code to read certificates from raw folder. Is the file a single bks file with multiple aliases? Any chance for an example of how to use?
Allow the caller to specify which domain(s?) a pin should apply to. This would allow pinning to be set process-wide using HttpsURLConnection.setDefaultSSLSocketFactory() so that all HttpsURLConnections made by the app,...
I am trying to do cert pinning for SHA2 cert on my server. My app stopped working as the server got upgraded with SHA2 and I am trying to use...
AndroidPinning relies on Apache framework: https://github.com/moxie0/AndroidPinning/blob/master/src/org/thoughtcrime/ssl/pinning/util/PinningHelper.java#L58-L62 Which got deprecated in API 22 (Android 5.1): https://developer.android.com/about/versions/android-5.1.html#http http://developer.android.com/reference/org/apache/http/params/HttpParams.html This makes `org.thoughtcrime.ssl.pinning.util.PinningHelper.getPinnedHttpClient()` deprecated.
Hello, first, thanks for this great project. So, in order to use the ping-b64.py tool we need to import the base64 first.
Is there some way i can add SSL pinning support to volley(http://developer.android.com/training/volley/index.html).
A common omission in certificate pinning implementations and discussions seems to be coverage for WebView requests. Are there plans to provide a sample WebViewClient implementation that invokes the pinning code...
If you don't have M2Crypto installed you can use the following openssl commands to generate the pin (on OS X OpenSSL 0.9.8y 5 Feb 2013): openssl x509 -in certificate.cer -inform...