<?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; Security</title>
	<atom:link href="http://mmlst.com/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://mmlst.com</link>
	<description>分享知识</description>
	<lastBuildDate>Fri, 07 Aug 2009 01:14:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Microsoft .NET Security Warning</title>
		<link>http://mmlst.com/2009/05/21/microsoft-net-security-warning/</link>
		<comments>http://mmlst.com/2009/05/21/microsoft-net-security-warning/#comments</comments>
		<pubDate>Thu, 21 May 2009 06:43:52 +0000</pubDate>
		<dc:creator>mmlst</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://mmlst.com/?p=128</guid>
		<description><![CDATA[用C#.NET创建的程序，放在局域网上在另外一台电脑上打开，会出现一个提示：


GOOGLE了一下，发现这是因为在本地电脑和局域网电脑上运行程序的安全许可不同而造成的。
这里有一篇2003年的文章详细介绍了MyComupter zone和LocalIntranet zone的不同，也列出了解决的三种办法。其中第三种修改policy来完全的信任LocalIntranet zone是不被推荐的，因为是一个非常大的安全漏洞。
上面的三种办法我都没有试，因为看到这个人的另外一个2008年的文章介绍了最新的解决办法，就是安装.NET Framework 3.5 SP1在客户端，起到Full trust LocalIntranet zone的作用，在客户端运行局域网上的软件就会没有任何问题。乍看起来是跟上面说的第三种一样，但其实是不一样的。3.5SP1会起到“沙盒”的作用，这样就能有效杜绝所引发的安全漏洞。
只是3.5SP1够大的。。231MB。。
  
]]></description>
		<wfw:commentRss>http://mmlst.com/2009/05/21/microsoft-net-security-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>提高XP系统的免疫力</title>
		<link>http://mmlst.com/2008/08/03/%e6%8f%90%e9%ab%98xp%e7%b3%bb%e7%bb%9f%e7%9a%84%e5%85%8d%e7%96%ab%e5%8a%9b/</link>
		<comments>http://mmlst.com/2008/08/03/%e6%8f%90%e9%ab%98xp%e7%b3%bb%e7%bb%9f%e7%9a%84%e5%85%8d%e7%96%ab%e5%8a%9b/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 00:42:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[电脑随记]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://mmlst.com/?p=39</guid>
		<description><![CDATA[在360上看到一篇介绍如果系统“裸奔”的办法，在此简单摘录一下，以备查询：
- 点“开始”-“运行”，然后输入secpol.msc
- 右键点击“软件限制策略”-“创建新的策略”
- 选择“其它规则”
里面已经有4个建立好的注册表规则，不要修改
- 右键点击“其它规则” &#8211; “新路径规则”
路径                                                        安全级别
?:\Recycler\*.*                                                     “不允许的”
?:\System Volume Information\*.*                      “不允许的”
%windir%\system32\Drivers\*.*                          “不允许的”
%windir%\system\*.*                                           “不允许的”
svchost.exe                                                         “不允许的”
%windir%\system32\svchost.exe                        “不受限的”
*jpg.exe                                                               “不允许的”
*txt.exe                                                               “不允许的”
expl0rer.exe (是数字0，不是字母o)                       “不允许的”
exp1orer.exe (是数字1，不是字母l)                       “不允许的”
exp10rer.exe (是数字1,0, 不是字母l,o)                  “不允许的”
explorer.com                                                      “不允许的”
*.pif                                                                    “不允许的”
在你建立“新路径规则”时，”安全级别“选项一栏中只有两个选择“不允许的”和“不受限的”
在开启另外一个级别名为“基本用户”的方法如下：
“开始” &#8211; “运行” &#8211; “regedit” &#8211; “HKEY_LOCAL_MACHINE\software\Policies\Microsoft\Windows\Safer\Codeldentifiers” 中，新建一个DWORD，名为“Levels”，值为十进制“131072”
建立好后，注销系统，然后重新登陆，打开secpol.msc后，会发现在“安全级别”中出现“基本用户”
%ProgramFiles%\InternetExplorer\ieplorer.exe             “基本用户”
%USERPROFILE%\Local Settings\Temp\*.*                    “基本用户”
%USERPROFILE%\Local Settings\Temp\**\**                “基本用户”
然后再“运行”中，输入&#8221;gpupdate /force&#8221;来刷新组策略设置就好了
]]></description>
		<wfw:commentRss>http://mmlst.com/2008/08/03/%e6%8f%90%e9%ab%98xp%e7%b3%bb%e7%bb%9f%e7%9a%84%e5%85%8d%e7%96%ab%e5%8a%9b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>安装配置Nessus</title>
		<link>http://mmlst.com/2008/07/11/%e5%ae%89%e8%a3%85%e9%85%8d%e7%bd%aenessus/</link>
		<comments>http://mmlst.com/2008/07/11/%e5%ae%89%e8%a3%85%e9%85%8d%e7%bd%aenessus/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 06:57:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINUX学习笔记]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nessus]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mmlst.com/?p=28</guid>
		<description><![CDATA[去http://www.nessus.org下载最新的版本
#dkpg -i  Nessus-3.2.1-ubuntu804_i386.deb
然后去http://www.nessus.org/plugins/?view=register-info注册一下
去邮箱取回Activation code
/opt/nessus/bin/nessus-fetch --register 1E2A-4553-D03B-71AF-56F3

 - Please run /opt/nessus/sbin/nessus-adduser to add an admin user
 - Register your Nessus scanner at http://www.nessus.org/register/ to obtain
   all the newest plugins
 - You can start nessusd by typing /etc/init.d/nessusd start

]]></description>
		<wfw:commentRss>http://mmlst.com/2008/07/11/%e5%ae%89%e8%a3%85%e9%85%8d%e7%bd%aenessus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<html>
<head>
<title></title>
<meta name="verify-v1" content="g9TyLKV+Qw/waEbbIIFWqxWkvuCs7piVz1GOM0RuSuM=" />
</head>
<body>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-5977749-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</body>
</html>