微信 4.1.0.18、微信 4.1.0.21

This commit is contained in:
辉鸭蛋 2025-08-24 11:35:29 +08:00
parent 71ea119d7a
commit 900c3ae101
3 changed files with 25 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ namespace RevokeMsgPatcher
{
Apps = AppConfig(),
LatestVersion = "2.1",
PatchVersion = 20250815,
PatchVersion = 20250824,
Notice = "",
NoticeUrl = "",
};
@ -1439,9 +1439,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo
{
Name="Weixin.dll",
StartVersion="4.1.0.0",
StartVersion="4.1.0.17",
EndVersion="",
ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("DA FE FF FF 4C 89 F1 E8 3F 3F 3F 3F 84 C0 0F 84"),
Replace = ByteUtil.HexStringToByteArray("DA FE FF FF 4C 89 F1 E8 3F 3F 3F 3F 84 C0 90 E9"),
Category = "防撤回"
},
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("31 C9 31 D2 49 89 C0 FF 15 3F 3F 3F 3F 48 85 C0 0F 84"),
Replace = ByteUtil.HexStringToByteArray("31 C9 31 D2 49 89 C0 FF 15 3F 3F 3F 3F 48 85 C0 90 E9"),
Category = "多开"
}
}
},
new CommonModifyInfo
{
Name="Weixin.dll",
StartVersion="4.1.0.0",
EndVersion="4.1.0.17",
ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{

File diff suppressed because one or more lines are too long