├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── src ├── .gitignore ├── CallStackInspector.h ├── CallStackInspector.m ├── CallTracer.h ├── CallTracer.m ├── Makefile ├── PlistObjectConverter.h ├── PlistObjectConverter.m ├── SQLiteStorage.h ├── SQLiteStorage.m ├── Tweak.xm ├── control ├── hooks │ ├── CommonCryptorHooks.h │ ├── CommonCryptorHooks.m │ ├── CommonDigestHooks.h │ ├── CommonDigestHooks.m │ ├── CommonHMACHooks.h │ ├── CommonHMACHooks.m │ ├── CommonKeyDerivationHooks.h │ ├── CommonKeyDerivationHooks.m │ ├── DelegateProxies.h │ ├── DelegateProxies.m │ ├── KeychainHooks.h │ ├── KeychainHooks.m │ ├── LibCHooks.h │ ├── LibCHooks.m │ ├── SecurityHooks.h │ └── SecurityHooks.m ├── introspy.plist └── layout │ ├── DEBIAN │ └── control │ └── Library │ └── PreferenceLoader │ └── Preferences │ ├── Introspy.plist │ ├── Introspy2.plist │ └── introspy.png └── testapp ├── .gitignore ├── CryptoTester.h ├── CryptoTester.m ├── FileSystemTester.h ├── FileSystemTester.m ├── HTTPTester.h ├── HTTPTester.m ├── IntrospyTestAppApplication.mm ├── KeyChainTester.h ├── KeyChainTester.m ├── Makefile ├── PasteboardTester.h ├── PasteboardTester.m ├── Resources ├── Info.plist └── introspy.p12 ├── RootViewController.h ├── RootViewController.mm ├── SchemeTester.h ├── SchemeTester.m ├── UserPreferencesTester.h ├── UserPreferencesTester.m ├── XMLTester.h ├── XMLTester.m ├── control └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | .gitconfig 4 | *.sublime-workspace -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CallStackInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/CallStackInspector.h -------------------------------------------------------------------------------- /src/CallStackInspector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/CallStackInspector.m -------------------------------------------------------------------------------- /src/CallTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/CallTracer.h -------------------------------------------------------------------------------- /src/CallTracer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/CallTracer.m -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/PlistObjectConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/PlistObjectConverter.h -------------------------------------------------------------------------------- /src/PlistObjectConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/PlistObjectConverter.m -------------------------------------------------------------------------------- /src/SQLiteStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/SQLiteStorage.h -------------------------------------------------------------------------------- /src/SQLiteStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/SQLiteStorage.m -------------------------------------------------------------------------------- /src/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/Tweak.xm -------------------------------------------------------------------------------- /src/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/control -------------------------------------------------------------------------------- /src/hooks/CommonCryptorHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonCryptorHooks.h -------------------------------------------------------------------------------- /src/hooks/CommonCryptorHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonCryptorHooks.m -------------------------------------------------------------------------------- /src/hooks/CommonDigestHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonDigestHooks.h -------------------------------------------------------------------------------- /src/hooks/CommonDigestHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonDigestHooks.m -------------------------------------------------------------------------------- /src/hooks/CommonHMACHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonHMACHooks.h -------------------------------------------------------------------------------- /src/hooks/CommonHMACHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonHMACHooks.m -------------------------------------------------------------------------------- /src/hooks/CommonKeyDerivationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonKeyDerivationHooks.h -------------------------------------------------------------------------------- /src/hooks/CommonKeyDerivationHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/CommonKeyDerivationHooks.m -------------------------------------------------------------------------------- /src/hooks/DelegateProxies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/DelegateProxies.h -------------------------------------------------------------------------------- /src/hooks/DelegateProxies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/DelegateProxies.m -------------------------------------------------------------------------------- /src/hooks/KeychainHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/KeychainHooks.h -------------------------------------------------------------------------------- /src/hooks/KeychainHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/KeychainHooks.m -------------------------------------------------------------------------------- /src/hooks/LibCHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/LibCHooks.h -------------------------------------------------------------------------------- /src/hooks/LibCHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/LibCHooks.m -------------------------------------------------------------------------------- /src/hooks/SecurityHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/SecurityHooks.h -------------------------------------------------------------------------------- /src/hooks/SecurityHooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/hooks/SecurityHooks.m -------------------------------------------------------------------------------- /src/introspy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/introspy.plist -------------------------------------------------------------------------------- /src/layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/layout/DEBIAN/control -------------------------------------------------------------------------------- /src/layout/Library/PreferenceLoader/Preferences/Introspy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/layout/Library/PreferenceLoader/Preferences/Introspy.plist -------------------------------------------------------------------------------- /src/layout/Library/PreferenceLoader/Preferences/Introspy2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/layout/Library/PreferenceLoader/Preferences/Introspy2.plist -------------------------------------------------------------------------------- /src/layout/Library/PreferenceLoader/Preferences/introspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/src/layout/Library/PreferenceLoader/Preferences/introspy.png -------------------------------------------------------------------------------- /testapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/.gitignore -------------------------------------------------------------------------------- /testapp/CryptoTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/CryptoTester.h -------------------------------------------------------------------------------- /testapp/CryptoTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/CryptoTester.m -------------------------------------------------------------------------------- /testapp/FileSystemTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/FileSystemTester.h -------------------------------------------------------------------------------- /testapp/FileSystemTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/FileSystemTester.m -------------------------------------------------------------------------------- /testapp/HTTPTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/HTTPTester.h -------------------------------------------------------------------------------- /testapp/HTTPTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/HTTPTester.m -------------------------------------------------------------------------------- /testapp/IntrospyTestAppApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/IntrospyTestAppApplication.mm -------------------------------------------------------------------------------- /testapp/KeyChainTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/KeyChainTester.h -------------------------------------------------------------------------------- /testapp/KeyChainTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/KeyChainTester.m -------------------------------------------------------------------------------- /testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/Makefile -------------------------------------------------------------------------------- /testapp/PasteboardTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/PasteboardTester.h -------------------------------------------------------------------------------- /testapp/PasteboardTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/PasteboardTester.m -------------------------------------------------------------------------------- /testapp/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/Resources/Info.plist -------------------------------------------------------------------------------- /testapp/Resources/introspy.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/Resources/introspy.p12 -------------------------------------------------------------------------------- /testapp/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/RootViewController.h -------------------------------------------------------------------------------- /testapp/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/RootViewController.mm -------------------------------------------------------------------------------- /testapp/SchemeTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/SchemeTester.h -------------------------------------------------------------------------------- /testapp/SchemeTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/SchemeTester.m -------------------------------------------------------------------------------- /testapp/UserPreferencesTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/UserPreferencesTester.h -------------------------------------------------------------------------------- /testapp/UserPreferencesTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/UserPreferencesTester.m -------------------------------------------------------------------------------- /testapp/XMLTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/XMLTester.h -------------------------------------------------------------------------------- /testapp/XMLTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/XMLTester.m -------------------------------------------------------------------------------- /testapp/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/control -------------------------------------------------------------------------------- /testapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-iOS/HEAD/testapp/main.m --------------------------------------------------------------------------------