<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[我的知识:网络,广告,生意,销售,管理]]></title>
<link>http://www.592man.com/</link>
<description><![CDATA[耀哥的私人博客，欢迎来到我的博客空间。这里有我熟悉并整理的知识包括:网页代码,SEO优化,广告设计,生意常识等，很高兴跟大家认识并交流。]]></description>
<generator>ASBLOG v2.5</generator>
<language>zh-cn</language>
<copyright>Copyright 2008 ASBLOG v2.5 Powerd By AllSheng Studio</copyright>
<item>
<title><![CDATA[网页灰白代码大全，哀悼日用]]></title>
<link>http://www.592man.com/Blogs/computer/201008/20100815125942.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-08-15 12:59:42</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[]]></description>
</item>
<item>
<title><![CDATA[史上最精简HTML生成ASP代码（可直接用于W78）]]></title>
<link>http://www.592man.com/Blogs/computer/201007/20100726123119.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-07-26 12:31:19</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>史上最精简HTML生成ASP代码（可直接用于W78）</p>
<p>&lt;!--#include file=&quot;conn.asp&quot;--&gt; //连接数据库<br />
&lt;meta http-equiv=&quot;Refresh&quot; /&gt;<br />
&lt;%sql = &quot;SELECT * FROM news order by id desc&quot;<br />
Set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)<br />
rs.OPEN sql,conn,1,3<br />
do while not rs.eof%&gt;<br />
&lt;%url = &quot;<a href="http://xxx/shownews.asp?id=&quot;&amp;rs(&quot;id">http://XXX/shownews.asp?id=&quot;&amp;rs(&quot;id</a>&quot;)&amp;&quot;&quot;<br />
&nbsp; set http=Server.createobject(&quot;Msxml2.XMLHTTP&quot;) <br />
&nbsp; Http.open &quot;GET&quot;,url,false <br />
&nbsp; Http.send() <br />
&nbsp; set objStream = Server.CreateObject(&quot;ADODB.Stream&quot;) <br />
&nbsp; objStream.type = 1 <br />
&nbsp; objStream.open <br />
&nbsp; objstream.write http.responseBody<br />
&nbsp; objstream.saveToFile server.mappath(&quot;html/&quot;&amp;rs(&quot;id&quot;)&amp;&quot;.htm&quot;),2 <br />
&nbsp; objstream.close <br />
&nbsp; rs.movenext<br />
loop<br />
rs.close<br />
set rs=nothing<br />
Response.Write &quot;　操作成功！&quot;%&gt;</p>]]></description>
</item>
<item>
<title><![CDATA[w78CMS程序漏洞等几个问题]]></title>
<link>http://www.592man.com/Blogs/computer/201007/20100725215438.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-07-25 21:54:38</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[]]></description>
</item>
<item>
<title><![CDATA[通用防SQL注入程序及使用过程感受]]></title>
<link>http://www.592man.com/Blogs/computer/201007/20100725203549.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-07-25 20:35:49</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>近段时间一直在研究漏洞和防SQL注入的功能。也在网站上找了一个通用的SQL防注入漏洞程序。在企业站上用还不错。但是在大型网站上用就不得行了。</p>
<p>主要问题：1、无组件上传使用受阻，会造成图片上传不成功；2、如果是用二进制编码等方式注入的话，就识别不出来了；3、对于一些常用的功能来说也不是太好，因为SQL注入中过滤了太多正常关键字了，比如一个表单中有个hand的英文单词，但是过滤当中有过滤and这个关键字，所以这个表单是提交不成功的，这不，是不是很不理想；</p>
<p>下面发一个通用的防SQL注入程序给大家分享，这是别人做的，我上面说的问题还是存在的。不过在企业站底下用还是不错的。也解决了GG谷歌等广告点击造成的过滤错误。</p>
<p>包含附件:</p>
<p>&nbsp;</p>
<div class="UBBDiv">[File]/UploadFiles/201007/20100725icd5z0.rar[/File]</div>]]></description>
</item>
<item>
<title><![CDATA[一句代码解决IE7/IE8兼容问题]]></title>
<link>http://www.592man.com/Blogs/computer/201006/20100621091011.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-06-21 09:10:11</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[]]></description>
</item>
<item>
<title><![CDATA[HTTP状态码后加0和64的解释]]></title>
<link>http://www.592man.com/Blogs/computer/201006/20100617121628.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-06-17 12:16:28</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>在IIS日志中,HTTP状态码返回值后面加的0和64其实没有什么太大的问题.主要是用来区分访客的系统.</p>
<p>例如<br />
　　200 0 64:<br />
　　文件被64位系统的访客或者蜘蛛正常访问或抓取.<br />
　　200 0 0:<br />
　　文件被32位系统的访客或者蜘蛛正常访问或抓取.</p>]]></description>
</item>
<item>
<title><![CDATA[使用CSS为图片添加更多趣味的5种方法]]></title>
<link>http://www.592man.com/Blogs/computer/201006/20100611223358.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-06-11 22:33:58</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[]]></description>
</item>
<item>
<title><![CDATA[屏蔽百度快照|屏蔽百度快照的方法]]></title>
<link>http://www.592man.com/Blogs/computer/201006/20100607214950.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-06-07 21:49:50</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>屏蔽百度快照|屏蔽百度快照的方法<br />
<br />
var page_url = window.location.href;<br />
if ( page_url.indexOf(&quot;cache.baidu.com&quot;) != -1) {<br />
top.location=&quot;</p>]]></description>
</item>
<item>
<title><![CDATA[常用集中网站挂马和防范方法]]></title>
<link>http://www.592man.com/Blogs/computer/201005/20100522133708.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-05-22 13:37:08</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>&nbsp;</p>
<p>
<table class="postcontentwrap">
    <tbody>
        <tr>
            <td class="postcontentwrap-main">
            <div class="clearfix post-content"><strong>1、挂马的N种方法</strong><br />
            &nbsp;</div>
            </td>
        </tr>
    </tbody>
</table>
</p>]]></description>
</item>
<item>
<title><![CDATA[关于积分推广的思路ASP]]></title>
<link>http://www.592man.com/Blogs/computer/201005/20100519223200.Html</link>
<author><![CDATA[yaoee.com]]></author>
<pubDate>2010-05-19 22:32:00</pubDate>
<category><![CDATA[IT知识]]></category>
<description><![CDATA[<p>&nbsp;</p>
<p>关于积分推广的思路最终效果：<br />
形如 http://www.a6118.cn/?u=295 <br />
当有人点击的时候 ID为295的用户积分就会 +1</p>
<p>制作过程：</p>
<blockquote>
<p>一、数据库的制作：<br />
新建字段 tuiguang</p>
</blockquote>]]></description>
</item>
</channel>
</rss>
