能力值:
( LV2,RANK:10 )
|
-
-
2 楼
一般打开IE用ShellExecute函数,你可以试试这个函数上下断
HINSTANCE ShellExecute(
HWND hwnd,
LPCTSTR lpOperation,
LPCTSTR lpFile,
LPCTSTR lpParameters,
LPCTSTR lpDirectory,
INT nShowCmd
);
修改IE首页应该是通过修改HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\Start page的值来实现的
你可以下注册表断点试试
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
好像是搜索open,然后nop掉它
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
有的他偷偷访问一些网站-没有页面的如何拦劫呢?谢谢
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
注意最后一个参数
HINSTANCE ShellExecute(
HWND hwnd,
LPCTSTR lpOperation,
LPCTSTR lpFile,
LPCTSTR lpParameters,
LPCTSTR lpDirectory,
INT nShowCmd
);
设为SW_HIDE既为隐藏窗口
|
|
|