<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>夜行人 &#187; MS</title>
	<atom:link href="http://www.187299.com/archives/category/ms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.187299.com</link>
	<description>寻觅生命中的那一片浅草......</description>
	<lastBuildDate>Wed, 16 Nov 2011 11:25:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SecureCRT批量配置使用会话key</title>
		<link>http://www.187299.com/archives/1787</link>
		<comments>http://www.187299.com/archives/1787#comments</comments>
		<pubDate>Sun, 16 Jan 2011 14:14:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1787</guid>
		<description><![CDATA[部分服务器使用单独的key，为了方便，写了这2个脚本 2个版本，都需要Python Windows版 win_crt_conf.py cygwin版 cygwin_crt_conf.py cygwin下可以用find+sed+unix2dos实现，但真的太慢了，Python快啊 2个文件要修改... ]]></description>
			<content:encoded><![CDATA[<p>部分服务器使用单独的key，为了方便，写了这2个脚本</p>
<p>2个版本，都需要Python<br />
Windows版<br />
win_crt_conf.py</p>
<p>cygwin版<br />
cygwin_crt_conf.py</p>
<p>cygwin下可以用find+sed+unix2dos实现，但真的太慢了，Python快啊</p>
<p>2个文件要修改的地方是一样的</p>
<p>需要使用单独key的SecureCRT配置文件目录<br />
crt_conf_dir = 'E:\\CRT_CONF'</p>
<p>定义key文件的位置，identify为private key的名字<br />
key_path_new = 'S:"Identity Filename"=E:\CRT_KEY\identify'</p>
<p>原理，每个服务器配置都定义了使用全局key还是会话key<br />
这个是使用全局key<br />
D:"Use Global Public Key"=00000001<br />
定义使用的key文件路径<br />
S:"Identity Filename"=</p>
<p>定义使用会话key<br />
D:"Use Global Public Key"=00000000</p>
<p>E:\CRT_KEY\identify为要使用的会话key<br />
S:"Identity Filename"=E:\CRT_KEY\identify<br />
win_crt_conf.py<br />
[python]<br />
#!D:\\Python27\\python<br />
#-*-coding=utf-8-*-    </p>
<p>import os,sys,re  </p>
<p>crt_conf_dir = 'E:\\CRT_CONF'<br />
global_public_key_true = 'D:"Use Global Public Key"=00000001'<br />
global_public_key_false = 'D:"Use Global Public Key"=00000000'<br />
key_path_old = 'S:"Identity Filename"='<br />
key_path_new = 'S:"Identity Filename"=E:\CRT_KEY\identify'</p>
<p>re_global_public_key = re.compile(global_public_key_true,re.DOTALL)<br />
re_key_path = re.compile('S:"Identity Filename"=(.*)')</p>
<p>os.chdir(crt_conf_dir)  </p>
<p>c1 = os.walk(os.getcwd()) </p>
<p>filelist = []   </p>
<p>for c2 in c1:<br />
	for c3 in c2[2]:<br />
		filelist.append(os.path.join(c2[0],c3))</p>
<p>for filename in filelist:<br />
    fileread = open(filename,'r')<br />
    filer = fileread.read()<br />
    pub_key = re.sub(re_global_public_key,global_public_key_false,filer,0)<br />
    key_path = re.sub(re_key_path,key_path_new,pub_key,0)<br />
    fileread.close()<br />
    fileok = open(filename,'w')<br />
    fileok.write(key_path)<br />
    fileok.close()<br />
    print filename,'替换成功!'<br />
[/python]</p>
<p>cygwin_crt_conf.py</p>
<p>[python]<br />
#!/usr/bin/python<br />
#-*-coding=utf-8-*-    </p>
<p>import os,sys,re  </p>
<p>crt_conf_dir = '/cygdrive/e/CRT_CONF'<br />
global_public_key_true = 'D:"Use Global Public Key"=00000001'<br />
global_public_key_false = 'D:"Use Global Public Key"=00000000'<br />
key_path_old = 'S:"Identity Filename"='<br />
key_path_new = 'S:"Identity Filename"=E:\CRT_KEY\identify'</p>
<p>re_global_public_key = re.compile(global_public_key_true,re.DOTALL)<br />
re_key_path = re.compile('S:"Identity Filename"=(.*)')</p>
<p>os.chdir(crt_conf_dir)  </p>
<p>c1 = os.walk(os.getcwd()) </p>
<p>filelist = []   </p>
<p>for c2 in c1:<br />
	for c3 in c2[2]:<br />
		filelist.append(os.path.join(c2[0],c3))</p>
<p>for filename in filelist:<br />
    fileread = open(filename,'r')<br />
    filer = fileread.read()<br />
    pub_key = re.sub(re_global_public_key,global_public_key_false,filer,0)<br />
    key_path = re.sub(re_key_path,key_path_new,pub_key,0)<br />
    fileread.close()<br />
    fileok = open(filename,'w')<br />
    fileok.write(key_path)<br />
    fileok.close()<br />
    print filename,'Replace successful!'<br />
[/python]</p>
<p>主要参考了http://blog.591by.com/show-214-1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1787/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>python_ping.py</title>
		<link>http://www.187299.com/archives/1778</link>
		<comments>http://www.187299.com/archives/1778#comments</comments>
		<pubDate>Mon, 03 Jan 2011 10:45:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1778</guid>
		<description><![CDATA[1、学习Python处理中文的方法 2、学习正则表达式 [python] #!D:\\Python27\\python #coding=gbk """System : Windows 7""" import subprocess import re import sys print "ping "+sys.argv[2]+"次 "+sys.argv[1] ##设置为unicode编码 p = re.compi... ]]></description>
			<content:encoded><![CDATA[<p>1、学习Python处理中文的方法<br />
2、学习正则表达式</p>
<p>[python]<br />
#!D:\\Python27\\python<br />
#coding=gbk</p>
<p>"""System : Windows 7"""</p>
<p>import subprocess<br />
import re<br />
import sys<br />
print "ping "+sys.argv[2]+"次 "+sys.argv[1]</p>
<p>##设置为unicode编码<br />
p = re.compile(u'(\W\W = \d+ms)')<br />
out = subprocess.Popen("ping -n %d %s" % (int(sys.argv[2]),sys.argv[1]),stdout=subprocess.PIPE,shell=True)</p>
<p>#将gbk编码的输出解码为unicode，并查找关键字<br />
match = p.findall(out.stdout.read().decode("gbk"))</p>
<p>for result in match:<br />
    print result</p>
<p>[/python]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1778/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>用grub4dos制作启动U盘</title>
		<link>http://www.187299.com/archives/1697</link>
		<comments>http://www.187299.com/archives/1697#comments</comments>
		<pubDate>Thu, 28 Oct 2010 03:22:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1697</guid>
		<description><![CDATA[通过本文制作出来的U盘，实现以下系统的启动 1、 Ubuntu_10.10-x86_64_Live，并可以保存系统修改后的配置 2、 小马PE101010—功能非常齐全 3、 CDlinux社区标准版+无线破解 4、 Ubuntu_10.10_64_fast，能快速... ]]></description>
			<content:encoded><![CDATA[<p>通过本文制作出来的U盘，实现以下系统的启动<br />
1、	Ubuntu_10.10-x86_64_Live，并可以保存系统修改后的配置<br />
2、	小马PE101010—功能非常齐全<br />
3、	CDlinux社区标准版+无线破解<br />
4、	Ubuntu_10.10_64_fast，能快速启动，但配置不能保存，这里主要演示下grub4dos可以直接挂载iso文件</p>
<p>4GU盘一个，越大越好，我的是：<br />
Verbatim STORE N GO 4G</p>
<p>用到的软件<br />
BOOTICE –用于安装grub4dos</p>
<p>Linux下的操作<br />
为使Ubuntu系统的配置能够保存，我们需要创建一个卷标为casper-rw的分区<br />
登录进Linux系统，对U盘进行分区，这里我创建了一个1G的分区用于保存Ubuntu系统的配置，分区的大小，主要是看你要安装的软件和保存文件的大小，空间越大，能够保存的配置就越多，我主要是安装了中文语言文件和一个浏览器。</p>
<p>这里，我的系统识别到U盘是/dev/sdb</p>
<p>fdisk /dev/sdb<br />
如何分区，可以Google下，有个小提示是，fdisk分区时，是根据柱面来分的，1个柱面约等于8M的空间</p>
<p>格式化/dev/sdb2<br />
mkfs.ext2 /dev/sdb2</p>
<p>设置/dev/sdb2的卷标<br />
e2label /dev/sdb2 casper-rw</p>
<p>Windows下的操作<br />
打开BOOTICE，选择U盘</p>
<p>这里有2种引导记录<br />
主引导记录—针对只有1个分区的U盘或者移动硬盘<br />
分区引导记录—针对有几个分区的U盘或者移动硬盘<br />
由于我们对U盘进行了分区，所以，这里选择“分区引导记录”</p>
<p>选择第一个分区，默认选的就是 GRUB4DOS，点击“安装/配置”<br />
弹出的对话框，直接点击“确定”即可</p>
<p>这时，U盘就是可启动的了<br />
编写启动菜单文件menu.lst, 并放到U盘根目录，注意，kernel哪里都是一行的</p>
<p>timeout 30<br />
default 0<br />
gfxmenu /BOOT/message<br />
title [01] Ubuntu_10.10-x86_64_Live<br />
find  --set-root /casper/vmlinuz<br />
kernel /casper/vmlinuz boot=casper persistent file=/preseed/ubuntu.seed looptype=squashfs loop=/casper/filesystem.squashfs<br />
initrd /casper/initrd.lz<br />
title [02] 小马PE<br />
find --set-root /WXPE/SETUPLDR.BIN<br />
chainloader /WXPE/SETUPLDR.BIN (hd0)+1<br />
title [03] 启动CDlinux社区标准版+无线破解<br />
find  --set-root /CDlinux/bzImage<br />
kernel /CDlinux/bzImage quiet CDL_LANG=zh_CN.UTF-8 CDL_AMOUNT=yes<br />
initrd /CDlinux/initrd<br />
title [04] Ubuntu_10.10_64_fast<br />
map (hd0,0)/Ubuntu_10.10_64.iso (hd32)<br />
map --hook<br />
root (hd0,0)<br />
kernel (hd32)/casper/vmlinuz boot=casper iso-scan/filename=/Ubuntu_10.10_64.iso<br />
initrd (hd32)/casper/initrd.lz<br />
title [F9] 重启计算机<br />
reboot<br />
title [F10] 关闭计算机<br />
halt</p>
<p>用虚拟光驱加载Ubuntu的镜像，把整个ISO的文件内容拷贝到U盘，这时，Ubuntu就准备好了</p>
<p>xmpe101010介绍</p>
<p>http://bbs.wuyou.com/viewthread.php?tid=168287</p>
<p>下载地址</p>
<p>http://u.115.com/file/t5e0236d5f</p>
<p>同样用虚拟光驱加载小马PE的文件，把minipe的文件拷贝到U盘根目录下，同时把wxpe目录下的ntdetect.exe拷到U盘根目录下，至此，小马PE就准备好了</p>
<p>CDlinux社区标准版+无线破解，我们需要从另外一个镜像里提取</p>
<p>无忧启动.多功能维护工具盘(无线破解).iso<br />
下载地址：</p>
<p>http://u.115.com/file/t21e955d0a</p>
<p>同样用虚拟光驱加载无忧启动.多功能维护工具盘(无线破解).iso,在U盘根目录下建个boot目录，然后把ISO里的BOOT目录下的message拷贝到U盘的boot下，这个主要是用来美化菜单的<br />
把iso里的CDlinux拷贝到U盘根目录下</p>
<p>把Ubuntu 10.10 64位的iso拷贝到U盘根目录下，Ubuntu的快速启动也准备好了，现在可以用U盘启动</p>
<p>扩展阅读<br />
这里顺便说明下，其实用dd命令生成一个虚拟硬盘文件放到U盘，然后对该文件进行格式化也是可以的，但我自己制作的时候，Ubuntu无法启动，所以还是采用分区的方法，写下方法生成虚拟磁盘文件的方法<br />
参考这篇文章</p>
<p>http://hi.baidu.com/cnjowang/blog/item/b58734869d5c6226c65cc3ea.html</p>
<p>dd if=/dev/zero of=casper-rw bs=1M count=1024<br />
mkfs.ext2 -F casper-rw</p>
<p>Ubuntu的配置是否保存，关键看kernel行是否使用了persistent</p>
<p>已知问题：<br />
CDlinux在部分机器无法启动</p>
<p>主要参考文章：</p>
<p>http://forum.ubuntu.org.cn/viewtopic.php?t=172013</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1697/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win 7下的蓝牙鼠标无响应</title>
		<link>http://www.187299.com/archives/1686</link>
		<comments>http://www.187299.com/archives/1686#comments</comments>
		<pubDate>Sun, 26 Sep 2010 09:11:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>
		<category><![CDATA[Win 7]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1686</guid>
		<description><![CDATA[最近买了个蓝牙鼠标，动不动就无响应，非常不爽， 右键我的电脑--管理--Bluetooth无线电收发器，右键你的蓝牙设备，选择属性，再点电源管理，把允许计算机关闭此设备以节约电源前的勾去掉... ]]></description>
			<content:encoded><![CDATA[<p>最近买了个蓝牙鼠标，动不动就无响应，非常不爽，<br />
右键我的电脑--管理--Bluetooth无线电收发器，右键你的蓝牙设备，选择属性，再点电源管理，把允许计算机关闭此设备以节约电源前的勾去掉</p>
<p>Win 7，到处都是省电的配置，低碳？</p>
<p>也有人说是驱动问题：<br />
去下个这个驱动应该可以解决 IVT_BlueSoleil_5.0_for_32bit_OS<br />
我用的是32位的。如果你是64位就不知道下64位能解不了.......</p>
<p>参考文章</p>
<p>http://bbs.pcbeta.com/archiver/tid-580570.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1686/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7开始菜单没有休眠的解决方案</title>
		<link>http://www.187299.com/archives/1651</link>
		<comments>http://www.187299.com/archives/1651#comments</comments>
		<pubDate>Sun, 05 Sep 2010 15:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1651</guid>
		<description><![CDATA[最近发现即使我在命令提示符输入powercfg -h on，开始菜单和电源选项还是没有休眠的按钮，折腾了一段时间，终于解决了问题，方法如下：首先就是众所周知的powercfg -h on，然后重启（这个很重... ]]></description>
			<content:encoded><![CDATA[<p>最近发现即使我在命令提示符输入powercfg -h  on，开始菜单和电源选项还是没有休眠的按钮，折腾了一段时间，终于解决了问题，方法如下：首先就是众所周知的powercfg -h  on，然后重启（这个很重要）。最后依次点击控制面板-&gt;硬件和声音-&gt;电源选项-&gt;更改计划-&gt;高级电源设置-&gt;睡眠，将“允许混合睡眠”设为“关闭”。</p>
<p>转载自：http://www.xuwemjian.info/archives/999.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1651/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>域名解析检查工具</title>
		<link>http://www.187299.com/archives/1637</link>
		<comments>http://www.187299.com/archives/1637#comments</comments>
		<pubDate>Wed, 28 Jul 2010 07:23:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1637</guid>
		<description><![CDATA[由于都是双线机房，所以域名解析要检查是否正确解析了电信IP，网通IP 同时还要检查IP是否可以ping通，为方便操作，写了个bat 代码如下： @echo off cls color 1f Title 检查域名解析 echo. echo. 域名解... ]]></description>
			<content:encoded><![CDATA[<p>由于都是双线机房，所以域名解析要检查是否正确解析了电信IP，网通IP</p>
<p>同时还要检查IP是否可以ping通，为方便操作，写了个bat</p>
<p>代码如下：</p>
<p>@echo off<br />
cls<br />
color 1f<br />
Title 检查域名解析<br />
echo.<br />
echo.               				域名解析检查工具<br />
echo.						johncan<br />
echo.						2010-07-27<br />
echo.<br />
echo.<br />
echo -------------------------------------------------------------------------------<br />
echo.<br />
set /p domain=          请输入要检查的域名：<br />
echo.<br />
for /f "delims=: tokens=1,2" %%i in ('nslookup "%domain%"') do (<br />
if /I "%%i"=="Address" (set "result=%%j")<br />
)<br />
for /f "delims=: tokens=1,2" %%i in ('nslookup "%domain%" 210.51.176.71') do (<br />
if /I "%%i"=="Address" (set "cnc_result=%%j")<br />
)</p>
<p>echo 域名:   %domain%<br />
echo 电信IP：%result%<br />
echo 网通IP：%cnc_result%</p>
<p>echo.<br />
echo.</p>
<p>echo ########## Ping %result% Result ##########<br />
ping -n 10 %result%</p>
<p>echo.<br />
echo.<br />
echo ########## Ping %cnc_result% Result ##########<br />
ping -n 10 %cnc_result%</p>
<p>echo.<br />
echo.</p>
<p>echo 按任意键退出<br />
pause &gt;nul</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1637/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>net use使用</title>
		<link>http://www.187299.com/archives/1612</link>
		<comments>http://www.187299.com/archives/1612#comments</comments>
		<pubDate>Mon, 05 Jul 2010 13:43:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1612</guid>
		<description><![CDATA[share.bat net use y: /del echo net use y: \\192.168.1.80\share_doc /user:share 12345... ]]></description>
			<content:encoded><![CDATA[<p>share.bat</p>
<p>net use y: /del<br />
echo net use y: \\192.168.1.80\share_doc /user:share 123456</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1612/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Firewall Builder?</title>
		<link>http://www.187299.com/archives/1529</link>
		<comments>http://www.187299.com/archives/1529#comments</comments>
		<pubDate>Fri, 26 Mar 2010 04:41:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1529</guid>
		<description><![CDATA[Firewall Builder helps you write and manage configuration for your firewalls. It writes iptables commands, pf.conf file, Cisco router access lists or PIX configuration for you. You can then copy and paste configuration generated by Firewall Builder, copy... ]]></description>
			<content:encoded><![CDATA[<p><span>Firewall                       Builder</span> helps you write and manage                       configuration for your firewalls. It writes                       <span>iptables</span> commands, <span>pf.conf</span> file, Cisco router access lists or PIX                       configuration for you. You can then copy and                       paste configuration generated                       by <span>Firewall                       Builder</span>, copy the file manually or using                       your own scripts, or use built-in function to                       configure the firewall.                       <span>Firewall                       Builder</span> provides change control and                       search functions. It allows you to reuse the                       same address and service objects in rules of                       many firewalls. It simplifies coordinated                       changes of the rules in multi-vendor                       environments and helps avoid errors in generated                       configurations.</p>
<p><span>Firewall                       Builder</span> comes with all versions                       of <strong>Debian</strong> Linux and                       <span><strong>Ubuntu</strong> (in                       "Universe")</span>. It is also available in                       "extras" in <strong>Fedora Core Linux</strong> and                       in <strong>FreeBSD</strong> and <strong>OpenBSD</strong> ports. Packages for these OS are supported by                       corresponding maintainers. We build test                       packages for all these OS and distributions as                       well. Binary packages are available                       for <a href="http://www.fwbuilder.org/netcitadel/index.html"><strong>Windows</strong> and <strong>Mac OS X</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1529/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关闭360 V6.0的守护进程</title>
		<link>http://www.187299.com/archives/1285</link>
		<comments>http://www.187299.com/archives/1285#comments</comments>
		<pubDate>Fri, 16 Oct 2009 11:38:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1285</guid>
		<description><![CDATA[如果你确定一定要禁止该服务，请打开安全卫士－－实时保护－－高级设置－－保护360安全卫士－－关闭自我保护后，还有核心保护也要关闭，然后进入进程服务管理（随便你怎么进！）禁止... ]]></description>
			<content:encoded><![CDATA[<p>如果你确定一定要禁止该服务，请打开安全卫士－－实时保护－－高级设置－－保护360安全卫士－－关闭自我保护后，还有核心保护也要关闭，然后进入进程服务管理（随便你怎么进！）禁止启用即可。</p>
<p>我觉得要是你真不喜欢多的这些进程，你最起码也要在控制面板里把该进程设置为手动，因为这几个进程真的很重要！</p>
<p>来自：霏凡论坛</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1285/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>theworld 添加搜索引擎</title>
		<link>http://www.187299.com/archives/1177</link>
		<comments>http://www.187299.com/archives/1177#comments</comments>
		<pubDate>Wed, 16 Sep 2009 14:50:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1177</guid>
		<description><![CDATA[显示名称Baidu 搜索串：http://www.baidu.com/s?wd=%... ]]></description>
			<content:encoded><![CDATA[<p>显示名称Baidu<br />
搜索串：<a href="http://www.baidu.com/s?wd=%s" target="_blank">http://www.baidu.com/s?wd=%s</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1177/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

