去掉这个 MessageBox 也不难,因为暴风影音的主程序 Storm.exe 未经任何保护,可以直接用调试器打开。在 USER32!MessageBoxA 下断点,就可以拦截这个调用了:
反汇编代码
004aa96b 6a10 push 10h
004aa96d 6898f45000 push offset image00400000+0x10f498 (0050f498)
004aa972 6868f45000 push offset image00400000+0x10f468 (0050f468)
004aa977 50 push eax
004aa978 ff15f08b4d00 call dword ptr [image00400000+0xd8bf0 (004d8bf0)]
接下来就是用 UltraEdit 之类的工具打开 Storm.exe,并搜索下面的数据:
6a 10 68 98 f4 50 00 68 68 f4 50 00 50 ff 15 f0 8b 4d 00
把这些数据统统修改为 90 即可。
本文来源:PChome.net 作者:佚名