├── .gitignore ├── 01_arm背景知识.md ├── 01_汇编第一讲_存储.md ├── 01_汇编第二讲_寄存器.md ├── 02_应用砸壳.md ├── 02_越狱环境配置.md ├── 02_逆向前提知识.md ├── 02编译.md ├── 03ARM64相关知识.md ├── 03_arm指令.md ├── 04_App签名机制.md ├── 05_重签名.md ├── 05_重签名codesign.sh ├── 06_工具篇.md ├── 07_MachO文件格式.md ├── 08_LLDB汇编调试.md ├── 09_代码防护.md ├── 10_课堂.md ├── 11_02_java_spring.md ├── 11_java项目实战.md ├── 12三大命令.md ├── 13lipo的操作和符号还原.md ├── 14LLDB 对oc方法下断点.md ├── 14LLDB使用.md ├── 15_blockArm.s ├── 999_excample.s ├── Clang ├── 01_浅谈编译器.md └── 02_Clang的简单使用.md ├── Cycript心得.md ├── Entitlements.plist ├── MResigning.sh ├── Makefile ├── Makefile.md ├── blmsth.png ├── blqtyy.png ├── blzth.png ├── dgfz.png ├── gzzdmsth.png ├── jdfz.png ├── tjfz.png ├── zdbldsy.png ├── zjfz.png └── 命令行定义变量.png ├── MonkeyDev ├── change.log ├── class-dump ├── createIPA.command ├── cycript ├── dump.js ├── dump.py ├── md ├── md-install ├── md-uninstall ├── md-update ├── monkey.log ├── monkeyparser ├── mpack.sh ├── pack.sh └── quick-resign.sh ├── Playground ├── Associated的内存占用情况 │ └── main.m ├── Block转C内存占用 │ ├── main.cpp │ └── main.m ├── C可变数组 │ └── main.c ├── NSArray的内存 │ └── main.m ├── Playground.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── liangze.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Playground.xcscheme │ └── xcuserdata │ │ └── liangze.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Playground.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── liangze.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── Playground │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── liangze.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Pods-Playground.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ └── Pods-Playground │ │ ├── Pods-Playground-Info.plist │ │ ├── Pods-Playground-acknowledgements.markdown │ │ ├── Pods-Playground-acknowledgements.plist │ │ ├── Pods-Playground-dummy.m │ │ ├── Pods-Playground-umbrella.h │ │ ├── Pods-Playground.debug.xcconfig │ │ ├── Pods-Playground.modulemap │ │ └── Pods-Playground.release.xcconfig ├── 手动分配内存 │ └── main.m ├── 探索Struct内存分布 │ └── main.m └── 自定义类的内存占用 │ ├── main.cpp │ └── main.m ├── Resource └── IDA常用快捷键.png ├── autoResigning.sh ├── autoResigningEnvPath.md ├── createIPA.command ├── embedded.mobileprovision ├── keynote.key ├── mpack.sh ├── option.sh ├── os.js ├── pack.sh ├── test.o ├── test.s ├── test.sh ├── tweak.xm ├── unarcIpaToArc.sh ├── 城信.md ├── 实战wechat.md ├── 斗音.m ├── 斗音2.m ├── 斗音3.m ├── 斗音3.md ├── 新聊.md └── 环境搭建.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /01_arm背景知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/01_arm背景知识.md -------------------------------------------------------------------------------- /01_汇编第一讲_存储.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/01_汇编第一讲_存储.md -------------------------------------------------------------------------------- /01_汇编第二讲_寄存器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/01_汇编第二讲_寄存器.md -------------------------------------------------------------------------------- /02_应用砸壳.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/02_应用砸壳.md -------------------------------------------------------------------------------- /02_越狱环境配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/02_越狱环境配置.md -------------------------------------------------------------------------------- /02_逆向前提知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/02_逆向前提知识.md -------------------------------------------------------------------------------- /02编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/02编译.md -------------------------------------------------------------------------------- /03ARM64相关知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/03ARM64相关知识.md -------------------------------------------------------------------------------- /03_arm指令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/03_arm指令.md -------------------------------------------------------------------------------- /04_App签名机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/04_App签名机制.md -------------------------------------------------------------------------------- /05_重签名.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/05_重签名.md -------------------------------------------------------------------------------- /05_重签名codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/05_重签名codesign.sh -------------------------------------------------------------------------------- /06_工具篇.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/06_工具篇.md -------------------------------------------------------------------------------- /07_MachO文件格式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/07_MachO文件格式.md -------------------------------------------------------------------------------- /08_LLDB汇编调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/08_LLDB汇编调试.md -------------------------------------------------------------------------------- /09_代码防护.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/09_代码防护.md -------------------------------------------------------------------------------- /10_课堂.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/10_课堂.md -------------------------------------------------------------------------------- /11_02_java_spring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/11_02_java_spring.md -------------------------------------------------------------------------------- /11_java项目实战.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/11_java项目实战.md -------------------------------------------------------------------------------- /12三大命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/12三大命令.md -------------------------------------------------------------------------------- /13lipo的操作和符号还原.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/13lipo的操作和符号还原.md -------------------------------------------------------------------------------- /14LLDB 对oc方法下断点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/14LLDB 对oc方法下断点.md -------------------------------------------------------------------------------- /14LLDB使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/14LLDB使用.md -------------------------------------------------------------------------------- /15_blockArm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/15_blockArm.s -------------------------------------------------------------------------------- /999_excample.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/999_excample.s -------------------------------------------------------------------------------- /Clang/01_浅谈编译器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Clang/01_浅谈编译器.md -------------------------------------------------------------------------------- /Clang/02_Clang的简单使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Clang/02_Clang的简单使用.md -------------------------------------------------------------------------------- /Cycript心得.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Cycript心得.md -------------------------------------------------------------------------------- /Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Entitlements.plist -------------------------------------------------------------------------------- /MResigning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MResigning.sh -------------------------------------------------------------------------------- /Makefile/Makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/Makefile.md -------------------------------------------------------------------------------- /Makefile/blmsth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/blmsth.png -------------------------------------------------------------------------------- /Makefile/blqtyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/blqtyy.png -------------------------------------------------------------------------------- /Makefile/blzth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/blzth.png -------------------------------------------------------------------------------- /Makefile/dgfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/dgfz.png -------------------------------------------------------------------------------- /Makefile/gzzdmsth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/gzzdmsth.png -------------------------------------------------------------------------------- /Makefile/jdfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/jdfz.png -------------------------------------------------------------------------------- /Makefile/tjfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/tjfz.png -------------------------------------------------------------------------------- /Makefile/zdbldsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/zdbldsy.png -------------------------------------------------------------------------------- /Makefile/zjfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/zjfz.png -------------------------------------------------------------------------------- /Makefile/命令行定义变量.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Makefile/命令行定义变量.png -------------------------------------------------------------------------------- /MonkeyDev/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/change.log -------------------------------------------------------------------------------- /MonkeyDev/class-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/class-dump -------------------------------------------------------------------------------- /MonkeyDev/createIPA.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/createIPA.command -------------------------------------------------------------------------------- /MonkeyDev/cycript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/cycript -------------------------------------------------------------------------------- /MonkeyDev/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/dump.js -------------------------------------------------------------------------------- /MonkeyDev/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/dump.py -------------------------------------------------------------------------------- /MonkeyDev/md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/md -------------------------------------------------------------------------------- /MonkeyDev/md-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/md-install -------------------------------------------------------------------------------- /MonkeyDev/md-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/md-uninstall -------------------------------------------------------------------------------- /MonkeyDev/md-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/md-update -------------------------------------------------------------------------------- /MonkeyDev/monkey.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/monkey.log -------------------------------------------------------------------------------- /MonkeyDev/monkeyparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/monkeyparser -------------------------------------------------------------------------------- /MonkeyDev/mpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/mpack.sh -------------------------------------------------------------------------------- /MonkeyDev/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/pack.sh -------------------------------------------------------------------------------- /MonkeyDev/quick-resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/MonkeyDev/quick-resign.sh -------------------------------------------------------------------------------- /Playground/Associated的内存占用情况/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Associated的内存占用情况/main.m -------------------------------------------------------------------------------- /Playground/Block转C内存占用/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Block转C内存占用/main.cpp -------------------------------------------------------------------------------- /Playground/Block转C内存占用/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Block转C内存占用/main.m -------------------------------------------------------------------------------- /Playground/C可变数组/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/C可变数组/main.c -------------------------------------------------------------------------------- /Playground/NSArray的内存/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/NSArray的内存/main.m -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/liangze.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/liangze.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/xcshareddata/xcschemes/Playground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/xcshareddata/xcschemes/Playground.xcscheme -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/xcuserdata/liangze.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/xcuserdata/liangze.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Playground/Playground.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Playground/Playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Playground/Playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Playground/Playground.xcworkspace/xcuserdata/liangze.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground.xcworkspace/xcuserdata/liangze.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Playground/Playground/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/AppDelegate.h -------------------------------------------------------------------------------- /Playground/Playground/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/AppDelegate.m -------------------------------------------------------------------------------- /Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Playground/Playground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Playground/Playground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Playground/Playground/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Playground/Playground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/Info.plist -------------------------------------------------------------------------------- /Playground/Playground/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/ViewController.h -------------------------------------------------------------------------------- /Playground/Playground/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/ViewController.m -------------------------------------------------------------------------------- /Playground/Playground/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Playground/main.m -------------------------------------------------------------------------------- /Playground/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Podfile -------------------------------------------------------------------------------- /Playground/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: 1f6229ba3b08961d6bc70bd2d0d5563e866c1bc5 2 | 3 | COCOAPODS: 1.8.4 4 | -------------------------------------------------------------------------------- /Playground/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: 1f6229ba3b08961d6bc70bd2d0d5563e866c1bc5 2 | 3 | COCOAPODS: 1.8.4 4 | -------------------------------------------------------------------------------- /Playground/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Playground/Pods/Pods.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/Pods-Playground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Pods.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/Pods-Playground.xcscheme -------------------------------------------------------------------------------- /Playground/Pods/Pods.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Pods.xcodeproj/xcuserdata/liangze.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-Info.plist -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-acknowledgements.markdown -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-acknowledgements.plist -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-dummy.m -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground-umbrella.h -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.debug.xcconfig -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.modulemap -------------------------------------------------------------------------------- /Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/Pods/Target Support Files/Pods-Playground/Pods-Playground.release.xcconfig -------------------------------------------------------------------------------- /Playground/手动分配内存/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/手动分配内存/main.m -------------------------------------------------------------------------------- /Playground/探索Struct内存分布/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/探索Struct内存分布/main.m -------------------------------------------------------------------------------- /Playground/自定义类的内存占用/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/自定义类的内存占用/main.cpp -------------------------------------------------------------------------------- /Playground/自定义类的内存占用/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Playground/自定义类的内存占用/main.m -------------------------------------------------------------------------------- /Resource/IDA常用快捷键.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/Resource/IDA常用快捷键.png -------------------------------------------------------------------------------- /autoResigning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/autoResigning.sh -------------------------------------------------------------------------------- /autoResigningEnvPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/autoResigningEnvPath.md -------------------------------------------------------------------------------- /createIPA.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/createIPA.command -------------------------------------------------------------------------------- /embedded.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/embedded.mobileprovision -------------------------------------------------------------------------------- /keynote.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/keynote.key -------------------------------------------------------------------------------- /mpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/mpack.sh -------------------------------------------------------------------------------- /option.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/option.sh -------------------------------------------------------------------------------- /os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/os.js -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/pack.sh -------------------------------------------------------------------------------- /test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/test.o -------------------------------------------------------------------------------- /test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/test.s -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/test.sh -------------------------------------------------------------------------------- /tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/tweak.xm -------------------------------------------------------------------------------- /unarcIpaToArc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/unarcIpaToArc.sh -------------------------------------------------------------------------------- /城信.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /实战wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/实战wechat.md -------------------------------------------------------------------------------- /斗音.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/斗音.m -------------------------------------------------------------------------------- /斗音2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/斗音2.m -------------------------------------------------------------------------------- /斗音3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/斗音3.m -------------------------------------------------------------------------------- /斗音3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/斗音3.md -------------------------------------------------------------------------------- /新聊.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/新聊.md -------------------------------------------------------------------------------- /环境搭建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZRight123/ARM/HEAD/环境搭建.md --------------------------------------------------------------------------------