Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
AdminTest0 authored Aug 7, 2022
1 parent ed7cc06 commit df6d0ab
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,7 @@ private static void ReadTest()
}
int WeChatMail = (int)Program.WeChatWinBaseAddress + list[3];
string Mail = Program.GetMail(WeChatProcess.Handle, (IntPtr)WeChatMail);
if (string.IsNullOrWhiteSpace(Mail))
{
Console.WriteLine("[-] WeChatMail: Can't Get User Mail, Maybe User Is No Binding Email or The current is New Version");
}
if (string.IsNullOrWhiteSpace(Mail) != false){}
else
{
Console.WriteLine("[+] WeChatMail: " + Program.GetMail(WeChatProcess.Handle, (IntPtr)WeChatMail, 100));
Expand Down Expand Up @@ -513,6 +510,28 @@ private static string bytes2hex(byte[] bytes)
37883008,
37896508
}
},
{
"3.7.5.27",
new List<int>
{
37895736,
37896544,
37895592,
37895464,
37896508
}
},
{
"3.7.5.31",
new List<int>
{
37903928,
37904736,
37903784,
37903656,
37904700
}
}
};
private static IntPtr WeChatWinBaseAddress = IntPtr.Zero;
Expand Down

0 comments on commit df6d0ab

Please sign in to comment.