Skip to content

hotbroker/10linesNoRevoke

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

10linesNoRevoke

10行代码防回撤,10行脚本代码把pc微信变防撤回

觉得有帮助的话,点个star

注意:

仅支持微信版本3.9.0.28!!

使用方法:

在退出微信进程的时候执行本脚本即可(登录界面也要退出)
把10行代码复制到打开的powershell执行即可

$temp = (Get-ItemProperty "HKCU:\SOFTWARE\tencent\wechat").installpath
$binaryFile = Get-ChildItem -Path $temp -Recurse -Include wechatwin.dll | Select-Object -ExpandProperty FullName
echo $binaryFile
Get-FileHash -LiteralPath $binaryFile
$bytes  = [System.IO.File]::ReadAllBytes($binaryFile)
$offset1= 0x00B4B3EA
$offset2= 0x00B4B419
$bytes[$offset1]=0xeb
$bytes[$offset2]=0
[System.IO.File]::WriteAllBytes($binaryFile, $bytes)
Get-FileHash -LiteralPath $binaryFile

执行成功的话,会有下面的2个值

image

About

10行脚本代码,把微信变防撤回

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published