• Stars
    star
    704
  • Rank 64,316 (Top 2 %)
  • Language
    Objective-C
  • License
    Other
  • Created over 5 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

iOS版功能最全的微信插件,支持最新版微信,具备自动抢红包,屏蔽消息和群消息,过滤特定的群聊,防止撤回消息,伪定位 (朋友圈和附近的人),修改微信运动步数和实时取景做聊天页的背景等功能。

WeChat-tweak

iOS版功能最全的微信插件,支持最新版微信,具备自动抢红包,屏蔽消息和群消息,过滤特定的群聊,防止撤回消息,伪定位 (朋友圈和附近的人),修改微信运动步数和实时取景做聊天页的背景等功能。

License MIT 

插件特点

i. 原生体验

插件 UI 完美嵌入微信设置中,开启各功能后,所有执行的任务都会静默进行,不干扰微信的正常使用。

ii. 自由设置延迟抢红包时间

有效防止抢红包速度太快而被拉黑或踢出群聊。

iii. 设置防止同时抢多个红包

最大程度避免被系统检测出使用插件,红包抢得更安心。

iv. 设置过滤特定的群聊

防止落入家人好友群、点餐群或者公司群抢红包的尴尬境地。

v. 伪定位

自由修改手机定位,偶尔出个国,发个朋友圈,装个逼。

vi. 屏蔽消息和群消息,防止撤回消息

屏蔽讨厌的人和群的消息,让他们不再打扰你,需要时可关闭,重新接收他们的消息,防止撤回消息,让你不再错过任何信息。

QQ群 (ID:614799921)

Preview

  • 插件设置
   
  • 自动抢红包
  • 屏蔽消息
 
  • 伪定位
  • 防止撤回消息

目录介绍

  • Dynamic library - dylib 目录 (Raw Dynamic Library) 和 modify 目录 (Modified Dynamic Library) ,可直接拿来注入。
  • Hook-Tools - Hook 使用的工具。
    • dumpdecrypted - 用于解密 iOS 的可执行文件,砸壳时可不需要。
    • otool - 一般 Mac 自带,用于查看解密后文件的依赖项检查。
    • install_name_tool - 一般 Mac 自带,更改动态库的依赖。
    • yoyolib - 用于向 iOS 的可执行文件中注入 dylib 。
    • optool - 将动态库注入目标二进制文件中。
    • class-dump - 导出app所有头文件 (class-dump -s -S -H ~/Desktop/xx.app -o ~/Desktop/xx-headers)。
    • ldid - 用于对 iOS 可执行文件进行签名的工具,在越狱 iOS 中替换 Xcode 自带的签名工具。
    • PackageApplication - 主要用来通过脚本打包 ipa 文件。
    • 010Editor701 - 一款全新概念的十六进制编辑器,其最强大的功能在于支持模板和脚本操作。
    • MachOView - 用于对 mach-o 文件分析的工具。
    • DYFCodesign - 用于对 iOS app 进行脚本重签名。
    • ios-app-signer - 打包 ipa 与重签名图形化工具。
    • iOSOpenDev - Xcode 增强工具,通过它生成用于注入的 dylib 库。建议用 theos 编译 tweak 项目生成注入的 dylib 库。
  • Resources - AppIcon 目录 (带抢红包的Icon) 和 Audios 目录 (音频文件)。。
  • WeChatPluginDev - 微信插件 tweak 源码开发。

开发

喜欢开发学习的同学请移步Here

解压 ipa

解压 ipa ==> Here

修改 app 配置

  • 进入 WeChat 目录

注:右键 WeChat.app ,选择显示包内容,进入 WeChat 目录。

  • 找出 Info.plist 文件

双击,默认 Xcode 打开,修改 Info.plist 中的 Bundle display name 和 Bundle identifier,将 WeChatBundleVersion 的 Value 修改成 Bundle version 的 Value,将 URL types -> URL identifier 修改成新的 Bundle identifier,删除 build_time, by, path, rev, tag, uuid, ver 等 Key。

  • 删除 PlugIns 和 Watch 目录中的文件
  • 删除 _CFBundleDisplayName

