微信 4.1.0.14

This commit is contained in:
辉鸭蛋 2025-08-15 22:55:19 +08:00
parent 1c115654bd
commit ce878c2058
5 changed files with 27 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ namespace RevokeMsgPatcher
{ {
Apps = AppConfig(), Apps = AppConfig(),
LatestVersion = "2.1", LatestVersion = "2.1",
PatchVersion = 20250803, PatchVersion = 20250815,
Notice = "", Notice = "",
NoticeUrl = "", NoticeUrl = "",
}; };
@ -1439,9 +1439,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo new CommonModifyInfo
{ {
Name="Weixin.dll", Name="Weixin.dll",
StartVersion="4.0.3.0", StartVersion="4.1.0.0",
EndVersion="", EndVersion="",
ReplacePatterns = new List<ReplacePattern> ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("48 8D 8D 20 04 00 00 E8 CD 3F 3F 3F 84 C0 0F 84 3F 3F 3F 3F 48 8D 8D"),
Replace = ByteUtil.HexStringToByteArray("48 8D 8D 20 04 00 00 E8 CD 3F 3F 3F 84 C0 90 E9 3F 3F 3F 3F 48 8D 8D"),
Category = "防撤回"
},
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("5F C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC 55 41 56 56 57 53"),
Replace = ByteUtil.HexStringToByteArray("5F C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC C3 41 56 56 57 53"),
Category = "多开"
}
}
},
new CommonModifyInfo
{
Name="Weixin.dll",
StartVersion="4.0.3.0",
EndVersion="4.1.0.0",
ReplacePatterns = new List<ReplacePattern>
{ {
new ReplacePattern new ReplacePattern
{ {

File diff suppressed because one or more lines are too long