├── .gitignore ├── Injector.py ├── LICENSE ├── Operator.py ├── README.md ├── Util.py ├── iosh.py ├── iosh_agent.dylib ├── iosh_agent.plist └── screenshot └── memory_write ├── [STEP1]This_Is_Normal.png ├── [STEP2]Checkout_Target.png └── [STEP3]Hacking->(CMP W0, #100).png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/.gitignore -------------------------------------------------------------------------------- /Injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/Injector.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/LICENSE -------------------------------------------------------------------------------- /Operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/Operator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/README.md -------------------------------------------------------------------------------- /Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/Util.py -------------------------------------------------------------------------------- /iosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/iosh.py -------------------------------------------------------------------------------- /iosh_agent.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/iosh_agent.dylib -------------------------------------------------------------------------------- /iosh_agent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/iosh_agent.plist -------------------------------------------------------------------------------- /screenshot/memory_write/[STEP1]This_Is_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/screenshot/memory_write/[STEP1]This_Is_Normal.png -------------------------------------------------------------------------------- /screenshot/memory_write/[STEP2]Checkout_Target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/screenshot/memory_write/[STEP2]Checkout_Target.png -------------------------------------------------------------------------------- /screenshot/memory_write/[STEP3]Hacking->(CMP W0, #100).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYlab/iosh/HEAD/screenshot/memory_write/[STEP3]Hacking->(CMP W0, #100).png --------------------------------------------------------------------------------