MobiNav

All Things Mobility

juin 22nd, 2007

反(调试/跟踪/脱壳) 技术集锦

Source: here

具体代码就不贴了,知道原理就可以写出代码。一些是实践所得,一些是别人的成果,也
都收集在一起了。解密、加密这个攻防战好像和传统作战的攻防战不同,防的一方能用的技术
远远多于攻的一方。

Read the rest of this entry »

juin 4th, 2007

Comment spécifier un URL en démarrage de Pocket Internet Explorer

SHELLEXECUTEINFO  SHInfo;
SHInfo.cbSize = sizeof(SHELLEXECUTEINFO);
SHInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
SHInfo.lpFile = lpFilePath;  // path of PPC explorer
SHInfo.lpParameters = lpURL;  // URL

ShellExecuteEx(&SHInfo);

|