microsoftxiao

记忆 流逝

导航

上一页 1 2 3 4 5 6 ··· 16 下一页

2007年5月20日 #

和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刀 阅读(339) 评论(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) 编辑

2007年5月14日 #

通过GUI方式打印信息

摘要: 由于更改入口后就不允许调用CRT运行时库了,所以不得以改为使用图形方式输出了。 更好的方式是采用Dialog加编辑框方式。#include #include using namespace std; #pragma comment(linker, "/subsystem:WINDOWS")#pragma comment(linker, "/ENTRY:main") int main(); voi... 阅读全文

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

2007年5月12日 #

PE文件加区块

摘要: ////作者: 神杀中龙 microsoftxiao@163.com//说明: 根据PE文件格式原理书写//1. 在PE信息浏览器基础上改为增加区段工具 2007-5-12 #include #include #include #include using namespace std; #define SAFE_DELETE(p) { if((p)!=NULL) { delete (p); (p)... 阅读全文

posted @ 2007-05-12 17:08 龙巢NET刀 阅读(874) 评论(2) 推荐(0) 编辑

PE文件

摘要: // 插入区块bool InsertSection(BYTE *decBuf){ cout<<"计算区块各参数:"; // 插入区块, 先获取OEP const int offDOSStub = 0x3C; long off_elfanew = 0; // 根据类型直接读出即可。 char szPEHead[5]; // PE00 WORD Machin... 阅读全文

posted @ 2007-05-12 03:48 龙巢NET刀 阅读(351) 评论(0) 推荐(0) 编辑

2007年3月25日 #

我的简历

摘要: 简历 基本信息:姓名: 邵小宁 性别: 男出生日期: 85/7/21 居住地:成都工作年限: 1年 户口: 黑龙江籍贯: 黑龙江邮编: 150518电子邮件: microsoftxiao@163.com移动电话:自我评价:有耐力,努力进取。求职意向工作性质: 全职希望行业: 计算机软件开发目标地点: 成都市希望工资: 面议目标职能: 软件工程师(非主管),... 阅读全文

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

2007年3月21日 #

进度

摘要: 第2章 C++ 概览 第一部分 基本功能 63 194 第4章 类型和声明 86页 阅读全文

posted @ 2007-03-21 21:41 龙巢NET刀 阅读(196) 评论(0) 推荐(0) 编辑

2007年3月19日 #

我的经历我的历史

摘要: 2000 3-20日正式推出Windows 2000中文版 10-21 发布《红色警戒2》 - 发布Windows 2000 2001 - 初三 + 高一 记得这一年快过年的时候 在播放《流星花园》 我还迷恋上了红警,我还在看Visual Basic 和《开天辟地》, 我还刚刚知道电脑上面也可以打游戏。 我在家上网还要扯... 阅读全文

posted @ 2007-03-19 23:09 龙巢NET刀 阅读(202) 评论(0) 推荐(0) 编辑

2007年3月9日 #

内嵌Lua问题

摘要: extern "C"{#include "lua.h"#include "lualib.h"#include "lauxlib.h"}引用它和 Lua5.1.lib就可以正常的找到 LuaL_newState函数, 而把 extern "C" 去掉就找不到了。 阅读全文

posted @ 2007-03-09 17:14 龙巢NET刀 阅读(263) 评论(0) 推荐(0) 编辑

2007年3月8日 #

BGET内存分配器

摘要: 关于BGETBuffer allocator [缓冲分配] 1972年John Walker设计并实现,基于1966年的Algol OPRO$ 算法实现。 此程序为 public domain // 允许自由使用和修改 B G E T Buffer allocator Designed and implemented in April of 1972 by J... 阅读全文

posted @ 2007-03-08 12:51 龙巢NET刀 阅读(1207) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 16 下一页