删除 zh_CN.lproj InfoPlist.strings _CFBundleDisplayName
删除 zh_HK.lproj InfoPlist.strings _CFBundleDisplayName
删除 zh_TW.lproj InfoPlist.strings _CFBundleDisplayName
删除 en.lproj InfoPlist.strings _CFBundleDisplayName

  • 删除 Entitlements

删除 Entitlements_for_appstore.plist
删除 Entitlements_for_ext.plist
删除 Entitlements_for_jailbreak.plist
删除 Entitlements_wc_for_ext.plist
删除 Entitlements_wc.plist
删除 Entitlements_wx_for_ext.plist
删除 Entitlements_wx.plist

获取动态库

  • 使用自己编译完成的动态库

  • 已编译完成的动态库下载 ==> Here

重签名动态库

打开钥匙串访问

点击登录 -> 我的证书,找出要签名的证书,右击显示简介,找到常用名称,然后拷贝后面的字符串。

执行重签名 (Resign Dynamic Libraries) :

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/waplesubstrate 
# Payload/WeChat.app/waplesubstrate: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/wapleodtcorexpc
# Payload/WeChat.app/wapleodtcorexpc: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/andromeda.framework
# Payload/WeChat.app/Frameworks/andromeda.framework: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/mars.framework
# Payload/WeChat.app/Frameworks/mars.framework: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/marsbridgenetwork.framework
# Payload/WeChat.app/Frameworks/marsbridgenetwork.framework: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/matrixreport.framework
# Payload/WeChat.app/Frameworks/matrixreport.framework: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/OpenSSL.framework
# Payload/WeChat.app/Frameworks/OpenSSL.framework: replacing existing signature

codesign -f -s "iPhone Developer: [email protected] (9ZU3R2F3D4)" Payload/WeChat.app/Frameworks/ProtobufLite.framework
# Payload/WeChat.app/Frameworks/ProtobufLite.framework: replacing existing signature

重签名应用

打开 Provisioning Profiles 目录

# 打开 Provisioning Profiles 目录
open ~/Library/MobileDevice/Provisioning\ Profiles/ 

在 Finder 工具栏选择以分栏或画廊方式显示,然后逐一点击 xxx.mobileprovision 文件,找出相匹配的 Bundle identifier 的配置文件 。也可以直接从苹果开发者后台下载证书和 xxx.mobileprovision 配置文件,导入证书或 p12 文件和 xxx.mobileprovision 配置文件 (可直接使用) 。

或者用 cat 命令逐一查看 xxx.mobileprovision 文件

cat ~/Library/MobileDevice/Provisioning\ Profiles/ece5c913-5c15-45fd-82e3-90f23739521f.mobileprovision
...
cat ~/Library/MobileDevice/Provisioning\ Profiles/269bffd1-3743-4014-bf07-4eb94c048460.mobileprovision

将 xxx.mobileprovision 文件拷贝至桌面

cp ~/Library/MobileDevice/Provisioning\ Profiles/269bffd1-3743-4014-bf07-4eb94c048460.mobileprovision ~/Desktop/wcpl_adhoc.mobileprovision

执行重签名应用 (Resign app) :

# 进入桌面,确保当前在桌面上操作
cd ~/Desktop/

./WeChat_tweak/Hook-Tools/DYFCodesign Payload/ "iPhone Developer: [email protected] (9ZU3R2F3D4)" wcpl_adhoc.mobileprovision 
# /Users/xxx/Desktop/Payload/WeChat.app: replacing existing signature

打包应用

  • 方法一
# 进入桌面,确保当前在桌面上操作
# cd ~/Desktop/

zip -r WeChat_705_New.ipa Payload/

# 静默压缩
# zip -qr WeChat_705_New.ipa Payload/
  • 方法二

PackageApplication 主要用来通过脚本打包 ipa 文件,然而从 Xcode 8.2.1 版本之后,就不建议使用了。所以每次更新 Xcode 版本,都要手动添加 PackageApplication

PackageApplication 下载地址:

  1. 百度网盘下载:

https://pan.baidu.com/s/1AjVW8hWYlVz3Cu9UJByQOQ - 提取码:4sqb

  1. Github下载:

https://github.com/chenxing640/WeChat_tweak/tree/master/Hook-Tools/

将下载的 PackageApplication 执行以下命令,并设置可执行权限:

chmod 777 ~/Downloads/PackageApplication

