<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title>精灵's blog</title>
		<link>http://www.xuchao.me/</link>
		<description>试着为自己做点什么，不要枉费了此生</description>
		<copyright>Powered by SaBlog-X. Copyright (C) 2003-2010.</copyright>
		<generator>SaBlog-X Version 2.0 Build 20100802</generator>
		<lastBuildDate>Tue, 07 Feb 2012 07:38:10 +0000</lastBuildDate>
		<ttl>30</ttl>
		<item>
			<link>http://www.xuchao.me/archives/74/</link>
			<guid>http://www.xuchao.me/archives/74/</guid>
			<title>python 操作注册表</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <div>import win32api, win32con, win32event, winerror</div>
<div><br />
</div>
<div>key_name = "Control Panel\\Desktop"</div>
<div>hkey = win32api.RegCreateKey(win32con.HKEY_CURRENT_USER, key_name)</div>
<div>StartPage = win32api.RegQueryValueEx(hkey,'ScreenSaveActive')</div>
<div>print(StartPage)</div>]]></description>
			<link>http://www.xuchao.me/archives/74/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<comments>http://www.xuchao.me/archives/74/#comments</comments>
			<pubDate>Mon, 26 Dec 2011 13:42:45 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/73/</link>
			<guid>http://www.xuchao.me/archives/73/</guid>
			<title>用python获取计算机ip地址和计算机名</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <p></p>
<p>import socket&nbsp;</p>
<p>name = socket.gethostname()</p>
<p>print(name)</p>
<p>ip_addr = socket.gethostbyname(name)</p>
<p>print(ip_addr)</p>
<p></p>]]></description>
			<link>http://www.xuchao.me/archives/73/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Mon, 12 Dec 2011 17:12:12 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/72/</link>
			<guid>http://www.xuchao.me/archives/72/</guid>
			<title>Python 处理Http 介绍一个库</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <a href="http://code.google.com/p/httplib2/">http://code.google.com/p/httplib2/</a>]]></description>
			<link>http://www.xuchao.me/archives/72/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Fri, 09 Dec 2011 16:03:22 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/71/</link>
			<guid>http://www.xuchao.me/archives/71/</guid>
			<title>python中的中文编码的问题</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <p style="line-height:20px;color:#545454;font-family:Georgia;letter-spacing:2px;"># !/usr/bin/python&nbsp;&nbsp;<br style="line-height:normal;" />
# -*- coding: gbk -*-&nbsp; #编码可以不指定，或者指定为其他编码（但一般不会指定为utf8等其他编码）</p>
<p style="line-height:20px;color:#545454;font-family:Georgia;letter-spacing:2px;">import codecs<br style="line-height:normal;" />
fin=open("aa.txt")<br style="line-height:normal;" />
content=fin.read()</p>
<p style="line-height:20px;color:#545454;font-family:Georgia;letter-spacing:2px;">fin.close()</p><p><a href="http://www.xuchao.me/archives/71/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/71/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/%E7%BC%96%E7%A0%81/">编码</category>
			<category domain="http://www.xuchao.me/tag/unicode/">unicode</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Tue, 29 Nov 2011 21:37:54 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/70/</link>
			<guid>http://www.xuchao.me/archives/70/</guid>
			<title>python中读写文件及中文编码处理方法</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;"><strong>一、打开文件</strong></div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">代码如下：</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">&gt;&gt;&gt; f = open("d:\test.txt", "w")</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">说明：</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">第一个参数是文件名称，包括路径；第二个参数是打开的模式mode</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">'r'：只读（缺省。如果文件不存在，则抛出错误）</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">'w'：只写（如果文件不存在，则自动创建文件）</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">'a'：附加到文件末尾</div>
