<?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>Alexander's Blog &#187; Security/Firewalls</title>
	<atom:link href="http://blog.techgalaxy.net/archives/category/securityfirewalls/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.techgalaxy.net</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 17:45:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SharePoint 2010 Lockdown Mode (ViewFormPagesLockdown)</title>
		<link>http://blog.techgalaxy.net/archives/3301</link>
		<comments>http://blog.techgalaxy.net/archives/3301#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:03:18 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Security/Firewalls]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3301</guid>
		<description><![CDATA[Microsoft Office SharePoint Server (MOSS) 2007 has a feature called ViewFormPagesLockdown, or some people simply refer to it as the SharePoint lockdown feature. Fortunately, the feature also works with SharePoint Server 2010. The lockdown feature is useful if you have a site collection that is configured for Anonymous access on a Publishing site and you want to lock [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Office SharePoint Server (MOSS) 2007 has a feature called ViewFormPagesLockdown, or some people simply refer to it as the SharePoint lockdown feature. Fortunately, the feature also works with SharePoint Server 2010.</p>
<p>The lockdown feature is useful if you have a site collection that is configured for Anonymous access on a Publishing site and you want to lock it down so Anonymous users don&#8217;t have access to the Forms page (e.g. <span style="text-decoration: underline;">http://ServerName/Pages/Forms/AllItems.aspx</span>). You might also be able to take advantage of this feature in another way. For example, if you ever run into an issue on a Publishing Portal configured for Anonymous access where users are unable to post comments (which are stored in a List) on a blog site then the lockdown feature can be disabled, which will result in allowing Anonymous users to post comments. Normally, people won&#8217;t have problem posting comments on a blog site unless it is a Publishing site, in which case they will get a prompt to enter user credentials. In such a scenario you can disable the lockdown feature.</p>
<p><span style="text-decoration: underline;">NOTE</span>: <em>By default, all publishing sites have the ViewFormPagesLockdown feature enabled.</em></p>
<p>You can either use stsadm.exe or PowerShell to enable this feature. I prefer to use PowerShell. If you want more detailed information on how to use stsadm.exe, Microsoft&#8217;s Tyler Butler has documented it <a href="http://blogs.msdn.com/b/ecm/archive/2007/05/12/anonymous-users-forms-pages-and-the-lockdown-feature.aspx">here</a> for MOSS 2007.</p>
<p>With PowerShell, you can easily enable to disable this feature. Here are the instructions.</p>
<ol>
<li>If you are unsure whether the lockdown is enabled, use the following PowerShell command to find out the answer.<br />
<strong>get-spfeature -site SiteCollectionURL</strong><br />
e.g. <span style="color: #008000;"><strong>get-spfeature -site http://www.winnetusergroup.com</strong></p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown01.png"><img class="alignnone size-medium wp-image-3321" title="Lockdown01" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown01-300x244.png" alt="" width="300" height="244" /></a></p>
<p></span></li>
<li>Look at all the features listed and see if ViewFormPagesLockdown is enabled. If you see it listed then it is enabled, otherwise ViewFormPagesLockdown is disabled.</li>
<li>The lockdown feature can be enabled or disabled. To enable it first run the following command.<br />
<strong>$lockdown = get-spfeature viewformpageslockdown</strong></li>
<li>Now execute the following command to enable it.<br />
<strong>enable-spfeature $lockdown -url SiteCollectionURL</strong><br />
<span style="color: #008000;"> <span style="color: #000000;">e.g. <strong><span style="color: #008000;">enable-spfeature $lockdown -url http://www.winnetusergroup.com</span></strong></span></span></p>
<p><strong><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown02.png"><img class="alignnone size-medium wp-image-3322" title="Lockdown02" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown02-300x227.png" alt="" width="300" height="227" /></a></strong><br />
<span style="text-decoration: underline;"><br />
NOTE</span>: To disable the lockdown feature replace the word enable with disable. For example:<br />
<strong>disable-spfeature $lockdown -url </strong><strong>SiteCollectionURL</strong></li>
<li>At this point you can verify that the feature is enabled by running the following command. Look for the ViewFormPagesLockdown entry in the list. If it exists, the lockdown feature is enabled.
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown03.png"><img class="alignnone size-medium wp-image-3323" title="Lockdown03" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown03-126x300.png" alt="" width="126" height="300" /></a><br />
<strong><br />
</strong></li>
<li>According to Microsoft, if Anonymous Access is configured for the site then you need to first disable it and then re-enable it. To enable/disable Anonymous Access in SharePoint Server 2010 go to Site Actions, Site Permissions and click Anonymous Access icon on the ribbon.</li>
</ol>
<hr /><span style="font-size: xx-small; font-family: Verdana;">Copyright ©2011 Zubair Alexander. All rights reserved.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3301/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vulnerability in SSL/TLS Could Allow Information Disclosure</title>
		<link>http://blog.techgalaxy.net/archives/3295</link>
		<comments>http://blog.techgalaxy.net/archives/3295#comments</comments>
		<pubDate>Sun, 02 Oct 2011 18:03:15 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Security/Firewalls]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3295</guid>
		<description><![CDATA[Microsoft recently posted this Knowledge Base article 2588513: Vulnerability in SSL/TLS could allow information disclosure. The actual Security Advisory is posted here. According to the advisory: &#8220;Microsoft is aware of detailed information that has been published describing a new method to exploit a vulnerability in SSL 3.0 and TLS 1.0, affecting the Windows operating system. [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft recently posted this Knowledge Base article 2588513: <a href="http://support.microsoft.com/kb/2588513">Vulnerability in SSL/TLS could allow information disclosure</a>. The actual Security Advisory is posted <a href="http://technet.microsoft.com/en-us/security/advisory/2588513">here</a>. According to the advisory:</p>
<blockquote><p>&#8220;Microsoft is aware of detailed information that has been published  describing a new method to exploit a vulnerability in SSL 3.0 and TLS  1.0, affecting the Windows operating system. This vulnerability affects  the protocol itself and is not specific to the Windows operating system.  This is an information disclosure vulnerability that allows the  decryption of encrypted SSL/TLS traffic. This vulnerability primarily  impacts HTTPS traffic, since the browser is the primary attack vector,  and all web traffic served via HTTPS or mixed content HTTP/HTTPS is  affected. We are not aware of a way to exploit this vulnerability in  other protocols or components and we are not aware of attacks that try  to use the reported vulnerability at this time. Considering the attack  scenario, this vulnerability is not considered high risk to customers.&#8221;</p></blockquote>
<p>There are at least two mitigating factors:</p>
<ol>
<li>The attack must make several hundred HTTPS requests before the attack could be successful.</li>
<li>TLS 1.1, TLS 1.2, and all cipher suites that do not use CBC mode are not affected.</li>
</ol>
<p><strong>Workaround</strong></p>
<p>Microsoft offers the following workaround. In Windows 7, disable the TLS 1.0 protocol and enable TLS 1.1 and TLS 1.2 because they are not affected. Unfortunately, in Windows XP the Internet Explorer doesn&#8217;t offer TLS 1.1, or TLS 1.2.</p>
<p><span style="text-decoration: underline;">NOTE</span>: <em>Neither Mozilla Firefox nor Chrome supports TLS 1.1 and TLS 1.2. Therefore, your best bet is to use Internet Explorer 9 on Windows 7 or Opera 10, which also supports TLS 1.2.</em></p>
<p>In Internet Explorer 9<em>, </em>go to Tools, Internet options, and on the Advanced tab clear the TLS 1.0 check box and select the TLS 1.1 and TLS 1.2 check boxes. Your screen should look something like this.</p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/tls.png"><img class="alignnone size-medium wp-image-3296" title="tls" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/tls-234x300.png" alt="" width="234" height="300" /></a></p>
<p><strong>Does <em>Fix It</em> Really Fixes Things?</strong></p>
<p>If you use the <em>Fix it</em> solution in the KB article that automatically creates a restore point and then supposedly fixes the problem, you will notice that it DOES NOT clear the TLS 1.0 box. I am not sure why when the entire hoopla has to do with TLS 1.0 and SSL 3.0 in the first place. All it does is enable TLS 1.1. Perhaps enabling TLS 1.1 takes precedence and therefore TLS 1.0 is not used but I don&#8217;t feel comfortable using any scripts or wizards created by a vendor because there is no way for me to know exactly what the wizard does behind the scenes. Besides, I have been burned in the past by one of Microsoft&#8217;s wizard that installs a security template so I am pretty hesitant when it comes to wizards. I&#8217;d much rather make the change manually so I can reverse the process manually if necessary.</p>
<p>One challenge that you might have to face is whether the Web sites you visit support TLS 1.1 and later or not. Until there is a solution (remember this is only a workaround) I would rather implement the workaround just to be on the safe side and take my chances with Web sites not supporting the newer version of TLS.</p>
<p>As a best practice, always sign out of the Web site and then close your browser to ensure that your SSL/TLS session is properly terminated.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3295/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attention Hackers: You Can Win $200,000 from Microsoft</title>
		<link>http://blog.techgalaxy.net/archives/3210</link>
		<comments>http://blog.techgalaxy.net/archives/3210#comments</comments>
		<pubDate>Fri, 05 Aug 2011 17:19:31 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Security/Firewalls]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3210</guid>
		<description><![CDATA[Microsoft yesterday announced a Blue Hat Prize which is designed to generate new ideas for defensive approaches to support computer security. The goal is to inspire security researchers to develop innovative solutions intended to address serious security threats. Here are the details. The inaugural Microsoft BlueHat Prize contest challenges security researchers to design a novel [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft yesterday announced a <a href="http://www.microsoft.com/security/bluehatprize/">Blue Hat Prize</a> which is designed to generate new ideas for defensive approaches to support  computer security. The goal is to inspire security researchers to develop  innovative solutions intended to address serious security threats.</p>
<p>Here are the details. The inaugural Microsoft BlueHat Prize contest challenges security  researchers to design a novel runtime mitigation technology designed to  prevent the exploitation of memory safety vulnerabilities. The solution that is considered to be the most innovative by the Microsoft BlueHat Prize  board will be presented the grand prize of US $200,000.</p>
<ul>
<li>Entries will be accepted and must be received by email to <a href="mailto:bluehatprize@microsoft.com">bluehatprize@microsoft.com</a> between August 3rd 2011 to midnight Pacific Time on April 1st 2012.</li>
<li>The winning entry will be announced at Black Hat USA 2012.</li>
<li>For full details, see <a href="http://www.microsoft.com/security/bluehatprize/rules.aspx">rules and regulations</a>.</li>
</ul>
<p><strong>First prize:</strong> $200,000 (USD)<br />
<strong>Second prize:</strong> $50,000 (USD)<br />
<strong>Third prize:</strong> MSDN Universal subscription valued at $10,000 (USD)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3210/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTC&#8217;s Proposed &#8220;Do Not Track&#8221; List</title>
		<link>http://blog.techgalaxy.net/archives/2798</link>
		<comments>http://blog.techgalaxy.net/archives/2798#comments</comments>
		<pubDate>Fri, 28 Jan 2011 01:51:40 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Security/Firewalls]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=2798</guid>
		<description><![CDATA[When Federal Trade Commission (FTC) came out with the Do Not Call list idea, everyone loved it. Okay, may be not everyone. I am sure the telemarketers didn&#8217;t like the fact that they can&#8217;t pick up the phone and start calling anyone they want. But I bet they like it when they themselves don&#8217;t receive [...]]]></description>
			<content:encoded><![CDATA[<p>When Federal Trade Commission (FTC) came out with the Do Not Call list idea, everyone loved it. Okay, may be not everyone. I am sure the telemarketers didn&#8217;t like the fact that they can&#8217;t pick up the phone and start calling anyone they want. But I bet they like it when they themselves don&#8217;t receive these uninvited calls. The Do Not Call list is by far one of the most popular successes FTC ever had. Now <a href="http://news.cnet.com/8301-13578_3-20024332-38.html">FTC wants voluntary &#8216;Do Not Track&#8217; for the Web</a>. The details are posted on the FTC site in this 122-page <a href="http://ftc.gov/os/2010/12/101201privacyreport.pdf">PDF file</a>. The document was posted on December 1, 2010 and is essentially a Do Not Call list for online behavioral advertising.</p>
<p>Just three days ago on January 24, 2011, Mozilla and Google announced their browser Do Not Track features. You can read more about their approach <a href="http://mashable.com/2011/01/24/do-not-track-browser-tools/">here</a>. There are pros and cons to the way different companies will implement their features. For example, adding a Do Not Track HTTP header in the browser like Mozilla&#8217;s plan for the Firefox browser seems to have an advantage in the sense that even if the user clears the browser cache, the opt-out setting will remain in place. If the feature is implemented as opt-out cookies or an opt-out registry, the results will be different and the setting may be lost. Once the dust settles we will know exactly how different browsers will end up implementing this feature. Frankly, at this point it&#8217;s too early and as some wise guy/gal once said, the proof is going to be in the pudding.</p>
<p>Microsoft has already announced in the first week of December that it would add a new Tracking Protection feature to Internet Explorer (IE) 9. This feature is expected to show up in IE9&#8242;s release candidate (RC) version sometime in Q1 2011. This is good news because according to some reports Microsoft removed similar features from IE8 because of the pressure from online advertisers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/2798/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Manage Previewers in Outlook 2010</title>
		<link>http://blog.techgalaxy.net/archives/2486</link>
		<comments>http://blog.techgalaxy.net/archives/2486#comments</comments>
		<pubDate>Wed, 01 Sep 2010 17:03:46 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Exchange/Outlook]]></category>
		<category><![CDATA[Security/Firewalls]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=2486</guid>
		<description><![CDATA[If you are unable to preview Word, Excel and PowerPoint files in Outlook 2010, make sure that the previewers are not disabled. The attachment previewers are enabled by default. Here&#8217;s how the previewers work in Outlook 2010. First of all, make sure that the attached file that you are trying to preview in Outlook has [...]]]></description>
			<content:encoded><![CDATA[<p>If you are unable to preview Word, Excel and PowerPoint files in Outlook 2010, make sure that the previewers are not disabled. The attachment previewers are enabled by default. Here&#8217;s how the previewers work in Outlook 2010.</p>
<p>First of all, make sure that the attached file that you are trying to preview in Outlook has the application installed. In other words, if you are trying to preview a Word file in an Outlook message then Microsoft Word must be installed on your computer. For security reasons, you have the option to selectively remove some or all the attachment previewers.</p>
<p>If you want to selectively use only certain attachment previewers in Outlook then follow these steps.</p>
<ol type="1">
<li>Click the <strong>File</strong> tab.</li>
<li>Click <strong>Options</strong></li>
<li>Click <strong>Trust Center</strong>.
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2010/09/trust_center.png"><img class="alignnone size-medium wp-image-2487" title="trust_center" src="http://blog.techgalaxy.net/wp-content/uploads/2010/09/trust_center-300x244.png" alt="" width="300" height="244" /></a></li>
<li>Under <strong>Microsoft Outlook Trust Center</strong>, click <strong>Trust Center Settings</strong>, and then click <strong>Attachment  Handling</strong>.</li>
<li>Do one of the following:
<ul type="disc">
<li>To turn off all attachment previewers, click <strong>Turn off Attachment  Preview</strong>.</li>
<li>To turn off a specific attachment previewer, click <strong>Attachment  and Document Previewers</strong>, clear the check box for a previewer that you want  to turn off, and then click <strong>OK</strong>.</li>
</ul>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2010/09/trust_center2.png"><img class="alignnone size-medium wp-image-2488" title="trust_center2" src="http://blog.techgalaxy.net/wp-content/uploads/2010/09/trust_center2-300x244.png" alt="" width="300" height="244" /></a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/2486/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

