├── .github └── workflows │ └── run_tests.yml ├── .gitignore ├── BH2012_MobileCertificatePinning.pdf ├── LICENSE ├── Makefile ├── README.md ├── SSLKillSwitch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SSLKillSwitch.xcscheme ├── SSLKillSwitch ├── Info.plist ├── SSLKillSwitch.h ├── SSLKillSwitch.m └── fishhook │ ├── LICENSE │ ├── README.md │ ├── fishhook.c │ └── fishhook.h ├── SSLKillSwitch2.plist ├── SSLKillSwitchTests ├── Info.plist └── SSLKillSwitchTests.m ├── charles.png └── layout ├── DEBIAN └── control └── Library └── PreferenceLoader └── Preferences ├── SSLKillSwitch.png └── SSLKillSwitch_prefs.plist /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/.gitignore -------------------------------------------------------------------------------- /BH2012_MobileCertificatePinning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/BH2012_MobileCertificatePinning.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/README.md -------------------------------------------------------------------------------- /SSLKillSwitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSLKillSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSLKillSwitch.xcodeproj/xcshareddata/xcschemes/SSLKillSwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch.xcodeproj/xcshareddata/xcschemes/SSLKillSwitch.xcscheme -------------------------------------------------------------------------------- /SSLKillSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/Info.plist -------------------------------------------------------------------------------- /SSLKillSwitch/SSLKillSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/SSLKillSwitch.h -------------------------------------------------------------------------------- /SSLKillSwitch/SSLKillSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/SSLKillSwitch.m -------------------------------------------------------------------------------- /SSLKillSwitch/fishhook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/fishhook/LICENSE -------------------------------------------------------------------------------- /SSLKillSwitch/fishhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/fishhook/README.md -------------------------------------------------------------------------------- /SSLKillSwitch/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/fishhook/fishhook.c -------------------------------------------------------------------------------- /SSLKillSwitch/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch/fishhook/fishhook.h -------------------------------------------------------------------------------- /SSLKillSwitch2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitch2.plist -------------------------------------------------------------------------------- /SSLKillSwitchTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitchTests/Info.plist -------------------------------------------------------------------------------- /SSLKillSwitchTests/SSLKillSwitchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/SSLKillSwitchTests/SSLKillSwitchTests.m -------------------------------------------------------------------------------- /charles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/charles.png -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSLKillSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/layout/Library/PreferenceLoader/Preferences/SSLKillSwitch.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSLKillSwitch_prefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabla-c0d3/ssl-kill-switch2/HEAD/layout/Library/PreferenceLoader/Preferences/SSLKillSwitch_prefs.plist --------------------------------------------------------------------------------