<div style="font-family:Arial;word-wrap:break-word;word-break:break-all;visibility:visible !important;zoom:1 !important;filter:none;font-size:14px;line-height:normal;color:#333333;">'r+'：读写</div><p><a href="http://www.xuchao.me/archives/70/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/70/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/unicode/">unicode</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Tue, 29 Nov 2011 21:25:46 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/69/</link>
			<guid>http://www.xuchao.me/archives/69/</guid>
			<title>python打开url</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <div>import webbrowser</div>
<div>webbrowser.open('url')</div>]]></description>
			<link>http://www.xuchao.me/archives/69/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Thu, 24 Nov 2011 16:56:55 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/68/</link>
			<guid>http://www.xuchao.me/archives/68/</guid>
			<title>一些python文章</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">newthreading - safer concurrency for Python 安全并发(1回应)&nbsp;</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=7607" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=7607</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><br style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;" />
<span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">几个 Google App Engine 开源的Blog程序&nbsp;</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=7491" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=7491</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><br style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;" />
<span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">10 Django Trouble Spots for Beginners from Nettuts+ by Glen Stansberry 初学</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=6061" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=6061</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><br style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;" />
<span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">Patterns in Python Author:Duncan Booth 设计模式&nbsp;</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=5680" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=5680</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><br style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;" />
<span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">浅谈 Python 程序和 C 程序的整合&nbsp;</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=5469" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=5469</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><br style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;" />
<span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">已往关于GAE的文章合集&nbsp;</span><a href="http://www.starming.com/index.php?action=plugin&amp;v=wave&amp;tpl=union&amp;ac=viewgrouppost&amp;gid=73&amp;tid=5313" target="_blank" rel="nofollow" style="cursor:pointer;color:#336699;text-decoration:none;font-family:Arial, Helvetica, sans-serif;line-height:19px;">http://www.starming.<wbr>com/index.php?action<wbr>=plugin&amp;v=wave&amp;a<wbr>mp;tpl=union&amp;ac=<wbr>viewgrouppost&amp;gi<wbr>d=73&amp;tid=5313</a><span class="Apple-style-span" style="color:#111111;font-family:Arial, Helvetica, sans-serif;line-height:19px;">&nbsp;</span><p><a href="http://www.xuchao.me/archives/68/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/68/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/python/">python</category>
			<pubDate>Thu, 03 Nov 2011 15:20:00 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/66/</link>
			<guid>http://www.xuchao.me/archives/66/</guid>
			<title>北京某游戏公司招聘应用安全员（渗透测试）1名</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <div>【岗位职责】：</div>
<div>1. 对公司的游戏及业务系统进行安全测试，并提供安全加固方案；</div>
<div>2. 保障公司运营环境、生产系统与内部办公环境的信息安全；</div>
<div>3. 按需检查服务器系统、应用配置、网络策略安全；</div>
<div>4. 安全事件的应急处理。</div>
<div><br />
</div>
<div>【任职要求】：</div>
<div>1. 1年以上相关工作经验；</div>
<div>2. 熟悉当前流行渗透、入侵相关技术（SQL注入、缓冲区溢出、挂马与客户端攻击、XSS/CSRF等）与防护策略；</div>
<div>3. 熟悉Windows、Linux等操作系统以及常见网络服务（IIS、Apache等）的安全配置与入侵检测；</div>
<div>4. 熟悉常见木马、Rootkit或恶意文件运行原理与清除方法；</div>
<div>5. 熟悉PHP、JSP、.NET代码安全审计，具备漏洞挖掘经验者优先；</div>
<div>6. 掌握1门或多门编程语言，熟练开发各种小工具、小脚本优先；</div>
<div>7. 沟通能力强、团队合作能力强、学习能力强、文档撰写能力强者优先。</div>
<div><br />
</div>
<div>有兴趣的请投简历到：root_at_fuckhacker.net</div>]]></description>
			<link>http://www.xuchao.me/archives/66/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<category domain="http://www.xuchao.me/tag/%E6%8B%9B%E8%81%98/">招聘</category>
			<comments>http://www.xuchao.me/archives/66/#comments</comments>
			<pubDate>Thu, 08 Sep 2011 18:03:11 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/65/</link>
			<guid>http://www.xuchao.me/archives/65/</guid>
			<title>走近软件度量：从暗箱摸索中走出来</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <p>　　根据意识：言而有据的诉求</p>