Applications -> 右键 Xcode.app -> 显示包内容 -> Contents -> Developer -> platforms -> iPhoneOS.platform -> Developer -> usr -> bin,进入这个目录之后,将设置了可执行权限的 PackageApplication 复制到这个目录。

或者使用命令如下:

cp ~/Downloads/PackageApplication /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin

执行打包 (Package app) :

xcrun -sdk iphoneos PackageApplication -v Payload/WeChat.app -o ~/Desktop/WeChat_705_New.ipa

安装 ipa

  1. 最后使用 爱思助手/ifunbox 安装 WeChat_705_New.ipa 。

  2. 使用 Xcode -> Window -> Devices and Simulators ,右击自己的设备,选择 Connect via IP Adress...,输入设备的IP,然后点击 Connect ,最后在 INSTALLED APPS 处点击 “+” 号,然后选择 WeChat_705_New.ipa ,点击 Open ,然后漫长地等待安装,大约1 ~ 3分钟。

💰打赏作者

如果觉得这个插件对你有帮助 (帮你抢到了比之前更多的红包,帮你发在国外高大尚的朋友圈,帮你屏蔽了厌烦并叨扰的人和群,帮你不再错过任何消息,...) ,那么不妨请我喝杯咖啡

     

Hook 版本下载

  • 百度网盘下载:

https://pan.baidu.com/s/1KCwmMWzchaZDeZQSlNt6qg - 提取码:3eqb

Hook 的版本只需要按照解压 ipa重签名应用打包应用安装 ipa等步骤执行即可。

坐标拾取

清华大学:116.333446,40.009557

免费证书

免费证书能进行真机调试程序。新建一个模板工程,通过 Xcode 登入自己的 Apple ID (菜单 Xcode -> Preferences... -> Accounts -> 点击 + -> 选择 Apple ID -> 输入账号密码 -> 登入),进入 TARGETS -> General -> Identify -> 设置 Bundle Identifier ,新 Xcode 版本进入 Signing & Capabilities -> 勾选自动管理签名 (Automatically manage signing),旧版本直接勾选自动管理签名 (Automatically manage signing) 即可,等待自动生成 Provisioning Profile 和 Signing Certificate 后,可查看 App ID, Team 等信息,但免费证书有个缺点 ,其中 Provisioning Profile (xxx.mobileprovision) 文件有效期仅只有 7 天,过期后需要打开 Xcode 模板工程重新生成。我们在学习时可以利用免费证书真机调试程序和重签名应用 (Resign app) ,但是长期使用,不建议使用免费证书,推荐可以去苹果开发者后台申请 Apple ID 账号或者去某宝找商家代签名 (风险需要自己承担)。

免责声明

  • 本文所有纯属个人娱乐学习用,相关技术仅用于学习交流,请勿用于非法目的,不得有其他任何商业用途!!!
  • 外挂有风险,使用需谨慎。
  • 当使用本插件时,请使用者自行承担各种状况,包括但不限于“禁用红包功能”以及“微信封号”。

我的简书

参考文章

iOS逆向交流

欢迎反馈

如果你遇到任何问题被卡住,请创建一个问题,我很乐意帮助你。

More Repositories

1

Awesome

提供iOS精选列表,包含Objective-C和Swift项目,涉及鸿蒙开发、Flutter、React Native、Weex、H5、小程序、区块链、数据库、游戏开发等教程(Provides a curated list of awesome iOS, including Objective-C and Swift Projects, covering tutorials on HarmonyOS development, Flutter, React Native, Weex, H5, mini programs, blockchain, databases, game development, and more.)。
219
star
2

DYFStoreKit

一个轻量级且易用的iOS应用内购库(A lightweight and easy-to-use iOS library for In-App Purchases.)。
Objective-C
83
star
3

DYFStore

一个轻量级且易用的iOS应用内购库(A lightweight and easy-to-use iOS library for In-App Purchases.)。
Swift
47
star
4

iOS-interview-questions

相信很多 iOS 程序猿都有进入 BAT、字节跳动、美团、京东、360和小米等大厂的梦想,进入唯一途径就是通过面试,面试的关键就是硬实力,也就是知识储备和行业工作经验。感谢 icofans 的资料!在线查看地址:https://ios.nobady.cn
45
star
5

dart_crypto

