├── .gitignore ├── Aweme ├── AWEComment.js └── AWECommentPanelCell_configWithComment_.js ├── LICENSE ├── Python ├── ModuleCache.py └── darkimage.py ├── README.md ├── WeChatWordCloud ├── SupportFiles │ ├── heart.jpg │ ├── heart.sketch │ ├── simsun.ttf │ └── stopwords.txt ├── databasemgr.py └── wx_wordcloud.py ├── frida ├── AFNetWorking │ └── AFHTTPSessionManager.js ├── NSURLSession.js ├── WKWebView_evaluateJavaScript.js ├── __handlers__ │ └── NSMutableURLRequest │ │ ├── addValue_forHTTPHeaderField_.js │ │ ├── setAllHTTPHeaderFields_.js │ │ └── setValue_forHTTPHeaderField_.js ├── appinfo.js ├── appinfo.py ├── dladdr_findsymbol.js ├── dyld_func_trace.js ├── dyld_images.py ├── frida_ios_snippets.md ├── get_applications.py ├── jailbreak_trace.js ├── keychain_cleaner.js ├── keychain_dump.js ├── objc_msgsend.py ├── openURL_trace.js ├── scan_svc_instrution.js └── stalker-with-cmodule-trace-svc.js └── personal ├── bj_zjw ├── bj_zjw_house_trade_stat.py ├── com.troy.house_trade_stat.plist ├── database.py └── house_trade_stat.db ├── bj_zjw_stock_houses_stat.py ├── privacy.py └── query_garage_trading.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Aweme/AWEComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/Aweme/AWEComment.js -------------------------------------------------------------------------------- /Aweme/AWECommentPanelCell_configWithComment_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/Aweme/AWECommentPanelCell_configWithComment_.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/ModuleCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/Python/ModuleCache.py -------------------------------------------------------------------------------- /Python/darkimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/Python/darkimage.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iScripts -------------------------------------------------------------------------------- /WeChatWordCloud/SupportFiles/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/SupportFiles/heart.jpg -------------------------------------------------------------------------------- /WeChatWordCloud/SupportFiles/heart.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/SupportFiles/heart.sketch -------------------------------------------------------------------------------- /WeChatWordCloud/SupportFiles/simsun.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/SupportFiles/simsun.ttf -------------------------------------------------------------------------------- /WeChatWordCloud/SupportFiles/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/SupportFiles/stopwords.txt -------------------------------------------------------------------------------- /WeChatWordCloud/databasemgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/databasemgr.py -------------------------------------------------------------------------------- /WeChatWordCloud/wx_wordcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/WeChatWordCloud/wx_wordcloud.py -------------------------------------------------------------------------------- /frida/AFNetWorking/AFHTTPSessionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/AFNetWorking/AFHTTPSessionManager.js -------------------------------------------------------------------------------- /frida/NSURLSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/NSURLSession.js -------------------------------------------------------------------------------- /frida/WKWebView_evaluateJavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/WKWebView_evaluateJavaScript.js -------------------------------------------------------------------------------- /frida/__handlers__/NSMutableURLRequest/addValue_forHTTPHeaderField_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/__handlers__/NSMutableURLRequest/addValue_forHTTPHeaderField_.js -------------------------------------------------------------------------------- /frida/__handlers__/NSMutableURLRequest/setAllHTTPHeaderFields_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/__handlers__/NSMutableURLRequest/setAllHTTPHeaderFields_.js -------------------------------------------------------------------------------- /frida/__handlers__/NSMutableURLRequest/setValue_forHTTPHeaderField_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/__handlers__/NSMutableURLRequest/setValue_forHTTPHeaderField_.js -------------------------------------------------------------------------------- /frida/appinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/appinfo.js -------------------------------------------------------------------------------- /frida/appinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/appinfo.py -------------------------------------------------------------------------------- /frida/dladdr_findsymbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/dladdr_findsymbol.js -------------------------------------------------------------------------------- /frida/dyld_func_trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/dyld_func_trace.js -------------------------------------------------------------------------------- /frida/dyld_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/dyld_images.py -------------------------------------------------------------------------------- /frida/frida_ios_snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/frida_ios_snippets.md -------------------------------------------------------------------------------- /frida/get_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/get_applications.py -------------------------------------------------------------------------------- /frida/jailbreak_trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/jailbreak_trace.js -------------------------------------------------------------------------------- /frida/keychain_cleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/keychain_cleaner.js -------------------------------------------------------------------------------- /frida/keychain_dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/keychain_dump.js -------------------------------------------------------------------------------- /frida/objc_msgsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/objc_msgsend.py -------------------------------------------------------------------------------- /frida/openURL_trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/openURL_trace.js -------------------------------------------------------------------------------- /frida/scan_svc_instrution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/scan_svc_instrution.js -------------------------------------------------------------------------------- /frida/stalker-with-cmodule-trace-svc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/frida/stalker-with-cmodule-trace-svc.js -------------------------------------------------------------------------------- /personal/bj_zjw/bj_zjw_house_trade_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/bj_zjw/bj_zjw_house_trade_stat.py -------------------------------------------------------------------------------- /personal/bj_zjw/com.troy.house_trade_stat.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/bj_zjw/com.troy.house_trade_stat.plist -------------------------------------------------------------------------------- /personal/bj_zjw/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/bj_zjw/database.py -------------------------------------------------------------------------------- /personal/bj_zjw/house_trade_stat.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/bj_zjw/house_trade_stat.db -------------------------------------------------------------------------------- /personal/bj_zjw_stock_houses_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/bj_zjw_stock_houses_stat.py -------------------------------------------------------------------------------- /personal/privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/privacy.py -------------------------------------------------------------------------------- /personal/query_garage_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxw32/iScripts/HEAD/personal/query_garage_trading.py --------------------------------------------------------------------------------