<p>　　判断基于事实，承诺源自依据。日本软件企业在软件开发过程中让人感觉到一种习惯性的根据意识：立足于数据而不是假设之上。规模估算、进度估算、成本估算、人员估算，都需要说明理由，而不是仅仅凭借经验甚至感觉作出判断;进度调整、质量评估、费用超支、人员追加，仍然需要提出变更的原因，不管这种变更是否对企业有利;项目意见、作业提案、选择建议、管理流程，都需要通过调查分析阐述各自的依据。尽可能排除直观感觉可能带来的误差甚至错误，通过切实有效的数据来反映事实状况，并通过这些数据来判断发展趋势，作到“言之有据”。因为面对客户的需求，不能主观随意地作出判断或者抛出承诺，而没有相应的根据，否则顾客将会感到“不安”。这就是软件开发者的根据意识。根据意识源自危机意识，日本似乎与生俱来的危机感促使其在软件开发过程中尽量排除风险，而排除风险就必须基于科学的决策，必须拥有根据，而不是凭空决策。</p><p><a href="http://www.xuchao.me/archives/65/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/65/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<pubDate>Thu, 28 Jul 2011 11:02:23 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/64/</link>
			<guid>http://www.xuchao.me/archives/64/</guid>
			<title>悟空与佛祖的对话</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : 有一天，悟空问佛祖：什么是爱情？<br />
佛祖说：我请你穿越这片稻田，去摘一株最大最金黄的麦穗回来，但是有个规则：你不能走回头路，而且你只能摘一次。<br />
于是悟空去做了。许久之后，他却空着手回来了。<br />
佛祖问他怎么空手回来了？<br />
悟空说道：当我走在田间的时候，曾看到过几株特别大特别灿烂的麦穗，可是，我总想着前面也许会有更大更好的，于是没有摘；但是，我继续走的时候，看到的麦穗，总觉得还不如先前看到的好，所以我最后什么都没有摘到。。。<br />
佛祖意味深长地说：这，就是爱情。<p><a href="http://www.xuchao.me/archives/64/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/64/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<comments>http://www.xuchao.me/archives/64/#comments</comments>
			<pubDate>Wed, 15 Jun 2011 17:23:40 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/63/</link>
			<guid>http://www.xuchao.me/archives/63/</guid>
			<title>经营为什么需要哲学</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <p>
释迦牟尼教诲我们，“欲望”、“愤怒、“愚痴”这三种本能，是人所有的烦恼中最难驾驭的，称之为“三毒”，应该努力戒除。</p>
<p>
人的心中抱有怎样的想法，这非常重要。如果对自己的思想放任不管，人心就会被这“三毒”占满。必须做出努力，哪怕能在心中根植一点善念、一点善心。</p><p><a href="http://www.xuchao.me/archives/63/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/archives/63/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<pubDate>Fri, 10 Jun 2011 10:25:21 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/62/</link>
			<guid>http://www.xuchao.me/archives/62/</guid>
			<title>云南墨江哈尼族捐赠活动</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : 5月27日，《体育关爱基金》承载着众人爱心再次踏上了云南捐赠之路。这次目的地是云南墨江哈尼族的六所小学。近50名志愿者从四面八方集结昆明，乘坐大巴车奔赴公益活动地区。本次活动是《体育关爱基金》和联众门派《锦衣卫手拉手公益基金》共同举办的公益活动，活动为这里的孩子们带去了价值10万元的体育器材和3万多元的电脑及文具用品，这也是《体育关爱基金》3年多捐赠的第6个省市，第53所学校。<embed src="http://player.youku.com/player.php/sid/XMjc0NTE0MjI0/v.swf" type="application/x-shockwave-flash" width="550" height="400" quality="high" />]]></description>
			<link>http://www.xuchao.me/archives/62/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<comments>http://www.xuchao.me/archives/62/#comments</comments>
			<pubDate>Thu, 09 Jun 2011 16:43:32 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/guanlizhe/</link>
			<guid>http://www.xuchao.me/guanlizhe/</guid>
			<title>管理者的五项基本作业</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <p>1设定目标，2组织工作，3激励沟通，4衡量，5培养人才</p>
