microsoftxiao

记忆 流逝

导航

2007年5月20日 #

和InjectFile配套InjectDLL

摘要: // InjectDLL.cpp : Defines the entry point for the DLL application.//#include "stdafx.h"#include "InjectDLL.h"// This is an example of an exported variableINJECTDLL_API int nInjectDLL=0;// This is an ... 阅读全文

posted @ 2007-05-20 03:25 龙巢NET刀 阅读(444) 评论(0) 推荐(0) 编辑

和InjectFile配套TestOne

摘要: //#include //using namespace std; /*int Mystrcmp(const char* s1, const char* s2){ while((*s1 != '\0') || (*s2 != '\0')) { if(*s1 != *s2){ return 0; } ++s1; ++s2; } return 1;}*/#include //#pragm... 阅读全文

posted @ 2007-05-20 03:18 龙巢NET刀 阅读(343) 评论(0) 推荐(0) 编辑

激动的InjectFile

摘要: #include #include #include #include using namespace std; #define SAFE_DELETE(p) { if((p)!=NULL) { delete[] (p); (p) = NULL; }} const int g_offset = 0x3E000;const int g_offset_virus = 20; ... 阅读全文

posted @ 2007-05-20 03:10 龙巢NET刀 阅读(475) 评论(0) 推荐(0) 编辑