├── .gitattributes ├── .gitignore ├── BH2012_MobileCertificatePinning.pdf ├── LICENSE.txt ├── Makefile ├── README.md ├── Tweak.xm ├── layout ├── DEBIAN │ └── control └── Library │ └── PreferenceLoader │ └── Preferences │ ├── SSLKillSwitch.png │ └── SSLKillSwitch_prefs.plist └── testapp ├── .gitignore ├── Makefile ├── Resources ├── Info.plist └── VeriSignClass3PublicPrimaryCertificationAuthority-G5.der ├── RootViewController.h ├── RootViewController.mm ├── SSLKillSwitchTestApplication.mm ├── TestSSLKillSwitch.h ├── TestSSLKillSwitch.m ├── control └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/.gitignore -------------------------------------------------------------------------------- /BH2012_MobileCertificatePinning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/BH2012_MobileCertificatePinning.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/Tweak.xm -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSLKillSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/layout/Library/PreferenceLoader/Preferences/SSLKillSwitch.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSLKillSwitch_prefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/layout/Library/PreferenceLoader/Preferences/SSLKillSwitch_prefs.plist -------------------------------------------------------------------------------- /testapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/.gitignore -------------------------------------------------------------------------------- /testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/Makefile -------------------------------------------------------------------------------- /testapp/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/Resources/Info.plist -------------------------------------------------------------------------------- /testapp/Resources/VeriSignClass3PublicPrimaryCertificationAuthority-G5.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/Resources/VeriSignClass3PublicPrimaryCertificationAuthority-G5.der -------------------------------------------------------------------------------- /testapp/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/RootViewController.h -------------------------------------------------------------------------------- /testapp/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/RootViewController.mm -------------------------------------------------------------------------------- /testapp/SSLKillSwitchTestApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/SSLKillSwitchTestApplication.mm -------------------------------------------------------------------------------- /testapp/TestSSLKillSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/TestSSLKillSwitch.h -------------------------------------------------------------------------------- /testapp/TestSSLKillSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/TestSSLKillSwitch.m -------------------------------------------------------------------------------- /testapp/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/control -------------------------------------------------------------------------------- /testapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/ios-ssl-kill-switch/HEAD/testapp/main.m --------------------------------------------------------------------------------