├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Tweak.h ├── control ├── microsoftdetectionbypass.plist ├── pref ├── MDPRootListController.h ├── MDPRootListController.m ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── base.lproj │ │ └── Root.strings │ ├── de.lproj │ │ └── Root.strings │ ├── en.lproj │ │ └── Root.strings │ ├── icon.png │ └── icon@2x.png └── entry.plist └── release ├── com.haoict.microsoftdetectionbypass_1.0.1_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.2_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.3_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.4_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.5_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.6_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.0.6~fix_iphoneos-arm.deb ├── com.haoict.microsoftdetectionbypass_1.2.0_iphoneos-arm.deb └── com.haoict.microsoftdetectionbypass_1.3.0_iphoneos-arm.deb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | Tweak.xm 4 | HAOUtils* 5 | **/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/Tweak.h -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/control -------------------------------------------------------------------------------- /microsoftdetectionbypass.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/microsoftdetectionbypass.plist -------------------------------------------------------------------------------- /pref/MDPRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/MDPRootListController.h -------------------------------------------------------------------------------- /pref/MDPRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/MDPRootListController.m -------------------------------------------------------------------------------- /pref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Makefile -------------------------------------------------------------------------------- /pref/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/Info.plist -------------------------------------------------------------------------------- /pref/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/Root.plist -------------------------------------------------------------------------------- /pref/Resources/base.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/base.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/icon.png -------------------------------------------------------------------------------- /pref/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/Resources/icon@2x.png -------------------------------------------------------------------------------- /pref/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/pref/entry.plist -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.3_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.3_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.4_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.4_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.5_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.5_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.6_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.6_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.0.6~fix_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.0.6~fix_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.2.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.2.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.microsoftdetectionbypass_1.3.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/microsoft-detection-bypass/HEAD/release/com.haoict.microsoftdetectionbypass_1.3.0_iphoneos-arm.deb --------------------------------------------------------------------------------