[#] 微信 2.7.6.24 特征

This commit is contained in:
huiyadanli 2022-08-20 11:29:48 +08:00
parent 567f582cec
commit 44a1750881
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(), Apps = AppConfig(),
LatestVersion = "1.6", LatestVersion = "1.6",
PatchVersion = 20220806, PatchVersion = 20220820,
Notice = "" Notice = ""
}; };
} }
@ -117,9 +117,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo new CommonModifyInfo
{ {
Name="WeChatWin.dll", Name="WeChatWin.dll",
StartVersion="3.7.0.0", StartVersion="3.7.6.0",
EndVersion="", EndVersion="",
ReplacePatterns = new List<ReplacePattern> ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("85 C0 74 32 B9 3F 3F 3F 3F 8A"),
Replace = ByteUtil.HexStringToByteArray("85 C0 EB 32 B9 3F 3F 3F 3F 8A"),
Category = "防撤回(老)"
},
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("83 C4 04 80 BD FF FB FF FF 00 74 58 8B 3D"),
Replace = ByteUtil.HexStringToByteArray("83 C4 04 80 BD FF FB FF FF 00 EB 58 8B 3D"),
Category = "多开"
}
}
},
new CommonModifyInfo
{
Name="WeChatWin.dll",
StartVersion="3.7.0.0",
EndVersion="3.7.6.0",
ReplacePatterns = new List<ReplacePattern>
{ {
new ReplacePattern new ReplacePattern
{ {

File diff suppressed because one or more lines are too long