<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[宋索源]]></title>
<description><![CDATA[宋索源的空间－重新开放了！]]></description>
<link>http://179384723.qzone.qq.com</link>
<lastBuildDate>Tue, 01 Dec 2009 17:10:13 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Thu, 05 Mar 2009 11:53:47 GMT</pubDate>

<item>
<title><![CDATA[转载：密码学协议举例（五）：两个人能够在电话上打牌吗？]]></title>
<link>http://179384723.qzone.qq.com/blog/1236254027</link>
<description><![CDATA[密码学的应用范围非常广泛。每一样简单的社交活动里都有很大的学问。考虑这样一个问题，两个人想通过一部电话打牌，但他们都不信任对方。有没有可能仅通过一部电话实现扑克牌协议，并且保证游戏的公正性呢？<br>扑克牌的信息隐蔽性带来了很多与密码学协议相关的有趣问题。两个象棋大师可以在洗澡间一边冲澡一边大喊“炮八平五”、“马八进七”，一对围棋情侣可以在床上一边亲热一边呻吟“点三三”、“拆二”。等事情办完了，一盘精彩的棋局或许也就结束了。这些棋类游戏之所以可以“盲下”，就是因为在棋类游戏中，双方的局面信息都是完全公开的。不过，打牌就是另外一码事了。你说你出方片7，我怎么知道你有一个方片7？事先发牌？那谁来负责发牌呢？怎样发牌呢？难道我告诉你“发到你手中的是两张3一张5一张8一张9”？这样一看，两个人“盲打扑克牌”似乎是不可能的了，要么需要借助道具，要么需要第三者的帮助。不过，运用密码学知识，我们可以设计一套扑克牌协议，该协议能够实现随机的、隐蔽的、公平的发牌，并且不需要其它东西的帮助。我们以一手五张牌为例，说明如何实现“两人各摸五张牌”的程序。<br><br>我们首先来看<a href="http://www.matrix67.com/blog/archives/501" target="_blank">这里面</a><wbr />的一个趣题。<br>10. A、B两人分别在两座岛上。B生病了，A有B所需要的药。C有一艘小船和一个可以上锁的箱子。C愿意在A和B之间运东西，但东西只能放在箱子里。只要箱子没被上锁，C都会偷走箱子里的东西，不管箱子里有什么。如果A和B各自有一把锁和只能开自己那把锁的钥匙，A应该如何把东西安全递交给B？<br>答案：A把药放进箱子，用自己的锁把箱子锁上。B拿到箱子后，再在箱子上加一把自己的锁。箱子运回A后，A取下自己的锁。箱子再运到B手中时，B取下自己的锁，获得药物。<br>我们的基本思路就是这样。不妨用数字1到54来表示54张牌。发牌前，A在每个数字前附着一个随机字符串前缀，然后给每个字符串都加上一把锁，把54张加密的扑克牌传给B。B收到了扑克牌一看，傻了，这些牌他一张也不认识，每张牌上面都有A的锁。B从里面挑选5张牌出来。他自己不知道这5张牌是什么，但是他也不能让A知道，于是他在这5张牌上再各加一把锁，传给A。A可以解开自己当初上的那把锁，但牌上还有一把锁，A拿它没办法，只能原封不动地传回去。B把剩下的锁解开，得到自己的5张牌。然后呢，B手上不是还剩了49张牌吗？B从中随便挑5张出来给A，由A解开上面的锁，得到A的5张牌。<br>听起来很完美，但实现起来并不简单。上锁开锁和加密解密并不完全相同：两把锁的地位是相同的，但两次加密则有先后的问题。要想把上述协议转换为密码学协议的话，我们需要采用这样一种加密方式：明文首先由A加密，B在这个密文的基础上再进行加密，此时A还能够把里面那一层密码解开，而保持B的那一层密码不动。如果用Ea(x)表示A的加密函数，用Da(x)表示A的解密函数的话，我们需要一种加密系统使得Db(Da(Eb(Ea(x))))=x。有这样的加密系统吗？有！模数相同的<a href="http://www.matrix67.com/blog/archives/1120" target="_blank">RSA算法</a><wbr />就满足这样的“交换律”。<br>RSA算法之所以起作用，原因就在于你能找到这么一对e和d，使得ed≡1 (mod φ(n))。假如存在两对钥匙(e1, d1)和(e2, d2)，容易想到(e1*e2)(d1*d2)=(e1*d1)(e2*d2)，它仍然同余于1。因此，计算密文c=m^(e1*e2)之后，再计算c^(d1*d2)一定能恢复明文m，不管你是先算c的d1次方还是d2次方。<br>有了RSA算法，我们的协议也就出来了。A、B两人各生成一对RSA公私匙。A把54个加了随机字符串前缀的扑克牌分别用公钥加密并发给B，B从中选5张牌并再用自己的公钥加密，然后A用私钥解开B的这5张牌中里面一层的密码，B再用自己的私钥解密以得到自己的一手牌。同时，B在剩余的49张牌中挑选5张发给A，A用自己的私钥解密以获得自己的一手牌。这样下来，每个人都得到了自己的一手牌，而都不知道对方手里捏的是啥牌。以后，每次对方出牌时我都可以验证看对方是否真的有这张牌，因为这张牌用对方的公钥加密后的值我是知道的；如果还需要摸牌的话，则可以重复刚才的协议。这个协议可以轻易扩展到多个人的情况，也可以适用于更复杂的扑克牌游戏。<br><br>------------------------------------------<br>本文转载自：<a href="http://item.feedsky.com/~feedsky/matrix67/~7009695/175875007/4276032/1/item.html" target="_blank">Matrix67: My Blog： 密码学协议举例（五）：两个人能够在电话上打牌吗？</a><wbr /><br>用QQ邮箱阅读空间<a href="http://mail.qq.com/cgi-bin/feed?u=http://feed.feedsky.com/matrix67" target="_blank">订阅<span style="font-weight:bold"><wbr />Matrix67: My Blog</span><wbr /></a><wbr /><br><a href="http://mail.qq.com/zh_CN/htmledition/help_reader.html" target="_blank">什么是阅读空间?</a><wbr /><br><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1236254027#comment</comments>
<qz:effect>135266304</qz:effect>
<pubDate>Thu, 05 Mar 2009 11:53:47 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1236254027</guid>
</item>

<item>
<title><![CDATA[来点解析几何挑战题!]]></title>
<link>http://179384723.qzone.qq.com/blog/1235009120</link>
<description><![CDATA[<span style="font-size:13px;line-height:1.8em;">Powered by 宋索源，袁文逸.</span><wbr /><br> <br><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=441f5fcb9249c44ed85747f7c237e5999868caf3dfc899b7bf8d84c70e7a76c0d99d1c51e75d3c3c98edd8c34aed045457729906189a3f05e052f5db100251c8a79fc332de890d673df88c2d9cfec4450baa16d6" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=441f5fcb9249c44ed85747f7c237e5999868caf3dfc899b7bf8d84c70e7a76c0d99d1c51e75d3c3c98edd8c34aed045457729906189a3f05e052f5db100251c8a79fc332de890d673df88c2d9cfec4450baa16d6" /></a><wbr /><br><br><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=441f5fcb9249c44ed85747f7c237e599b5d3eab3f7c391b5286ccdeb4cfed7f451f6f81f78fbd5ec2d27c646cdba15d51d8cee7f6ab6d4005970210051d996c7a0695e413b928e810072b743f3facffa077cec2f" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=441f5fcb9249c44ed85747f7c237e599b5d3eab3f7c391b5286ccdeb4cfed7f451f6f81f78fbd5ec2d27c646cdba15d51d8cee7f6ab6d4005970210051d996c7a0695e413b928e810072b743f3facffa077cec2f" /></a><wbr /><br><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1235009120#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Thu, 19 Feb 2009 02:05:20 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1235009120</guid>
</item>

<item>
<title><![CDATA[2009年北京大学自主招生暨保送生笔试考试-化学]]></title>
<link>http://179384723.qzone.qq.com/blog/1233037203</link>
<description><![CDATA[<div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">化学</span><wbr /></div><span style="font-family:'宋体';line-height:1.8em;">一，填空题。</span><wbr /> <br>1<span style="font-family:'宋体';line-height:1.8em;">，</span><wbr /><span style="font-family:'宋体';line-height:1.8em;">除去NaCl中的碳酸根离子（用氯化钙）、硫酸根离子（用氯化钡）、镁离子（用NaoH），问加入这三种试剂的先后顺序。</span><wbr /> <br>2<span style="font-family:'宋体';line-height:1.8em;">，</span><wbr />NaF<span style="font-family:'宋体';line-height:1.8em;">、NaBr、MgO（均为NaCl型结构）的熔点高低顺序</span><wbr /><span style="font-family:'宋体';line-height:1.8em;">。</span><wbr /> <br>3<span style="font-family:'宋体';line-height:1.8em;">，电解熔融LiCl，得到Li和Cl2。将1mol·L-1LiCl的溶液加热蒸干，得到固体，电解熔融固体，阳极出的并不是Cl2，为什么？  </span><wbr /> <br>4<span style="font-family:'宋体';line-height:1.8em;">，Ag为什么能置换出HI（aq）和H2S（aq）中的氢？</span><wbr /> <br>5<span style="font-family:'宋体';line-height:1.8em;">，给出一个单体的结构式。这里略去，已知它加聚产物为尼龙－6，写出合成尼龙－6的化学方程式。</span><wbr /> <br>6<span style="font-family:'宋体';line-height:1.8em;">，给出一个单体结构式。这里略去，写出由它三聚后得到的产物三聚氰胺的化学方程式；又写出由尿素合成三聚氰胺的化学方程式。</span><wbr /> <br>7<span style="font-family:'宋体';line-height:1.8em;">，给出NaCl的溶解热，Na变成离子的能量变化及Cl变成离子的能量变化，问根据数据能得出什么？</span><wbr /> <br>8<span style="font-family:'宋体';line-height:1.8em;">，已知NH4A（A为酸根）受热分解是质子转移，若A为氧化性酸根，分解时还有氧化还原反应。试写出NH4NO2，NH4Cr2O7，NH4MnO4分解的方程式。</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">二，简答题。</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">（1）将足量的Zn加入1mol·L-1的HCl和HAc溶液中。试解释释氢气的速率不同，释氢气的量不同</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">（2）向Na2S，Na2CO3溶液中通入SO2以制备Na2S2O3·5H2O，1.通入一段时间后，生成沉淀，2.继续通入SO2，沉淀逐渐消失直至溶液澄清，3.再通入SO2，又生成沉淀，此时，加热浓缩冷却结晶过滤，得到Na2S2O3·5H2O。</span><wbr /> <br>       1<span style="font-family:'宋体';line-height:1.8em;">写出各步反应的方程式</span><wbr /> <br>       2<span style="font-family:'宋体';line-height:1.8em;">原溶液中Na2S，Na2CO3的物质的量之比为多少时，适合生成Na2S2O3·5H2O</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">（3）向Na2HPO4溶液中滴加AgNO3，生成黄色沉淀。已知Ag3PO4和Ag2HPO4沉淀均为黄色，试用（普通）实验方法检验出沉淀的成分</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">（4）1写出H2O的结构简式</span><wbr /> <br>     2<span style="font-family:'宋体';line-height:1.8em;">写出H2O作为溶剂的特点</span><wbr /> <br>     3<span style="font-family:'宋体';line-height:1.8em;">写出有H2O参加的两种不同类型反应的化学方程式</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">注：  此试题主干部分是吴宪同学在网上找的.我(宋索源)只是补充了&lt;一,填空题&gt;中的一道题目(网上版本没有的).另外修改了几处网上版本不正确的地方)(如第五题,第六题.)注意:第五题第六题试卷上是给出了单体的结构式,这里无法体现,建议就只做第六题第二问即可.</span><wbr /> <br><br><span style="font-family:'宋体';line-height:1.8em;">感谢:吴宪同学.宋索源(我自己- -).谢谢大家!</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1233037203#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Tue, 27 Jan 2009 06:20:03 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1233037203</guid>
</item>

<item>
<title><![CDATA[2009年北京大学自主招生暨保送生笔试考试-数学]]></title>
<link>http://179384723.qzone.qq.com/blog/1232716244</link>
<description><![CDATA[<div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">数学 </span><wbr /></div><br>1<span style="font-family:'宋体';line-height:1.8em;">圆内接四边形ABCD，AB=1，BC=2，CD=3，DA=4。求圆的半径。</span><wbr /> <br><br>2 <span style="font-family:'宋体';line-height:1.8em;">已知一正无穷等差数列中有3项：13，25，41。求证：2009为该数列中某一项。</span><wbr /> <br><br>3 <span style="font-family:'宋体';line-height:1.8em;">是否存在实数x使tanx+<span style="font-size:13px;line-height:1.8em;">√</span><wbr />3</span><wbr /><span style="font-family:'宋体';line-height:1.8em;">与cotx+<span style="font-size:13px;line-height:1.8em;">√</span><wbr /></span><wbr /><span style="font-family:'Times';line-height:1.8em;">3</span><wbr /><span style="font-family:'宋体';line-height:1.8em;">为有理数？</span><wbr /> <br><br>4 <span style="font-family:'宋体';line-height:1.8em;">已知对任意x均有a cosx + b cos2x </span><wbr />&gt;= - 1 <span style="font-family:'宋体';line-height:1.8em;">恒成立，求a+b的最大值。</span><wbr /> <br><br>5 <span style="font-family:'宋体';line-height:1.8em;">某次考试共有333名学生做对了1000道题。称做对3道及以下的人为不及格，做对6道及以上的人为优秀。问不及格和优秀的人数哪个多？</span><wbr /> <br><br><span style="font-family:'宋体';line-height:1.8em;">特别注意:本试题完全由作者回忆出来,非网上回忆.(网上回忆也是如此,个别描述可能不同.)</span><wbr /> <br><span style="font-family:'宋体';line-height:1.8em;">作者:吴宪,宋索源(我自己- -!)  其中第四大题的简单做法属于 许昌巍.一并感谢.</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1232716244#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Fri, 23 Jan 2009 13:10:44 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1232716244</guid>
</item>

<item>
<title><![CDATA[2008年全国高中数学联赛湖南赛区获奖名单(一等奖)]]></title>
<link>http://179384723.qzone.qq.com/blog/1227678798</link>
<description><![CDATA[<span style="font-weight:bold"><wbr />考 号   姓  名   性别   年级          学   校               一试   二试   总分</span><wbr /> <br>005        刘  雄      男     高三 长沙市雅礼中学         126     120     246 <br>006       曾驭龙     男     高三  长沙市雅礼中学         129     110     239 <br>010       龚鼎为     男     高三  长沙市雅礼中学         135      80      215 <br>013       赵庄田     男     高二  长沙市雅礼中学         98       100     198 <br>023       宋索源     男     高三  长沙市雅礼中学         87       100     187 <br>025       丁一民     男     高三  长沙市雅礼中学         86       100     186 <br>026       袁文逸     女     高三  长沙市雅礼中学         86       100     186 <br>041       王墨涵     女     高三  长沙市雅礼中学         90        90      180 <br>042       李宇星     男     高二  长沙市雅礼中学        100       80      180 <br>043        吴  宪      男     高三  长沙市雅礼中学         99        80      179 <br>045       许昌巍     男     高三  长沙市雅礼中学         68       110     178 <!--v:3.2--> ]]></description>
<category><![CDATA[情感天地]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1227678798#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Wed, 26 Nov 2008 05:53:18 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1227678798</guid>
</item>

<item>
<title><![CDATA[Microsoft Security Bulletin MS08-078 - Critical]]></title>
<link>http://179384723.qzone.qq.com/blog/1224939007</link>
<description><![CDATA[非常遗憾，一周前微软一个非常严重的漏洞被广泛流传：Microsoft Security Bulletin MS08-078 - CriticalSecurity Update for Internet Explorer (960714) <br> <br>无知的黑客为了利用这个漏洞疯狂挂马.现已经证实俄罗斯著名反病毒专家 Drweb 大蜘蛛官方网站被挂马.<br><br><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">北京时间12月18日消息，据外国媒体报道，微软于周三发布了一款IE的漏洞补丁MS08-078，这也是微软打破传统的每月一次的安全更新制度而针对安全漏洞紧急发布的一个补丁。据微软方面透露，这个安全漏洞已经使数百万用户的计算机遭到黑客控制。</span><wbr /> <br><br><br>让我们学习一下英语： <br><br>General InformationExecutive SummaryThis security update resolves a publicly disclosed vulnerability. The vulnerability could allow remote code execution if a user views a specially crafted Web page using Internet Explorer. Users whose accounts are configured to have fewer user rights on the system could be less impacted than users who operate with administrative user rights. <br>This security update is rated Critical for Internet Explorer 5.01, Internet Explorer 6, Internet Explorer 6 Service Pack 1, and Internet Explorer 7. For information about Internet Explorer 8 Beta 2, please see the section, <span style="font-weight:bold"><wbr />Frequently Asked Questions (FAQ) Related to This Security Update</span><wbr />. For more information, see the subsection, <span style="font-weight:bold"><wbr />Affected and Non-Affected Software</span><wbr />, in this section. <br>The security update addresses the vulnerability by modifying the way Internet Explorer validates data binding parameters and handles the error resulting in the exploitable condition. For more information about the vulnerability, see the Frequently Asked Questions (FAQ) subsection under the next section, <span style="font-weight:bold"><wbr />Vulnerability Information</span><wbr />. <br>This security update also addresses the vulnerability first described in <a href="http://www.microsoft.com/technet/security/advisory/961051.mspx" target="_blank">Microsoft Security Advisory 961051</a><wbr />. <br><span style="font-weight:bold"><wbr />Recommendation.</span><wbr /> Microsoft recommends that customers apply the update immediately. <br><span style="font-weight:bold"><wbr />Known Issues.</span><wbr /> None <br><a href="http://www.microsoft.com/technet/security/bulletin/MS08-078.mspx#EQB" target="_blank"><wbr /><a href="http://www.microsoft.com/library/gallery/templates/MNP2.Common/images/arrow_px_up.gif" target="_blank"><img style="width:7px;height:9px;border:0;" src="http://www.microsoft.com/library/gallery/templates/MNP2.Common/images/arrow_px_up.gif" /></a><wbr /></a><wbr /><a href="http://www.microsoft.com/technet/security/bulletin/MS08-078.mspx#EQB" target="_blank">Top of section</a><wbr /> <br>Affected and Non-Affected SoftwareThe software listed here have been tested to determine which versions or editions are affected. Other versions or editions are either past their support life cycle or are not affected. To determine the support life cycle for your software version or edition, visit <a href="http://go.microsoft.com/fwlink/?LinkId=21742" target="_blank">Microsoft Support Lifecycle</a><wbr />. <br><br>学习英语，这就是我的初衷。: ) <br><br><br>本来打算不出数学成绩不上网的, 但是现在出现了非常重大的事情: <br><br>1:(本来有点不太喜欢360的,虽然它很有用,当时它很&quot;吵&quot; 即做了一点事后老是叫的太多了, <br>做人要低调. - -  )<span style="font-weight:bold"><wbr /><span style="color:#ff0000;line-height:1.8em;"> <br></span><wbr /></span><wbr />　　近日，微软爆出有史以来最大的安全漏洞。通过该漏洞，攻击者可以将木马藏于图片中，<span style="font-weight:bold"><wbr />网民无论是通过浏览器浏览、还是用各种看图软件打开、或者在即时聊天窗口、电子邮件、Office文档里查看这些图片，只要看了就会中招！哪怕只是看了一个QQ表情！</span><wbr />其危害程度远远超过以往微软公布过的任何安全漏洞。 <br><br>　　针对这一突发情况，奇虎360迅速组织力量进行研发，在第一时间独家推出了完整的解决方案，能够同时修补windows系统和第三方软件中存在的漏洞。<span style="font-weight:bold"><wbr /><span style="color:red;line-height:1.8em;">为此奇虎360紧急呼吁，请广大网民立即下载安装微软<a href="http://baike.360.cn/wiki/item/GDI" target="_blank">GDI</a><wbr />+图片漏洞360专用补丁包（下载地址：<a href="http://dl.360safe.com/360gdi_fix.exe" target="_blank">http://dl.360safe.com/360gdi_fix.exe</a><wbr />），并同时使用360安全卫士给您的系统打补丁，以确保您的电脑能够尽快远离木马威胁。</span><wbr /></span><wbr /> <br><br>　　据奇虎360安全专家介绍，此次微软爆出的GDI+图片漏洞非常严重，有点类似以前的“光标漏洞”和“wmf漏洞”，但涉及的图片格式更多，包括bmp、wmf、gif、emf、vml等，因此漏洞涉及面广，影响网民数众多，危害程度特别巨大，堪称“微软有史以来最大的安全漏洞”。 <br><br>　　受此漏洞影响，几乎所有浏览器、即时聊天工具、Office程序以及看图软件等第三方软件都可能成为木马传播的渠道。网民即便没有点击运行任何程序，只要浏览了BBS、博客、电子邮件或即时聊天窗口里带木马的图片，就会立即中招。一旦网民查看了这些带木马的图片，或浏览了带木马图片的网站，攻击者就能利用这一GDI+图片漏洞远程执行代码和安装程序，随意查看、更改或删除用户的电脑数据，或者创建能完全访问用户电脑的新帐户。<span style="font-weight:bold"><wbr />也就是说，攻击者可以利用该漏洞完全控制住你的电脑！</span><wbr /> <br><br>　　奇虎360安全专家表示，该漏洞影响范围不但包括IE浏览器、Office软件以及windows自带的图片浏览工具，还波及了目前几乎所有能查看、展示主要图片格式的第三方软件，包括主流聊天工具、浏览器（除了360安全浏览器的超强安全模式）、看图软件和视频播放软件。 <br><br>　　<span style="font-weight:bold"><wbr />奇虎360特别提醒广大网民，一定要养成定期打补丁的好习惯！</span><wbr />在木马泛滥的今天，只有经常使用360安全卫士给自己的系统打补丁，彻底摒弃“事后查杀”的侥幸心理，才能真正防患于未然，最大程度地确保您的电脑安全。 <br><br>2:(  最重要的!!! 请非常注意!!!  知道冲击波么? 了解Windows2000么? 比它们都严重! 微软破例发动安全更新! ) <br>  Windows操作系统的安全性再次受到严峻挑战！10月24日凌晨，微软紧急发布了一项重要的安全更新（KB958644），涉及Windows2000/XP/Vista等桌面操作系统的绝大多数版本。其危害程度毫不逊于当年波及80%以上Windows用户的“冲击波”病毒。 <br><br>　　微软公告称，黑客可以利用该漏洞向网络中的电脑发出远程的特制RPC请求，无需身份验证便可在电脑中任意执行远程代码。这就是说，即便你的电脑设置了管理员密码，也只能任由黑客摆布。 <br><br>　　截至目前，网上已出现了利用该漏洞的蠕虫病毒(Win32/MS08067.gen!A)。据360安全专家分析，这一漏洞的危害极为严重，黑客仅根据IP地址便可随意发起攻击，简直是“指哪打哪”，而且感染性非常强，只要远程执行一段下载恶意程序的代码，不但能随意弹出广告、盗取用户账号，还可以控制本机进而攻击其他用户，使破坏力持续放大，局域网的用户一旦有一个中招病毒就会迅速扩散。 <br><br>　　据悉，这是微软近一年半以来首次打破每月定期安全公告的惯例而发布更新。<span style="color:red;line-height:1.8em;">目前唯一的解决方案便是为系统打好KB958644补丁，360安全专家强烈建议广大用户立即使用360安全卫士修复系统漏洞，以免受到病毒感染。</span><wbr /> <br><br>　　点击下面链接，详细了解该漏洞的技术内幕。 <br><br>　　<a href="http://www.microsoft.com/china/technet/security/bulletin/MS08-067.mspx" target="_blank">http://www.microsoft.com/china/technet/security/bulletin/MS08-067.mspx</a><wbr /> <br><br>3:　( 很重要 不仅网络上流传了,我在电脑报上也看到了 - - 42期 2008 10 27 ) <br><br>近日，一项名为“Clickjacking”的安全问题被曝出，涉及几乎所有的网络应用。其中最严重的就是“Flash强制启动视频”漏洞。<span style="color:red;line-height:1.8em;">利用这一漏洞，黑客可强制启动并完全控制您的摄像头和麦克风，从而对您的个人隐私形成极大的威胁。</span><wbr /> <br><br>　　 黑客可以利用“Flash强制启动视频”漏洞，设计一个恶意网页。当不慎访问该网页时，您的正常鼠标点击操作就会触发这一漏洞。黑客可以在您毫不知情的情况下，强制启动并完全控制您的摄像头和麦克风，大肆偷窥您的个人隐私。 <br><br>　　由于AdobeFlashPlayer软件在互联网上应用极其广泛，而该“Flash强制启动视频”漏洞会影响到Flash软件的绝大多数版本，因而该漏洞已经成为广大网民电脑中非常严重的安全隐患。 <br><br>　　 为此，<span style="color:red;line-height:1.8em;">360安全中心紧急开发了针对该漏洞的专用修复工具</span><wbr />（<a href="http://dl.360safe.com/360flashvfix.exe" target="_blank">点此下载</a><wbr />），并强烈建议用户立即使用该工具进行修复，同时使用360安全卫士为您的系统打好补丁，以确保尽快远离隐私泄露的威胁。 <br><br>　　 <span style="font-weight:bold"><wbr /><span style="color:red;line-height:1.8em;">360安全专家提醒广大用户，请尽快按如下方案处理：</span><wbr /></span><wbr /> <br><br>　　一、下载使用“Flash强制启动视频”漏洞工具。 <br><br>　　<a href="http://dl.360safe.com/360flashvfix.exe" target="_blank">http://dl.360safe.com/360flashvfix.exe</a><wbr /> <br><br>　　二、经常使用360安全卫士修复系统及第三方软件漏洞。 <br><br>　　三、开启360安全卫士的“网页防漏及恶意网站拦截”功能，及时拦截可能存在风险的网页。 <br><br>　　此外，360安全中心建议您使用<a href="http://se.360.cn/" target="_blank">360安全浏览器</a><wbr />，上网时自动屏蔽恶意网址并可智能拦截网页中的恶意代码，使中招的概率降到最低。 <br><br>　　<span style="color:red;line-height:1.8em;">点击下面链接，观看模拟的黑客攻击动画。（摄像头就这样被打开了…可怕！！</span><wbr /> <br><br>　　<a href="http://baike.360.cn/recommend/4012610/12737516.html" target="_blank">http://baike.360.cn/recommend/4012610/12737516.html</a><wbr /> <br><br>　　<span style="color:red;line-height:1.8em;">点击下面链接，详细了解该漏洞的技术内幕。</span><wbr /> <br><br>　　<a href="http://baike.360.cn/recommend/4012610/12737725.html" target="_blank">http://baike.360.cn/recommend/4012610/12737725.html</a><wbr /> <br><br><br>4: ( 非常不厚道的行为_ - -! 　) <br><br><span style="color:#0000ff;line-height:1.8em;">被黑屏了么？为了方便那些使用盗版操作系统的朋友，如果你的系统被黑屏了，如果你不懂得如何关闭windows自动更新，我给你推荐一个超级好用的一键式自动解决黑屏问题的工具，超级好用！这个工具是由安全专家认证的哟</span><wbr /><span style="font-weight:bold"><wbr /> <br><a href="http://baike.360.cn/index.php?c=attach&amp;a=down&amp;id=ad35b083c451.rar" target="_blank">点此下载该工具</a><wbr /></span><wbr /> <br><br>绝对安全无病毒，请放心下载。强烈要求版主设精置顶，各位觉得好的挺一下啊 <br><br><span style="font-weight:bold"><wbr />下载地址：<a href="http://baike.360.cn/index.php?c=attach&amp;a=down&amp;id=ad35b083c451.rar" target="_blank">http://baike.360.cn/index.php?c=attach&amp;a=down&amp;id=ad35b083c451.rar </a><wbr /></span><wbr /><br><br><br>上面的都是从360上移出来的,本来喜欢rising多一些, 不过360上好一些  (  网站上还是很吵- -!   )    请大家注意 谢谢! <br><span style="font-weight:bold"><wbr /><br></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1224939007#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Sat, 25 Oct 2008 12:50:07 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1224939007</guid>
</item>

<item>
<title><![CDATA[闻香识色 --华硕笔记本]]></title>
<link>http://179384723.qzone.qq.com/blog/1220852916</link>
<description><![CDATA[先看图片:<wbr /><a href="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=efaf0ef9bba517c593bef3caa9648d765a3f20ac19b1d15298e4ddf996a37737597ec2fefdd8c993dcf7a02dda8ad7845f4c225401702fe52ee9adcd484b97b3c0e259d459f4bcf976b18170c000a7495cad46b5" target="_blank"><img style="border:0;" src="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=efaf0ef9bba517c593bef3caa9648d765a3f20ac19b1d15298e4ddf996a37737597ec2fefdd8c993dcf7a02dda8ad7845f4c225401702fe52ee9adcd484b97b3c0e259d459f4bcf976b18170c000a7495cad46b5" /></a><wbr /> <br><br>Vital Green: <br><wbr /><a href="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=c38325d3b177f5145a8091dbd2719df068e860500ac89420e226bc32fcbf3bbe2aad1fdd9ef64926b8b46a5f4b25871dae068db9a50dc88c712471e7d80d3850cbeb5d3dda5978c1bbe3a6ba7d1b55c9ba4e356d" target="_blank"><img style="border:0;" src="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=c38325d3b177f5145a8091dbd2719df068e860500ac89420e226bc32fcbf3bbe2aad1fdd9ef64926b8b46a5f4b25871dae068db9a50dc88c712471e7d80d3850cbeb5d3dda5978c1bbe3a6ba7d1b55c9ba4e356d" /></a><wbr /> <br><br><br>Surfing Blue: <br><wbr /><a href="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=d9eebcd0ef6c4f5992e0bdc173b9d3102d398612ae462cf7c063b60861b709a07e584a7e96eb891f3f6e9a139d3b6095e9afbb8ade29b7f500134d3ab8e5c349e3bc39d85dc4aefdaca9d1ed021c8ea6b6060755" target="_blank"><img style="border:0;" src="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=d9eebcd0ef6c4f5992e0bdc173b9d3102d398612ae462cf7c063b60861b709a07e584a7e96eb891f3f6e9a139d3b6095e9afbb8ade29b7f500134d3ab8e5c349e3bc39d85dc4aefdaca9d1ed021c8ea6b6060755" /></a><wbr /> <br><br>Extreme Black: <br><wbr /><a href="http://sz4.photo.store.qq.com/http_imgload.cgi?/rurl2=b8e8e54d3c9d3d794f377bef100a2283b1a2a0b1c8d888e76f16f5516063a16df1cf9059ae25d52219258c989bf430611c35711bce97563d95d01667e21677850eb33ced3d88e28874403a3d59ae89940a849013" target="_blank"><img style="border:0;" src="http://sz4.photo.store.qq.com/http_imgload.cgi?/rurl2=b8e8e54d3c9d3d794f377bef100a2283b1a2a0b1c8d888e76f16f5516063a16df1cf9059ae25d52219258c989bf430611c35711bce97563d95d01667e21677850eb33ced3d88e28874403a3d59ae89940a849013" /></a><wbr /> <br><br>Hawaii Red: <br><wbr /><a href="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=4a6490339cfd9d609133d4198eb0f7d02257b5d3934a0dfe2abce4600e5b791bba8c529665f6267a56a5c59174f60b8fa6a9c8ebc8966064e0f586a0bafe8177cea7c0192af1fb77bfca5d9e9d31ef6c4f769e3d" target="_blank"><img style="border:0;" src="http://sz5.photo.store.qq.com/http_imgload.cgi?/rurl2=4a6490339cfd9d609133d4198eb0f7d02257b5d3934a0dfe2abce4600e5b791bba8c529665f6267a56a5c59174f60b8fa6a9c8ebc8966064e0f586a0bafe8177cea7c0192af1fb77bfca5d9e9d31ef6c4f769e3d" /></a><wbr /> <br><br><br><br><br>震撼吧:) <br><br>我最喜欢Surfing Blue,还有Hawaii Red .你呢?   <br><br><br> <br>配置:<br><div style="text-align:center;"><span style="font-weight:bold"><wbr />PConline产品库――规格参数</span><wbr /></div><div style="text-align:center;">型号：</div><div style="text-align:center;">F6V F6K84V-SL </div><div style="text-align:center;">处理器：</div><div style="text-align:center;">Intel Core2 Duo(Penryn) P8400(2.26G)</div><div style="text-align:center;">主板芯片组：</div><div style="text-align:center;">Intel GM45+ICH9M</div><div style="text-align:center;">内存容量：</div><div style="text-align:center;">1024MB</div><div style="text-align:center;">硬盘容量：</div><div style="text-align:center;">160GB</div><div style="text-align:center;">光驱类型：</div><div style="text-align:center;">DVD±RW</div><div style="text-align:center;">屏幕尺寸：</div><div style="text-align:center;">13.3英寸</div><div style="text-align:center;">显示芯片：</div><div style="text-align:center;">集成Intel GMA X4500显卡,ATI Mobility Radeon HD3470(256M)</div><div style="text-align:center;">网卡：</div><div style="text-align:center;">无线通讯：</div><div style="text-align:center;">802.11a/b/g/n无线网卡,蓝牙2.0+EDR</div><div style="text-align:center;">内置摄像头：</div><div style="text-align:center;">内置摄像头,130万像素摄像头</div><div style="text-align:center;">USB：</div><div style="text-align:center;">4个,USB2.0</div><div style="text-align:center;">读卡器：</div><div style="text-align:center;">内置,SD,MS,MS Pro,MS Duo,MMC,mini SD/MS-Pro Duo格(其中MS DUO/MS Pro DUO/Mini SD格式需转接卡)</div><div style="text-align:center;">扩展槽：</div><div style="text-align:center;">其它接口：</div><div style="text-align:center;">eSATA接口,HDMI接口,SP/DIF接口,RJ11,RJ45,声音输入,声音输出孔,直流电源插孔,安全锁孔</div><div style="text-align:center;">重量：</div><div style="text-align:center;">约1.99Kg</div><div style="text-align:center;">操作系统：</div><div style="text-align:center;">Windows Vista Home Basic</div><br><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1220852916#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Mon, 08 Sep 2008 05:48:36 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1220852916</guid>
</item>

<item>
<title><![CDATA[奥运加油]]></title>
<link>http://179384723.qzone.qq.com/blog/1218195367</link>
<description><![CDATA[即将推出 <br><br><wbr /><a href="http://sz.photo.store.qq.com/rurl2=fbff0af94edf712707323f1d8b395e93db22c90f51d66014ebf009b5c5e7d15dcdc0ab215bd2eee28931a794bc9d39a30d8682c86097fd3c857d26f81b44f3651746611a93fd384edd67a14845b2e6b8b8d10159" target="_blank"><img style="border:0;" src="http://sz.photo.store.qq.com/rurl2=fbff0af94edf712707323f1d8b395e93db22c90f51d66014ebf009b5c5e7d15dcdc0ab215bd2eee28931a794bc9d39a30d8682c86097fd3c857d26f81b44f3651746611a93fd384edd67a14845b2e6b8b8d10159" /></a><wbr /> <br><br>1,开幕式时的那位小女孩 <span style="font-size:13px;line-height:1.8em;">林妙可 太可爱了.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">2,击缶倒计时太有创意了喔.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">3,烟火好漂亮!</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">4,画卷好大气.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">5,和平鸽好真实.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">6,太极拳好流畅.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">7,主题歌Sarah Brightman唱的音好宽,好听.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">8,李宁太强了.</span><wbr /> <br><br><br><br><br><span style="font-size:13px;line-height:1.8em;">注:8.14日才知道,歌唱祖国的歌曲是 <span style="font-weight:bold"><wbr />杨沛宜 .</span><wbr />她真不错!</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">但是林妙可虽然是假唱,但是我们也应该给她鼓励.</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1218195367#comment</comments>
<qz:effect>1537</qz:effect>
<pubDate>Fri, 08 Aug 2008 11:36:07 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1218195367</guid>
</item>

<item>
<title><![CDATA[测试题.]]></title>
<link>http://179384723.qzone.qq.com/blog/1216803769</link>
<description><![CDATA[本测试共计6题: <br><br>1.(6'): <br><br>    求函数 <span style="color:#000000;line-height:1.8em;">y=x^x</span><wbr /> 的最小值. <br><br>2.(6'): 在&lt;1&gt; &lt;2&gt;中任选1题,下同: <br>     <br>    &lt;1&gt;.已知 <span style="color:#000000;line-height:1.8em;">p</span><wbr /> 是大于2的质数, <span style="color:#000000;line-height:1.8em;">2p+1</span><wbr /> 也是质数,求证: <span style="color:#000000;line-height:1.8em;">4p+1</span><wbr /> 是和数.  (额外加分 4') <br><br>    &lt;2&gt;. A 为 { 1 2 3 .... n }的1个子集.若A中的任意2个元素之差的绝对值大于1,则称A是n-不相邻的 , <br><br>则 7-不相邻 的集合个数为_. <br><br>3.(16'): <br>   <br>    &lt;1&gt;一次乒乓球比赛中,有n(n&gt;2)名选手参赛,已知没有1位选手全胜.证明:必存在3名选手A,B,C.满足A胜B,B胜C,C胜A. <br><br>    &lt;2&gt;在2&lt;2&gt;中考虑 n-不相邻 的集合个数为_.(额外加分6') <br><br>4.(9'): <br><br>    &lt;1&gt; 把8张卡片 A A B B C D 排成1排,相同字母不同排的排法是_.    (8改为6- -) <br><br>    &lt;2&gt; 设 S 是20个不同实数的集合, A(S) 是 S 的任意两个不相同的元素的平均值构成的集合.则 A(S) 中元素最少为_. (额外加分 5') <br><br>5.(29'): <br><br>    有100种昆虫,每两种必然有一种能 克 另一种,(但A克B,B克C,不代表A克C) 证明:可以将这100种昆虫排成一排.使得每一种昆虫能 克 紧邻着它后面的那种昆虫. <br><br>6(40'): <br><br>    &lt;1&gt; 设S=&lt; x(1) x(2) x(3) ... x(2008) &gt; 是平面上的点,(每一个x(i)代表1个点)其中任意两个点之间距离不大于1.则距离大于<span style="font-size:13px;line-height:1.8em;">√2／2的点对最多有_.</span><wbr /> <br><br><span style="font-size:13px;line-height:1.8em;">    &lt;2&gt; 设S是平面上n个点的点集,其中任意3点不共线.如果平面上存在1个含m个点的集合P,满足S中的任意三个点构成的3角形中有P中的1个或几个点,求m的最小值.(额外加分 19')</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1216803769#comment</comments>
<qz:effect>528</qz:effect>
<pubDate>Wed, 23 Jul 2008 09:02:49 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1216803769</guid>
</item>

<item>
<title><![CDATA[天佑中华,众志成城]]></title>
<link>http://179384723.qzone.qq.com/blog/1210936606</link>
<description><![CDATA[<span style="color:#000000;line-height:1.8em;"><span style="font-weight:bold"><wbr />请在此位置为地震灾区罹难的人们默哀10秒钟.</span><wbr /></span><wbr /> <br><br><span style="font-weight:bold"><wbr />              <br><wbr /><a href="http://photo.store.qq.com/http_imgload.cgi?/rurl2=866da2d9cd882116dff66aaa3a1d66edea4c28eeff38872ea2892b5f3e9252d45161e7127ca84e31ea12e1f7b17c19abfbc14a311219a1feabe6526a69a8af665f2bab6794c3839a01539e08ca362c69d4cf6c08" target="_blank"><img style="border:0;" src="http://photo.store.qq.com/http_imgload.cgi?/rurl2=866da2d9cd882116dff66aaa3a1d66edea4c28eeff38872ea2892b5f3e9252d45161e7127ca84e31ea12e1f7b17c19abfbc14a311219a1feabe6526a69a8af665f2bab6794c3839a01539e08ca362c69d4cf6c08" /></a><wbr />       <wbr /><a href="http://photo.store.qq.com/http_imgload.cgi?/rurl2=7d197dc350ff617eb6b664cdf2d6a9336c73ddee4d17996463eedd12f5a89a415c90ed5e82c66dc0d621c0b497c69d1df5cd6478bc82b5d4f02544814a5eb7593eb074b33d8f40de2fed791f14fc0bcedb1206d5" target="_blank"><img style="border:0;" src="http://photo.store.qq.com/http_imgload.cgi?/rurl2=7d197dc350ff617eb6b664cdf2d6a9336c73ddee4d17996463eedd12f5a89a415c90ed5e82c66dc0d621c0b497c69d1df5cd6478bc82b5d4f02544814a5eb7593eb074b33d8f40de2fed791f14fc0bcedb1206d5" /></a><wbr />       <wbr /><a href="http://photo.store.qq.com/http_imgload.cgi?/rurl2=04f473e895fdc900b67e07dd07703aa9d425ecd5c57bcac61173c94f8b9972d1e8fb08ec5b6f67e291026d8f83169b8898d077e6205683a50a5601fe3e18608ae7d6ab7e71bcef9c4aad76179c75f2a4d0825885" target="_blank"><img style="border:0;" src="http://photo.store.qq.com/http_imgload.cgi?/rurl2=04f473e895fdc900b67e07dd07703aa9d425ecd5c57bcac61173c94f8b9972d1e8fb08ec5b6f67e291026d8f83169b8898d077e6205683a50a5601fe3e18608ae7d6ab7e71bcef9c4aad76179c75f2a4d0825885" /></a><wbr /><br><br></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[情感天地]]></category>
<author><![CDATA[179384723@qq.com(宋索源)]]></author>
<comments>http://179384723.qzone.qq.com/blog/1210936606#comment</comments>
<qz:effect>1553</qz:effect>
<pubDate>Fri, 16 May 2008 11:16:46 GMT</pubDate>
<guid>http://179384723.qzone.qq.com/blog/1210936606</guid>
</item>

</channel>
</rss>