集成了Base64, 32/16 Bits MD5, AES, RSA等算法(This integrates Base64, 32/16 Bits MD5, AES and RSA algorithms.)。
Dart
37
star
6

QPlayer

一款不错的 iOS 视频播放器,支持 M4V、WMV、MP4、MOV、AVI、MKV、FLV、RM、RMVB 等主流媒体格式,支持 WiFi 文件传输,可以随时随地观看本地视频,同时也支持 HTTP、RTMP、RTSP、HLS 等流媒体播放。重构了此项目,采用MVP设计模式,提高APP性能,适配APP深浅模式等,使浏览体验更好。
C
32
star
7

DYFAuthIDAndGestureLock

手势密码解锁和 TouchID (指纹) / FaceID(面容) 解锁,代码简洁高效。(Gesture passcode unlocking and TouchID (fingerprint) / FaceID (facial features) unlocking.)
Objective-C
29
star
8

grab_ethtoken_info

从以太坊区块链 (Ethereum Blockchain) etherscan 上抓取任意一个钱包地址的所有token信息 (Address, Name, Balance, Symbol, Value),并编写界面进行展示。
Dart
19
star
9

DYFCodeScanner

一个简单的二维码和条码扫描器,有一套自定义的扫描动画以及界面,支持相机缩放,还可以生成和识别二维码。(A simple QR code and barcode scanner, which has a set of custom scanning animation and interface, supports camera zooming, and can generate and identify QR code.)
Objective-C
17
star
10

Swift-study

Swift 是一门开发 iOS, macOS, watchOS 和 tvOS 应用的新语言。本仓库包涵了Swift的基础部分、基本运算符、字符串和字符、集合类型、控制流、函数、闭包、枚举、类和结构体、属性、方法、下标、继承、构造过程、析构过程、可选链、错误处理、类型转换、嵌套类型、扩展、协议、泛型、自动引用计数、内存安全、访问控制和高级运算符等教程。
Swift
15
star
11

Unity-iOS-InAppPurchase

