├── .gitignore ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── Ishtar │ ├── Helpers │ │ └── RuntimeMagic.swift │ ├── Hooks │ │ ├── UsernameHook.swift │ │ ├── ValidateHookI.swift │ │ ├── ValidateHookII.swift │ │ └── VipHook.swift │ ├── Jinx │ │ ├── Extensions │ │ │ └── URL+realURL.swift │ │ ├── Protocols │ │ │ ├── Hook.swift │ │ │ └── HookFunc.swift │ │ ├── Structs │ │ │ ├── FishBones.swift │ │ │ ├── Mouser.swift │ │ │ ├── PowPow.swift │ │ │ └── Stack.swift │ │ └── Types │ │ │ ├── Config.swift │ │ │ ├── HookTypes.swift │ │ │ └── Hooker.swift │ └── Tweak.swift └── load.s ├── Z_Ishtar.plist └── control /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ishtar 2 | iOSGods generic VIP cracker 3 | -------------------------------------------------------------------------------- /Sources/Ishtar/Helpers/RuntimeMagic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Helpers/RuntimeMagic.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Hooks/UsernameHook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Hooks/UsernameHook.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Hooks/ValidateHookI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Hooks/ValidateHookI.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Hooks/ValidateHookII.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Hooks/ValidateHookII.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Hooks/VipHook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Hooks/VipHook.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Extensions/URL+realURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Extensions/URL+realURL.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Protocols/Hook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Protocols/Hook.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Protocols/HookFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Protocols/HookFunc.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Structs/FishBones.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Structs/FishBones.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Structs/Mouser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Structs/Mouser.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Structs/PowPow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Structs/PowPow.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Structs/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Structs/Stack.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Types/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Types/Config.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Types/HookTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Types/HookTypes.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Jinx/Types/Hooker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Jinx/Types/Hooker.swift -------------------------------------------------------------------------------- /Sources/Ishtar/Tweak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Sources/Ishtar/Tweak.swift -------------------------------------------------------------------------------- /Sources/load.s: -------------------------------------------------------------------------------- 1 | .mod_init_func 2 | .quad _jinxInit 3 | -------------------------------------------------------------------------------- /Z_Ishtar.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/Z_Ishtar.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paisseon/Ishtar/HEAD/control --------------------------------------------------------------------------------