├── LatestBuild ├── NewsHooker.xcodeproj └── project.pbxproj ├── NewsHooker ├── Config │ └── MDConfig.plist ├── Info.plist ├── Scripts │ └── quick-resign.sh ├── Target.plist ├── TargetApp │ └── put ipa or app here └── icon.png ├── NewsHookerDylib ├── AntiAntiDebug │ └── AntiAntiDebug.m ├── Config │ ├── ANYMethodLog.h │ ├── ANYMethodLog.m │ ├── MDConfigManager.h │ ├── MDConfigManager.m │ ├── MDCycriptManager.h │ ├── MDCycriptManager.m │ ├── MDMethodTrace.h │ └── MDMethodTrace.m ├── Logos │ ├── NewsHookerDylib.mm │ └── NewsHookerDylib.xm ├── NewsHooker.h ├── NewsHooker.m ├── NewsHookerDylib-Prefix.pch ├── NewsHookerDylib.h ├── NewsHookerDylib.m ├── Tools │ ├── LLDBTools.h │ └── LLDBTools.mm └── fishhook │ ├── fishhook.c │ └── fishhook.h ├── README.md └── img ├── NeteaseNews-before-hook.PNG ├── NewsBoard-header.png ├── Reveal-News.png ├── Reveal-RevealServer.png ├── Reveal-controller.png ├── add-SSL-Proxying.png ├── app-cert.png ├── charles-start-app.png ├── create-MonkeyApp.png ├── decrypt-news.png ├── didReceivedAd.png ├── didReceivedAd2.png ├── first-trace.png ├── frida-ps.png ├── install-charles.png ├── ios-http-proxy.png ├── log-setArray.png ├── log-with-no-scrollerView.png ├── log-with-scrollerView.png ├── method-with-ad.png ├── property-with-ad.png ├── request-ad.png ├── request-recommend.png ├── show-content.png ├── target-app.png └── trust-cert.jpeg /LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/lan/Library/Developer/Xcode/DerivedData/NewsHooker-akzjpnbwevkydqaasastymgwmfjg/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /NewsHooker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHooker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NewsHooker/Config/MDConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHooker/Config/MDConfig.plist -------------------------------------------------------------------------------- /NewsHooker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHooker/Info.plist -------------------------------------------------------------------------------- /NewsHooker/Scripts/quick-resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHooker/Scripts/quick-resign.sh -------------------------------------------------------------------------------- /NewsHooker/Target.plist: -------------------------------------------------------------------------------- 1 | /Users/lan/Desktop/NewsHooker/NewsHooker/NewsHooker/TargetApp/NewsHooker.app/Info.plist -------------------------------------------------------------------------------- /NewsHooker/TargetApp/put ipa or app here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NewsHooker/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHooker/icon.png -------------------------------------------------------------------------------- /NewsHookerDylib/AntiAntiDebug/AntiAntiDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/AntiAntiDebug/AntiAntiDebug.m -------------------------------------------------------------------------------- /NewsHookerDylib/Config/ANYMethodLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/ANYMethodLog.h -------------------------------------------------------------------------------- /NewsHookerDylib/Config/ANYMethodLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/ANYMethodLog.m -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDConfigManager.h -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDConfigManager.m -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDCycriptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDCycriptManager.h -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDCycriptManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDCycriptManager.m -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDMethodTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDMethodTrace.h -------------------------------------------------------------------------------- /NewsHookerDylib/Config/MDMethodTrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Config/MDMethodTrace.m -------------------------------------------------------------------------------- /NewsHookerDylib/Logos/NewsHookerDylib.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Logos/NewsHookerDylib.mm -------------------------------------------------------------------------------- /NewsHookerDylib/Logos/NewsHookerDylib.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Logos/NewsHookerDylib.xm -------------------------------------------------------------------------------- /NewsHookerDylib/NewsHooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/NewsHooker.h -------------------------------------------------------------------------------- /NewsHookerDylib/NewsHooker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/NewsHooker.m -------------------------------------------------------------------------------- /NewsHookerDylib/NewsHookerDylib-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/NewsHookerDylib-Prefix.pch -------------------------------------------------------------------------------- /NewsHookerDylib/NewsHookerDylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/NewsHookerDylib.h -------------------------------------------------------------------------------- /NewsHookerDylib/NewsHookerDylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/NewsHookerDylib.m -------------------------------------------------------------------------------- /NewsHookerDylib/Tools/LLDBTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Tools/LLDBTools.h -------------------------------------------------------------------------------- /NewsHookerDylib/Tools/LLDBTools.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/Tools/LLDBTools.mm -------------------------------------------------------------------------------- /NewsHookerDylib/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/fishhook/fishhook.c -------------------------------------------------------------------------------- /NewsHookerDylib/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/NewsHookerDylib/fishhook/fishhook.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/README.md -------------------------------------------------------------------------------- /img/NeteaseNews-before-hook.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/NeteaseNews-before-hook.PNG -------------------------------------------------------------------------------- /img/NewsBoard-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/NewsBoard-header.png -------------------------------------------------------------------------------- /img/Reveal-News.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/Reveal-News.png -------------------------------------------------------------------------------- /img/Reveal-RevealServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/Reveal-RevealServer.png -------------------------------------------------------------------------------- /img/Reveal-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/Reveal-controller.png -------------------------------------------------------------------------------- /img/add-SSL-Proxying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/add-SSL-Proxying.png -------------------------------------------------------------------------------- /img/app-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/app-cert.png -------------------------------------------------------------------------------- /img/charles-start-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/charles-start-app.png -------------------------------------------------------------------------------- /img/create-MonkeyApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/create-MonkeyApp.png -------------------------------------------------------------------------------- /img/decrypt-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/decrypt-news.png -------------------------------------------------------------------------------- /img/didReceivedAd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/didReceivedAd.png -------------------------------------------------------------------------------- /img/didReceivedAd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/didReceivedAd2.png -------------------------------------------------------------------------------- /img/first-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/first-trace.png -------------------------------------------------------------------------------- /img/frida-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/frida-ps.png -------------------------------------------------------------------------------- /img/install-charles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/install-charles.png -------------------------------------------------------------------------------- /img/ios-http-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/ios-http-proxy.png -------------------------------------------------------------------------------- /img/log-setArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/log-setArray.png -------------------------------------------------------------------------------- /img/log-with-no-scrollerView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/log-with-no-scrollerView.png -------------------------------------------------------------------------------- /img/log-with-scrollerView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/log-with-scrollerView.png -------------------------------------------------------------------------------- /img/method-with-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/method-with-ad.png -------------------------------------------------------------------------------- /img/property-with-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/property-with-ad.png -------------------------------------------------------------------------------- /img/request-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/request-ad.png -------------------------------------------------------------------------------- /img/request-recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/request-recommend.png -------------------------------------------------------------------------------- /img/show-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/show-content.png -------------------------------------------------------------------------------- /img/target-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/target-app.png -------------------------------------------------------------------------------- /img/trust-cert.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanvsblue/NewsHooker/HEAD/img/trust-cert.jpeg --------------------------------------------------------------------------------