<p></p>
<p>管理者在所有的企业都不可或缺，管理者是唯一能够有效使用企业各项资源，并能  
赋予这些资源生命力和活力的元素，当然也就更不用说给企业创造生产力。如果没有管理者的领导，企业投入的资源可能不会得到与其同等的或超出规模的产出，这
  些企业寄予厚望的资源始终只是资源，无法给企业带来客观且实际的经济成效。</p><p><a href="http://www.xuchao.me/guanlizhe/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/guanlizhe/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<comments>http://www.xuchao.me/guanlizhe/#comments</comments>
			<pubDate>Sun, 15 May 2011 20:31:09 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/archives/60/</link>
			<guid>http://www.xuchao.me/archives/60/</guid>
			<title>我要结婚--川子</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <embed src="http://player.youku.com/player.php/sid/XMjQ1OTg5MTY4/v.swf" type="application/x-shockwave-flash" width="480" height="400" quality="high" /><br />]]></description>
			<link>http://www.xuchao.me/archives/60/</link>
			<category domain="http://www.xuchao.me/category/Mess/">乱七八糟</category>
			<pubDate>Wed, 06 Apr 2011 15:41:48 +0000</pubDate>
		</item>
		<item>
			<link>http://www.xuchao.me/mysql-com-vulnerable-to-blind-sql-injection/</link>
			<guid>http://www.xuchao.me/mysql-com-vulnerable-to-blind-sql-injection/</guid>
			<title>MySql.Com Vulnerable to Blind SQL Injection</title>
			<author>our.chao@gmail.com(精灵)</author>
			<description><![CDATA[精灵's blog ( http://www.xuchao.me/ ) : <strong># By Jackh4xor @ W4ck1ng – <a href="http://www.jackh4xor.com/">http://www.jackh4xor.com/</a></strong>&nbsp; <p>http://www.hackerregiment.com/mysql-com-vulnerable-to-blind-sql-injection.html</p>
<p></p>
<p>The Mysql website offers database software,  services and support for
 your business, including the Enterprise server, the  Network monitoring
 and advisory services and the production support. The wide  range of 
products include: Mysql clusters, embedded database, drivers for JDBC,  
ODBC and Net, visual database tools (query browser, migration toolkit) 
and last  but not least the MaxDB- the open source database certified 
for SAP/R3. The  Mysql services are also made available for you. Choose 
among the Mysql training  for database solutions, Mysql certification 
for the Developers and DBAs, Mysql  consulting and support. It makes no 
difference if you are new in the database  technology or a skilled 
developer of DBA, Mysql proposes services of all sorts  for their 
customers.</p><p><a href="http://www.xuchao.me/mysql-com-vulnerable-to-blind-sql-injection/" target="_blank">阅读全文</a></p>]]></description>
			<link>http://www.xuchao.me/mysql-com-vulnerable-to-blind-sql-injection/</link>
			<category domain="http://www.xuchao.me/category/Technology/">技术相关</category>
			<category domain="http://www.xuchao.me/tag/mysql/">mysql</category>
			<category domain="http://www.xuchao.me/tag/hack/">hack</category>
			<pubDate>Sun, 03 Apr 2011 22:02:50 +0000</pubDate>
		</item>
	</channel>
</rss>

