├── .gitignore ├── README.md ├── _agent.js ├── agent ├── constants.ts ├── include.ts ├── index.ts ├── logger.ts ├── plugin │ ├── breaker │ │ ├── breaker.ts │ │ └── include.ts │ ├── cipher │ │ ├── README.md │ │ └── cipher.ts │ ├── exp │ │ ├── FTMobileSDK.ts │ │ ├── LuaNativeBridge.ts │ │ ├── NEHASDK.ts │ │ ├── NSAlertController.ts │ │ ├── NSFileManager.ts │ │ ├── NSObject.ts │ │ ├── NSProcessInfo.ts │ │ ├── SBIcon.ts │ │ ├── SpringBoard.ts │ │ ├── UITextField.ts │ │ ├── getenv.ts │ │ ├── include.ts │ │ └── pthread_.ts │ ├── foundation │ │ ├── include.ts │ │ ├── nsbundle.ts │ │ └── nslog.ts │ ├── hooks │ │ ├── NSOperationQueue.ts │ │ ├── NSURLSession.ts │ │ ├── Socket.ts │ │ ├── UILabel.ts │ │ ├── dialog.ts │ │ ├── dump.ts │ │ ├── dyld.ts │ │ ├── hooks.ts │ │ ├── include.ts │ │ ├── libdyld.ts │ │ └── libobjc.ts │ ├── include.ts │ ├── info │ │ ├── include.ts │ │ ├── info.ts │ │ └── itor.ts │ ├── jailbreak │ │ ├── enum.ts │ │ ├── hooks.ts │ │ ├── include.ts │ │ ├── jail.ts │ │ └── thread.ts │ ├── lang │ │ ├── include.ts │ │ ├── oc │ │ │ ├── ViewController.ts │ │ │ ├── button.ts │ │ │ ├── clazz.ts │ │ │ ├── include.ts │ │ │ ├── method.ts │ │ │ ├── oc.ts │ │ │ └── types │ │ │ │ ├── include.ts │ │ │ │ └── objc_method.ts │ │ └── swift │ │ │ ├── include.ts │ │ │ └── main.ts │ ├── memory │ │ ├── findsvc.ts │ │ └── include.ts │ └── service │ │ ├── include.ts │ │ └── main.ts ├── runtime.ts ├── types.ts └── utils.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/README.md -------------------------------------------------------------------------------- /_agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/_agent.js -------------------------------------------------------------------------------- /agent/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/constants.ts -------------------------------------------------------------------------------- /agent/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/include.ts -------------------------------------------------------------------------------- /agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/index.ts -------------------------------------------------------------------------------- /agent/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/logger.ts -------------------------------------------------------------------------------- /agent/plugin/breaker/breaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/breaker/breaker.ts -------------------------------------------------------------------------------- /agent/plugin/breaker/include.ts: -------------------------------------------------------------------------------- 1 | import './breaker.js' -------------------------------------------------------------------------------- /agent/plugin/cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/cipher/README.md -------------------------------------------------------------------------------- /agent/plugin/cipher/cipher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/cipher/cipher.ts -------------------------------------------------------------------------------- /agent/plugin/exp/FTMobileSDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/FTMobileSDK.ts -------------------------------------------------------------------------------- /agent/plugin/exp/LuaNativeBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/LuaNativeBridge.ts -------------------------------------------------------------------------------- /agent/plugin/exp/NEHASDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/NEHASDK.ts -------------------------------------------------------------------------------- /agent/plugin/exp/NSAlertController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/NSAlertController.ts -------------------------------------------------------------------------------- /agent/plugin/exp/NSFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/NSFileManager.ts -------------------------------------------------------------------------------- /agent/plugin/exp/NSObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/NSObject.ts -------------------------------------------------------------------------------- /agent/plugin/exp/NSProcessInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/NSProcessInfo.ts -------------------------------------------------------------------------------- /agent/plugin/exp/SBIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/SBIcon.ts -------------------------------------------------------------------------------- /agent/plugin/exp/SpringBoard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/SpringBoard.ts -------------------------------------------------------------------------------- /agent/plugin/exp/UITextField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/UITextField.ts -------------------------------------------------------------------------------- /agent/plugin/exp/getenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/getenv.ts -------------------------------------------------------------------------------- /agent/plugin/exp/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/include.ts -------------------------------------------------------------------------------- /agent/plugin/exp/pthread_.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/exp/pthread_.ts -------------------------------------------------------------------------------- /agent/plugin/foundation/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/foundation/include.ts -------------------------------------------------------------------------------- /agent/plugin/foundation/nsbundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/foundation/nsbundle.ts -------------------------------------------------------------------------------- /agent/plugin/foundation/nslog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/foundation/nslog.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/NSOperationQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/NSOperationQueue.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/NSURLSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/NSURLSession.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/Socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/Socket.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/UILabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/UILabel.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/dialog.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/dump.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/dyld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/dyld.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/hooks.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/include.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/libdyld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/libdyld.ts -------------------------------------------------------------------------------- /agent/plugin/hooks/libobjc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/hooks/libobjc.ts -------------------------------------------------------------------------------- /agent/plugin/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/include.ts -------------------------------------------------------------------------------- /agent/plugin/info/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/info/include.ts -------------------------------------------------------------------------------- /agent/plugin/info/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/info/info.ts -------------------------------------------------------------------------------- /agent/plugin/info/itor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/info/itor.ts -------------------------------------------------------------------------------- /agent/plugin/jailbreak/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/jailbreak/enum.ts -------------------------------------------------------------------------------- /agent/plugin/jailbreak/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/jailbreak/hooks.ts -------------------------------------------------------------------------------- /agent/plugin/jailbreak/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/jailbreak/include.ts -------------------------------------------------------------------------------- /agent/plugin/jailbreak/jail.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /agent/plugin/jailbreak/thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/jailbreak/thread.ts -------------------------------------------------------------------------------- /agent/plugin/lang/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/include.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/ViewController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/ViewController.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/button.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/clazz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/clazz.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/include.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/include.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/method.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/oc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/oc.ts -------------------------------------------------------------------------------- /agent/plugin/lang/oc/types/include.ts: -------------------------------------------------------------------------------- 1 | import './objc_method.js' -------------------------------------------------------------------------------- /agent/plugin/lang/oc/types/objc_method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/lang/oc/types/objc_method.ts -------------------------------------------------------------------------------- /agent/plugin/lang/swift/include.ts: -------------------------------------------------------------------------------- 1 | import './main.js' -------------------------------------------------------------------------------- /agent/plugin/lang/swift/main.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /agent/plugin/memory/findsvc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/memory/findsvc.ts -------------------------------------------------------------------------------- /agent/plugin/memory/include.ts: -------------------------------------------------------------------------------- 1 | import './findsvc.js' -------------------------------------------------------------------------------- /agent/plugin/service/include.ts: -------------------------------------------------------------------------------- 1 | import './main.js' -------------------------------------------------------------------------------- /agent/plugin/service/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/plugin/service/main.ts -------------------------------------------------------------------------------- /agent/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/runtime.ts -------------------------------------------------------------------------------- /agent/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/types.ts -------------------------------------------------------------------------------- /agent/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/agent/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axhlzy/IOSHookScripts/HEAD/tsconfig.json --------------------------------------------------------------------------------