├── LICENSE ├── MGSpoof.plist ├── Makefile ├── README.md ├── Tweak.xm ├── capstone ├── arm.h ├── arm64.h ├── bpf.h ├── capstone.h ├── cs_operand.h ├── evm.h ├── m680x.h ├── m68k.h ├── mips.h ├── mos65xx.h ├── platform.h ├── ppc.h ├── riscv.h ├── sh.h ├── sparc.h ├── systemz.h ├── tms320c64x.h ├── tricore.h ├── wasm.h ├── x86.h └── xcore.h ├── control ├── libcapstone.a ├── mapping.h ├── mapping.mm └── mgspoofhelper ├── MGAppPickerController.h ├── MGAppPickerController.m ├── MGKeyPickerController.h ├── MGKeyPickerController.m ├── MGSpoofHelperAppDelegate.h ├── MGSpoofHelperAppDelegate.m ├── MGSpoofHelperPrefs.h ├── MGSpoofHelperPrefs.m ├── MGSpoofHelperRootViewController.h ├── MGSpoofHelperRootViewController.m ├── Makefile ├── Resources ├── AppIcon29x29.png ├── AppIcon29x29@2x.png ├── AppIcon29x29@3x.png ├── AppIcon40x40.png ├── AppIcon40x40@2x.png ├── AppIcon40x40@3x.png ├── AppIcon50x50.png ├── AppIcon50x50@2x.png ├── AppIcon57x57.png ├── AppIcon57x57@2x.png ├── AppIcon57x57@3x.png ├── AppIcon60x60.png ├── AppIcon60x60@2x.png ├── AppIcon60x60@3x.png ├── AppIcon72x72.png ├── AppIcon72x72@2x.png ├── AppIcon76x76.png ├── AppIcon76x76@2x.png ├── Info.plist ├── LaunchImage-700-568h@2x.png ├── LaunchImage-700-Landscape@2x~ipad.png ├── LaunchImage-700-Landscape~ipad.png ├── LaunchImage-700-Portrait@2x~ipad.png ├── LaunchImage-700-Portrait~ipad.png ├── LaunchImage-800-667h@2x.png ├── LaunchImage-800-Landscape-736h@3x.png ├── LaunchImage-800-Portrait-736h@3x.png ├── LaunchImage.png └── LaunchImage@2x.png ├── ent.xml └── main.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/LICENSE -------------------------------------------------------------------------------- /MGSpoof.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/MGSpoof.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/Tweak.xm -------------------------------------------------------------------------------- /capstone/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/arm.h -------------------------------------------------------------------------------- /capstone/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/arm64.h -------------------------------------------------------------------------------- /capstone/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/bpf.h -------------------------------------------------------------------------------- /capstone/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/capstone.h -------------------------------------------------------------------------------- /capstone/cs_operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/cs_operand.h -------------------------------------------------------------------------------- /capstone/evm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/evm.h -------------------------------------------------------------------------------- /capstone/m680x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/m680x.h -------------------------------------------------------------------------------- /capstone/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/m68k.h -------------------------------------------------------------------------------- /capstone/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/mips.h -------------------------------------------------------------------------------- /capstone/mos65xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/mos65xx.h -------------------------------------------------------------------------------- /capstone/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/platform.h -------------------------------------------------------------------------------- /capstone/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/ppc.h -------------------------------------------------------------------------------- /capstone/riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/riscv.h -------------------------------------------------------------------------------- /capstone/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/sh.h -------------------------------------------------------------------------------- /capstone/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/sparc.h -------------------------------------------------------------------------------- /capstone/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/systemz.h -------------------------------------------------------------------------------- /capstone/tms320c64x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/tms320c64x.h -------------------------------------------------------------------------------- /capstone/tricore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/tricore.h -------------------------------------------------------------------------------- /capstone/wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/wasm.h -------------------------------------------------------------------------------- /capstone/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/x86.h -------------------------------------------------------------------------------- /capstone/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/capstone/xcore.h -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/control -------------------------------------------------------------------------------- /libcapstone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/libcapstone.a -------------------------------------------------------------------------------- /mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mapping.h -------------------------------------------------------------------------------- /mapping.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mapping.mm -------------------------------------------------------------------------------- /mgspoofhelper/MGAppPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGAppPickerController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGAppPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGAppPickerController.m -------------------------------------------------------------------------------- /mgspoofhelper/MGKeyPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGKeyPickerController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGKeyPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGKeyPickerController.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperAppDelegate.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperAppDelegate.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperPrefs.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperPrefs.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperRootViewController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperRootViewController.m -------------------------------------------------------------------------------- /mgspoofhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/Makefile -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon50x50.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon50x50@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon72x72.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon72x72@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon76x76.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/Resources/Info.plist -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Landscape~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-Landscape-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/ent.xml -------------------------------------------------------------------------------- /mgspoofhelper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/MGSpoof/HEAD/mgspoofhelper/main.m --------------------------------------------------------------------------------