Unity实现苹果iOS的应用内购买( Unity implements Apple's in-app purchases for iOS.)。
Objective-C++
12
star
12

CXSwiftKit

提供Swift丰富的扩展和实用工具类(This provides the utilities and rich extensions of Swift.)。
Swift
10
star
13

CXDownload

Swift断点续传下载,支持Objective-C。包含大文件下载,后台下载,杀死进程,重新启动时继续下载,设置下载并发数,监听网络改变等。
Swift
10
star
14

DYFCryptoUtils

实现 iOS 的Base64, 32/16位 MD5, DES, AES, RSA算法,调用简单且好用。(Achieves Base64, 32/16 bit MD5, DES, AES and RSA algorithms for iOS, the invocation is simple and easy to use.)
Objective-C
10
star
15

Script

编写 Shell, Python, Ruby 等一些实用脚本,新增 macOS 应用多开脚本 (Writes some useful scripts about Shell, Python, Ruby, etc.)
Ruby
10
star
16

InAppPurchase-for-iOS

Please use the new library.
Objective-C
9
star
17

DYFAssistiveTouchView

iOS应用内的悬浮按钮和工具条。(The float button and toolbar for app within iOS.)
Objective-C
9
star
18

DYFLoadingManager

`DYFLoadingManager` is an iOS management class that loads animation prompts, it displays a translucent mask with an indicator and labels while work is being done.
Objective-C
7
star
19

IPAPkgTool

一款自动化打包 ipa 的 MacOS 应用。(A macOS application that packs ipa automatically.)
Ruby
5
star
20

ios-sdk-dev-demo

一个简单封装的iOS SDK,提供demo及制作教程。(A simple wrapping SDK for iOS, provides demo and production tutorials.)
Objective-C
4
star
21

DYFStoreReceiptVerifier

An open source receipt verification client program.
Objective-C
4
star
22

DYFKeychain

This library is used to store text and data in Keychain securely for iOS, OS X, tvOS and watchOS.
Objective-C
4
star
23

MacExcelTool

一款将 excel 文件 (.xlsx) 与 txt 文件 (.txt) 互相转换的 Mac 应用。本应用主要使用了 Mac 程序与脚本之间的交互,通过调用脚本与监听事件完成相应的任务和进度提示。
Python
4
star
24

SwiftUISample

A sample about SwiftUI.
Swift
3
star
25

CXNetwork-Moya

Encapsulates a network request library with Moya and ObjectMapper.
Swift
3
star
26

MarsUIKit

MarsUIKit wraps some commonly used UI components.
Swift
3
star
27

DYFBlurEffect

快速实现模糊图像,并支持系统 UIVisualEffectView。(Quickly realize blurred image, and support UIVisualEffectView in iOS.)
Objective-C
3
star
28

itenfay.github.io

My Blog. Website: https://itenfay.github.io
HTML
3
star
29

DYFSwiftKeychain

This library is used to store text and data in Keychain securely for iOS, OS X, tvOS and watchOS.
Swift
3
star
30

DYFToast

采用链式编程和点语法操作,实现 iOS 仿真安卓吐司提示框。(Using chain programming and point syntax operation to realize the simulation of Android's Toast in iOS.)
Objective-C
3
star
31

FFmpeg-lib

FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata.
C
3
star
32

clang_api

clang_api封装 iOS 系统常用接口,存取bundle中的资源,读取本地化文本,执行选择器和 UserDefaults 的相关操作,调用通知中心的相关操作等。
Objective-C
3
star
33

hstemplate.github.io

This is a blog template. You need to change `hstemplate` to your GitHub user name.
HTML
2
star
34

TestGameCenter

`DYFGameCenterWrapper`类完成 Game Center 的授权认证等。(Completes the Game Center authentication access,and so on.)
Objective-C
2
star
35

iOS-Interview-Questions2

iOS interview questions II
2
star
36

DYFCountDownButton

一个倒计时按钮,操作简单好用。(A countdown button for iOS, the operation is simple and easy to use.)
Objective-C
2
star
37

Runtime

本仓库项目对Runtime进行了包装,可快速使用字典转模型、归档解档、添加一个方法、交换两个方法、获取所有属性名和方法名。
Objective-C
2
star
38

RxListDataSource

Provides data sources for UITableView or UICollectionView.
Swift
2
star
39

DYFSwiftRuntimeProvider

Wraps the runtime, and can quickly use for the transformation of the dictionary and model, archiving and unarchiving, adding a method, exchanging two methods, replacing a method, and getting all the variable names, property names and method names of a class.
Swift
2
star
40

itenfay

My GitHub profile.
HTML
1
star
41

Front-End_Dev_Study

Study Front-End development.
1
star
42

DYFPlayer

1
star
43

DesignPatterns

Design Patterns
Swift
1
star
44

Cocos-iOS-InAppPurchase

1
star
45

DYFStoreReceiptVerifier_Swift

An open source receipt verification client program.
Swift
1
star
46

EagleKit

Objective-C
1
star
47

CXWebSocket

`CXWebSocket` wraps websockets in swift for iOS and OSX.
Swift
1
star
48

CXARKit

This is the tools for AR application.
Swift
1
star
49

BCWallet

1
star
50

DYFDeviceUtils

A small utility tool for getting the basic information about iOS device.
Objective-C
1
star
51

iOSBlogReading

专注于精选 iOS/macOS X 开发者博客。
1
star
52

GLMPlayer

1
star
53

Literature

This repository includes literary works and funny contents. Welcome to submit your works.
1
star
54

Multi-thread

Multi-thread
Objective-C
1
star
55

GYNFoundation

[Swift] GYNFoundation provides a foundataion framework, including HTTP network request, data statistics, foundataion classes, extensions, loading animation, and so on.
Swift
1
star
56

AppStoreVersionDetector

Detect the app version from AppStore and support Objective-C.
Swift
1
star
57

HUD_Demo

MBProgressHUD的使用演示,自定义DYFIndefiniteAnimatedView,DYFDesignSpinner和DYFMaterialDesignSpinner等指示器替换MBProgressHUD默认的指示器。
Objective-C
1
star
58

DYFRuntimeProvider

Wraps the runtime, and can quickly use for the transformation of the dictionary and model, archiving and unarchiving, adding a method, exchanging two methods, replacing a method, and getting all the variable names, property names and method names of a class.
Objective-C
1
star
59

Tenfays-Blog-Comments

1
star
60

DYFProgressView

超好用的进度条和网页进度条,操作简单好用。(Super useful progress bar and web page progress bar, the operation is simple and easy to use.)
Objective-C
1
star