├── LICENSE ├── LatestBuild ├── MMPlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── gaoshilei.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── gaoshilei.xcuserdatad │ └── xcschemes │ ├── MMPlugin.xcscheme │ └── xcschememanagement.plist ├── MMPlugin ├── MMPlugin-Prefix.pch ├── MMPlugin.mm ├── Package │ ├── DEBIAN │ │ ├── control │ │ └── control.txt │ └── Library │ │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ └── MMPlugin.plist └── PackageVersion.plist ├── README.md └── weChatHongBaoApp ├── LatestBuild ├── MakeRedEnvelop ├── Hook │ ├── MakeRedEnvelopEasy.h │ └── MakeRedEnvelopEasy.m ├── Info.plist ├── MakeRedEnvelop.podspec └── WechatRedEnvelop │ ├── WBBaseViewController.h │ ├── WBBaseViewController.m │ ├── WBReceiveRedEnvelopOperation.h │ ├── WBReceiveRedEnvelopOperation.m │ ├── WBRedEnvelopConfig.h │ ├── WBRedEnvelopConfig.m │ ├── WBRedEnvelopParamQueue.h │ ├── WBRedEnvelopParamQueue.m │ ├── WBRedEnvelopTaskManager.h │ ├── WBRedEnvelopTaskManager.m │ ├── WBSettingViewController.h │ ├── WBSettingViewController.m │ ├── WeChatRedEnvelop.h │ ├── WeChatRedEnvelopParam.h │ └── WeChatRedEnvelopParam.m ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ ├── MakeRedEnvelop.podspec.json │ └── MakeRedEnvelopEasy.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── gaoshilei.xcuserdatad │ │ └── xcschemes │ │ ├── MakeRedEnvelop.xcscheme │ │ ├── Pods-weChatHongBaoAppDylib.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── MakeRedEnvelop │ ├── MakeRedEnvelop-Info.plist │ ├── MakeRedEnvelop-dummy.m │ ├── MakeRedEnvelop-prefix.pch │ ├── MakeRedEnvelop-umbrella.h │ ├── MakeRedEnvelop.modulemap │ └── MakeRedEnvelop.xcconfig │ └── Pods-weChatHongBaoAppDylib │ ├── Pods-weChatHongBaoAppDylib-Info.plist │ ├── Pods-weChatHongBaoAppDylib-acknowledgements.markdown │ ├── Pods-weChatHongBaoAppDylib-acknowledgements.plist │ ├── Pods-weChatHongBaoAppDylib-dummy.m │ ├── Pods-weChatHongBaoAppDylib-frameworks.sh │ ├── Pods-weChatHongBaoAppDylib-umbrella.h │ ├── Pods-weChatHongBaoAppDylib.debug.xcconfig │ ├── Pods-weChatHongBaoAppDylib.modulemap │ └── Pods-weChatHongBaoAppDylib.release.xcconfig ├── README.md ├── weChatHongBaoApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── gaoshilei.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── gaoshilei.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── weChatHongBaoApp.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── gaoshilei.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── weChatHongBaoApp ├── Config │ └── MDConfig.plist ├── Info.plist ├── Scripts │ └── quick-resign.sh └── icon.png └── weChatHongBaoAppDylib ├── AntiAntiDebug └── AntiAntiDebug.m ├── Config ├── MDConfigManager.h ├── MDConfigManager.m ├── MDCycriptManager.h ├── MDCycriptManager.m ├── MDMethodTrace.h └── MDMethodTrace.m ├── Logos ├── weChatHongBaoAppDylib.mm └── weChatHongBaoAppDylib.xm ├── Tools ├── LLDBTools.h └── LLDBTools.mm ├── Trace ├── OCMethodTrace.h ├── OCMethodTrace.m ├── OCSelectorTrampolines.h ├── OCSelectorTrampolines.mm ├── a1a2-selectortramps-arm.s ├── a1a2-selectortramps-arm64.s ├── a1a2-selectortramps-i386.s ├── a1a2-selectortramps-x86_64.s ├── a2a3-selectortramps-arm.s ├── a2a3-selectortramps-i386.s ├── a2a3-selectortramps-x86_64.s └── selectortramps.mac ├── fishhook ├── fishhook.c └── fishhook.h ├── weChatHongBaoAppDylib-Prefix.pch ├── weChatHongBaoAppDylib.h └── weChatHongBaoAppDylib.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/gaoshilei/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /MMPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MMPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MMPlugin.xcodeproj/project.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin.xcodeproj/project.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MMPlugin.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/MMPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/MMPlugin.xcscheme -------------------------------------------------------------------------------- /MMPlugin.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MMPlugin/MMPlugin-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/MMPlugin-Prefix.pch -------------------------------------------------------------------------------- /MMPlugin/MMPlugin.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/MMPlugin.mm -------------------------------------------------------------------------------- /MMPlugin/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/Package/DEBIAN/control -------------------------------------------------------------------------------- /MMPlugin/Package/DEBIAN/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/Package/DEBIAN/control.txt -------------------------------------------------------------------------------- /MMPlugin/Package/Library/MobileSubstrate/DynamicLibraries/MMPlugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/Package/Library/MobileSubstrate/DynamicLibraries/MMPlugin.plist -------------------------------------------------------------------------------- /MMPlugin/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/MMPlugin/PackageVersion.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/README.md -------------------------------------------------------------------------------- /weChatHongBaoApp/LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/gaoshilei/Library/Developer/Xcode/DerivedData/weChatHongBaoApp-abpmyujrmlhubbhinrpxhizyvsvp/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/Hook/MakeRedEnvelopEasy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/Hook/MakeRedEnvelopEasy.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/Hook/MakeRedEnvelopEasy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/Hook/MakeRedEnvelopEasy.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/Info.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/MakeRedEnvelop.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/MakeRedEnvelop.podspec -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBBaseViewController.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBBaseViewController.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBReceiveRedEnvelopOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBReceiveRedEnvelopOperation.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBReceiveRedEnvelopOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBReceiveRedEnvelopOperation.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopConfig.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopConfig.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopParamQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopParamQueue.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopParamQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopParamQueue.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopTaskManager.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopTaskManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBRedEnvelopTaskManager.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBSettingViewController.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WBSettingViewController.m -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelop.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelopParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelopParam.h -------------------------------------------------------------------------------- /weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelopParam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/MakeRedEnvelop/WechatRedEnvelop/WeChatRedEnvelopParam.m -------------------------------------------------------------------------------- /weChatHongBaoApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Podfile -------------------------------------------------------------------------------- /weChatHongBaoApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Podfile.lock -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Local Podspecs/MakeRedEnvelop.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Local Podspecs/MakeRedEnvelop.podspec.json -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Local Podspecs/MakeRedEnvelopEasy.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Local Podspecs/MakeRedEnvelopEasy.podspec.json -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/MakeRedEnvelop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/MakeRedEnvelop.xcscheme -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/Pods-weChatHongBaoAppDylib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/Pods-weChatHongBaoAppDylib.xcscheme -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Pods.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-Info.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-dummy.m -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-prefix.pch -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop-umbrella.h -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop.modulemap -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/MakeRedEnvelop/MakeRedEnvelop.xcconfig -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-Info.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-acknowledgements.markdown -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-acknowledgements.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-dummy.m -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-frameworks.sh -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib-umbrella.h -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.debug.xcconfig -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.modulemap -------------------------------------------------------------------------------- /weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/Pods/Target Support Files/Pods-weChatHongBaoAppDylib/Pods-weChatHongBaoAppDylib.release.xcconfig -------------------------------------------------------------------------------- /weChatHongBaoApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/README.md -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcodeproj/project.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcodeproj/xcuserdata/gaoshilei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp.xcworkspace/xcuserdata/gaoshilei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp/Config/MDConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp/Config/MDConfig.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp/Info.plist -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp/Scripts/quick-resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp/Scripts/quick-resign.sh -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoApp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoApp/icon.png -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/AntiAntiDebug/AntiAntiDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/AntiAntiDebug/AntiAntiDebug.m -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDConfigManager.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDConfigManager.m -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDCycriptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDCycriptManager.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDCycriptManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDCycriptManager.m -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDMethodTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDMethodTrace.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDMethodTrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Config/MDMethodTrace.m -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Logos/weChatHongBaoAppDylib.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Logos/weChatHongBaoAppDylib.mm -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Logos/weChatHongBaoAppDylib.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Logos/weChatHongBaoAppDylib.xm -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Tools/LLDBTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Tools/LLDBTools.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Tools/LLDBTools.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Tools/LLDBTools.mm -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCMethodTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCMethodTrace.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCMethodTrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCMethodTrace.m -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCSelectorTrampolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCSelectorTrampolines.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCSelectorTrampolines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/OCSelectorTrampolines.mm -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-arm.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-arm64.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-i386.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a1a2-selectortramps-x86_64.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-arm.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-i386.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/a2a3-selectortramps-x86_64.s -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/Trace/selectortramps.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/Trace/selectortramps.mac -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/fishhook/fishhook.c -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/fishhook/fishhook.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib-Prefix.pch -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib.h -------------------------------------------------------------------------------- /weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoshilei/MMPlugin/HEAD/weChatHongBaoApp/weChatHongBaoAppDylib/weChatHongBaoAppDylib.m --------------------------------------------------------------------------------