<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_三毛</title><subtitle type="text">世界如此之大，世界又如此之小！我什么都不知，只知我一无所知！</subtitle><id>http://feed.cnblogs.com/blog/u/15281/rss</id><updated>2009-09-07T18:07:02Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/15281/rss"/><entry><id>http://www.cnblogs.com/Leejia/archive/2008/07/19/1246585.html</id><title type="text">VS2008 中无法使用ACTIVEX控件的解决</title><summary type="text">如果你在打开对话框时弹出 "The ActiveX control "Grid Control" could not be instantiated because it requires a design-time license"这个对话框时,在VC安装盘中找到vb6controls.reg,双击导入注册表就OK了,没有这个文件的可以COPY下面的代码另存为*.reg,导入注册表就行了REGE...</summary><published>2008-07-19T04:28:00Z</published><updated>2008-07-19T04:28:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2008/07/19/1246585.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2008/07/19/1246585.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2008/04/25/1171685.html</id><title type="text">#pragma pack(push,1)与#pragma pack(1)的区别</title><summary type="text">TinyXML是开源的XML操作库,很好用,以前都是在VC6中使用,使用也很正常,没出现任何问题.最近把以前的代码升级到VS2008下,运行常出现堆栈溢出,莫名其秒的堆释放崩溃.搞得人都快疯了,后来发现是在代码中使用了对齐的原因,为了进一步确定问题,新建一个工程,只引用tinyxml.h并定义一个结构采用#pragma pack(push,1)对齐,一运行就会出现崩溃......而采用#pragm...</summary><published>2008-04-25T15:39:00Z</published><updated>2008-04-25T15:39:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2008/04/25/1171685.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2008/04/25/1171685.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2008/01/21/1046646.html</id><title type="text">由HEAP Corruption DETECTED查到的</title><summary type="text">我从CWinThread类上派生了一个类CGameSocket，从CGameSocket类上派生了CSocketThread类我new CSocketThread类，然后在退出时delete this;VC2005 Debug模式运行时报HEAP Corruption DETECTED。。。。。错误，就在delete this那里，从新运行程序并在new的地方和delete this那里下断点，发...</summary><published>2008-01-20T17:47:00Z</published><updated>2008-01-20T17:47:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2008/01/21/1046646.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2008/01/21/1046646.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2008/01/20/1046553.html</id><title type="text">Run-Time Check Failure #N</title><summary type="text">环境：Visual Studio Team Suite 2005类型：Debug以下是简化代码，出现让人摸不着头脑的Run-Time Check Failure，具体原因还在研究中,有结果会公布上来，N久没写博客了，太忙了。。。代码1#include 'stdafx.h'void malice()...{printf('Hey,you're been attacked.\n');}void foo...</summary><published>2008-01-20T14:27:00Z</published><updated>2008-01-20T14:27:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2008/01/20/1046553.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2008/01/20/1046553.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/14/746202.html</id><title type="text">[转]在MFC中的文档视图中对视图使用RichEdit2--来自CodeGuru</title><summary type="text">The following is an example of rich edit2.0 based on the default SD rich edit project. Please email me for source code.1.revise PreCreateWindowsBOOL CRich20DocViewView::PreCreateWindow(CREATESTRUCT&amp;am...</summary><published>2007-05-14T10:07:00Z</published><updated>2007-05-14T10:07:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/14/746202.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/14/746202.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/11/743010.html</id><title type="text">关于CStdioFile奇怪的"错误"</title><summary type="text">今天要分析一个数据文件，数据太多了，手工分析易错且麻烦就自已写了一个工具，来进行自动转换，为了方便，使用了CStdioFile，因为它有ReadString函数，后来感觉处理方式不行，就换成结构一次读取64个字节，结果打开处理结果的文件一看，只有512个字节，好怪，文件根本没有读完，有点摸不着头脑了，试着把CStdioFile换成CFile,重新编译，运行,OK，好奇怪的问题，莫非是BUG？</summary><published>2007-05-11T07:24:00Z</published><updated>2007-05-11T07:24:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/11/743010.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/11/743010.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/09/739999.html</id><title type="text">[转]利用处理程序错误攻击（下）</title><summary type="text">创建时间：2000-06-03文章属性：转载文章来源：红色力量文章提交：xundi (xundi_at_xfocus.org)从红色力量中转载--见我们的连接利用处理程序错误攻击（下）3 Land攻击工具Land也是一个很厉害的攻击工具，有人专门用Land对某种路由器进行了测试，结果发现，当对23端口进行攻击，路由器再也不能连到本地网上或域网外部。前面面板上的灯也停止了闪烁，用ping没有响应，t...</summary><published>2007-05-09T02:28:00Z</published><updated>2007-05-09T02:28:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/09/739999.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/09/739999.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/08/739629.html</id><title type="text">[转]TCP/IP攻击原理分析总结 </title><summary type="text">由于TCP/IP协议是Internet的基础协议,所以对TCP/IP协议的完善和改进是非常必要的。TCP/IP协议从开始设计时候并没有考虑到现在网络上如此多的威胁,由此导致了许多形形色色的攻击方法，一般针对协议原理的攻击（尤其是DDOS）我们无能为力。现将TCP/IP攻击的常用原理介绍如下：（1） 源地址欺骗（Source Address Spoofing）、IP欺骗（IP Spoofing）和D...</summary><published>2007-05-08T15:02:00Z</published><updated>2007-05-08T15:02:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/739629.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/739629.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/08/739607.html</id><title type="text">[转]利用处理程序错误攻击(上)</title><summary type="text">文章属性：转载文章提交：xundi (xundi_at_xfocus.org)在本章，将要介绍一些利用TCP/IP协议的处理程序中错误进行攻击的原理、方法以及一些防范对策。这些攻击包括当前流行的Teardrop和Land攻击。利用协议实现的攻击方法，都是故意错误地设定数据包头的一些重要字段，例如，IP包头部的Total Length、Fragment offset、IHL和Source addre...</summary><published>2007-05-08T14:49:00Z</published><updated>2007-05-08T14:49:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/739607.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/739607.html"/></entry><entry><id>http://www.cnblogs.com/Leejia/archive/2007/05/08/738678.html</id><title type="text">ACE学习笔记--持续更新中</title><summary type="text">1.动态获得端口号:ACE_Asynch_Acceptor&amp;lt;Receiver&amp;gt; acceptor; ACE_INET_Addr addr= ACE_INET_Addr("HAStatus"); if (acceptor.open (addr, initial_read_size, 1) == -1) return -1;2.获得动态分配的端口号: ACE_SOCK_SEQPACK_As...</summary><published>2007-05-08T02:24:00Z</published><updated>2007-05-08T02:24:00Z</updated><author><name>三毛</name><uri>http://www.cnblogs.com/Leejia/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/738678.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Leejia/archive/2007/05/08/738678.html"/></entry></feed>
