<?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>systemBash &#187; Security</title>
	<atom:link href="http://systembash.com/tags/system-administration/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://systembash.com</link>
	<description>Technology and System Administration</description>
	<lastBuildDate>Sat, 12 May 2012 13:13:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Dirty Little Secret About SSL Certificates</title>
		<link>http://systembash.com/content/the-dirty-little-secret-about-ssl-certificates/</link>
		<comments>http://systembash.com/content/the-dirty-little-secret-about-ssl-certificates/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 13:13:06 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[certificate-authority]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=1009</guid>
		<description><![CDATA[The dirty little secret about SSL certificates is that:

<center><em><strong>Anyone can become a certificate authority.</strong></em></center>

The tools to become a certificate authority, and therefore to publish your own SSL certificates, is included in a wide variety of systems - chances are if you have an Ubuntu or CentOS install you already have the capability of becoming an SSL certificate authority via <a href="http://www.openssl.org/">OpenSSL</a>. ]]></description>
			<content:encoded><![CDATA[<p>The dirty little secret about SSL certificates is that:</p>
<p><center><em><strong>Anyone can become a certificate authority.</strong></em></center></p>
<p>The tools to become a certificate authority, and therefore to publish your own SSL certificates, is included in a wide variety of systems &#8211; chances are if you have an Ubuntu or CentOS install you already have the capability of becoming an SSL certificate authority via <a href="http://www.openssl.org/">OpenSSL</a>.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">openssl genrsa -des3 -out ca.key 4096<br />
openssl req -new -x509 -days 365 -key ca.key -out ca.crt</div></td></tr></tbody></table></div>
<p>The security, and by that I mean <strong>trust</strong>, that SSL certificates provide in major modern browsers is that only certificates that are signed by a limited number of authorities are trusted. <em>Currently there are about 50 trusted certificate authorities in the world.</em> [<a href="http://en.wikipedia.org/wiki/Certificate_authorities">Wikipedia</a>] If the certificate that is presented to your browser is signed by one of those CAs, then your browser trusts that it is a legitimate certificate.</p>
<p>Unfortunately in the real world, no computer system should be assumed safe. I would presume that all of the major CAs &#8211; Thawte, Comodo, DigiNotar and others have their private key under lock stock and barrel, but simply put, no computer system is safe from intrusion. </p>
<h2>The Difference Between Encryption and Trust</h2>
<p>SSL certificates play two roles in a browsing session &#8211; encryption and trust. </p>
<p>When you visit an SSL site on the HTTPS protocol, you are encrypting your session between two places. In a typical situation, the connection between your browser and server is encrypted, therefore any party which is trying to sniff your data in-between the two endpoints can not see your data.</p>
<p>Trust also occurs when you use an SSL certificate. When you visit mail.google.com, you assume that the certificate is only held by Google and therefore the data you are actually receiving is from mail.google.com, not mail.attacker.com. </p>
<h2>The Man-In-The-Middle Attack</h2>
<p>A man in the middle attack occurs when your internet connection has been intercepted and someone is playing an active role of sniffing your data in between the two connections. When traffic is unencrypted, this is trivial in nature. When it is encrypted, for example with an SSL certificate, it becomes much more difficult. If you are not planning on modifying the data and just want to see what is occurring between the two connections, it looks something like this:</p>
<p>MITM Intercepts traffic from legitimate HTTPS server -> MITM decodes the content and then re-encodes with its own SSL certificate -> MITM passes all traffic back and forth using the fake SSL certificate on the client&#8217;s side, while using the real SSL certificate on the server side.</p>
<p>This all relies on the client&#8217;s browser accepting the SSL certificate that the MITM presents. This is why the <a href="http://www.scmagazineus.com/iran-may-be-behind-yet-another-ssl-certificate-spoof/article/210824/">recent DigiNotar false SSL certificate in Iran</a> for *.google.com is so troubling. Once you have a &#8220;legitimate&#8221; SSL certificate then a MITM can decode the data without the client even knowing. This violates both the trust and encryption aspects of SSL certificates.</p>
<h2>What is being done to protect us against MITM attacks like this?</h2>
<p>Google is using its massive number of web crawlers to <a href="http://googleonlinesecurity.blogspot.com/2011/04/improving-ssl-certificate-security.html">take inventory of all SSL certificates it finds</a>. It no doubt includes this in its search rankings as well (because if a web site bothers to get an SSL certificate, it indicates it is probably a higher value site), but it can be used to increase the security of sites as well when integrated into Chrome. <a href="http://eff.org">EFF</a> also runs the <a href="https://www.eff.org/observatory/">SSL Certificate Observatory</a> which has a similar function. The way the *.google.com certificate was discovered was that Chrome gave an error when it noticed the serial number of the certificate did not match what Google had crawled previously. This is all well and good, but it does not work in all browsers and also still allows the site to load, and I doubt a non-technically savvy person would have caught it. </p>
<p><a href="http://www.apacheweek.com/features/crl">Revocation lists</a> help to recall bad certificates, but by the time a certificate is discovered and revoked the damage has already been done. </p>
<p>The problem is that <strong>the whole CA system is flawed</strong>. Putting trust into 50 or so companies really is a disservice for end users. Let&#8217;s say the US government puts pressure on one of the CAs to issue a similar certificate. Not to mention any hacker gaining access to the CA&#8217;s root private certificate. </p>
<p>There are also some at work on a <a href="https://datatracker.ietf.org/wg/dane/charter/">SSL certificate system mixed in with DNSSEC</a> <em>[Ed note: strangely enough, their certificate is currently expired]</em>. The problem again is that the root DNS servers hold a lot of power, and traffic can be spoofed. </p>
<p><a href="http://convergence.io/">Convergence</a> is another tool from <a href="http://twitter.com/moxie__">@moxie__</a> which is currently available as a Firefox plugin. It allows you to specify trust authorities which can then tell you when a certificate is insecure. I wasn&#8217;t able to try it as I&#8217;ve upgraded to Firefox 6.0 and it wasn&#8217;t compatible, but it appears to have promise. My concern is that Joe user doesn&#8217;t have enough sense to run any security plugins that require any type of input. Any final solution to the SSL CA problem will need to be standards-based and not solved as a plugin.</p>
<h2>What Can You Do To Help</h2>
<p>Support the <a href="http://www.ietf.org/">IETF</a> and other research into alternatives to the current SSL Certificate Authority system. <a href="https://www.eff.org/deeplinks/2011/08/iranian-man-middle-attack-against-google">The SSL CA system is broke</a>, and we need a replacement ASAP if we expect to keep our connections encrypted and private. </p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/the-dirty-little-secret-about-ssl-certificates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firesheep Should Be A Call To Arms For System, Network &amp; Web Admins</title>
		<link>http://systembash.com/content/firesheep-should-be-a-call-to-arms-for-system-network-web-admins/</link>
		<comments>http://systembash.com/content/firesheep-should-be-a-call-to-arms-for-system-network-web-admins/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 10:49:41 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=839</guid>
		<description><![CDATA[<a href="http://codebutler.com/firesheep">Firesheep</a> by Eric Butler has just been released to the world. This Firefox plugin does a few things that have already been fairly easy to do for a while, but rolled up in one easy to use package:

<img src="http://systembash.com/wp-content/uploads/2010/10/firesheep-e1288002757922.png" alt="" title="firesheep" width="600" height="362" class="aligncenter size-full wp-image-841" />


<ol><li>Sniffs data on unencrypted Wireless Networks</li>
<li>Looks for unencrypted login cookies sent to known popular insecure sites</li>
<li>Allows you to login to that account with 'One Click'</li>
</ol>

So what sites are impacted by default? Amazon.com, Basecamp, bit.ly, Cisco, CNET, Dropbox, Enom, Evernote, Facebook, Flickr, Github, Google, HackerNews, Harvest, Windows Live, NY Times, Pivotal Tracker, Slicehost, tumblr, Twitter, WordPress, Yahoo, and Yelp are among the few. A plugin system allows anyone to add their own sites (and cookie styles) to the plugin.

Yikes! It goes without saying that this is a major security problem for anyone who uses unencrypted wireless networks. Includes on this list are many universities and companies such as Starbucks. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://codebutler.com/firesheep">Firesheep</a> by Eric Butler has just been released to the world. This Firefox plugin does a few things that have already been fairly easy to do for a while, but rolled up in one easy to use package:</p>
<p><img src="http://systembash.com/wp-content/uploads/2010/10/firesheep-e1288002757922.png" alt="" title="firesheep" width="600" height="362" class="aligncenter size-full wp-image-841" /></p>
<ol>
<li>Sniffs data on unencrypted Wireless Networks</li>
<li>Looks for unencrypted login cookies sent to known popular insecure sites</li>
<li>Allows you to login to that account with &#8216;One Click&#8217;</li>
</ol>
<p>So <strong>what sites are impacted</strong> by default? Amazon.com, Basecamp, bit.ly, Cisco, CNET, Dropbox, Enom, Evernote, Facebook, Flickr, Github, Google, HackerNews, Harvest, Windows Live, NY Times, Pivotal Tracker, Slicehost, tumblr, Twitter, WordPress, Yahoo, and Yelp are among the few. A plugin system allows anyone to add their own sites (and cookie styles) to the plugin.</p>
<p>Yikes! It goes without saying that this is a major security problem for anyone who uses unencrypted wireless networks. Includes on this list are many universities and companies such as Starbucks. </p>
<p>It is a bit funny, because just last night I was talking with my friend <a href="http://geeklad.com/">Jorge Sierra</a> about this very problem. My university in fact is one of those which uses unencrypted wifi. I installed the <a href="https://chrome.google.com/extensions/detail/mjpinemnkjlppmemjfabdaelpfgfjgkj">unencrypted password extension for Chrome</a> to let me know when I am submitted an unencrypted password to a site. I was surprised how often this little box was popping up!</p>
<h2>Why Open WiFi?</h2>
<p>I am not sure &#8211; my <a href="http://www.psu.edu">undergrad university</a> requires that any traffic going over wifi goes through their VPN which encrypts the traffic and prevents this program from working. Is open wifi still the <strong>&#8216;poison of choice&#8217;</strong> for network admins because setting up a VPN-style system is too much for some organizations? Maybe &#8211; but it is clearly the wrong answer. </p>
<p>The other clear reason is that it is easier to use, and this is a valid complaint from a user experience perspective. I&#8217;ve seen plenty of folks have a hard time even with a simple WPA password. A shared password makes it even harder for a user to sign in. Hotels and coffee houses across the world <strong>opt for open wifi because it is simply the easiest for consumers to use</strong>. This is a problem us tech people need to solve. </p>
<p>Even if it is encrypted via WEP or WPA (1) these are very insecure protocols and still can be hacked with relative ease. This plugin could in fact be modified to include the cracking as well and cover an even wider range of wireless networks. This brings me to my second point.</p>
<h2>Web Developers Must Encrypt All Login Forms</h2>
<p>If you run ANY consumer facing app you should be passing any and all login information via an SSL secured website. </p>
<p>For hosts on a static IP address you simply need to purchase an SSL certificate. They are <strong>seriously under $20</strong> these days (my cost as a reseller is $12) and are simple to install. Your code should be set up to always use this site and to never allow username and password to be sent unencrypted over the network. This is important not only at the end user&#8217;s connection (possibly over open wifi) but also for end-to-end encryption of this data.</p>
<p>Let&#8217;s say you are running a site on a shared IP address. You usually still have options. Most hosts I know of offer on SSL connection via the shared site &#8211; eg: https://server.name/~username/. This URL can be used to access your site&#8217;s information via an SSL certificate and it is normally included with the service. </p>
<p>Ideally every site would have an SSL certificate. But we need a few things for that to happen. People who buy web hosting are almost always looking for the cheapest deal. They will not be getting SSL at these bottom level prices. Hosting needs to have a paradigm shift so that people who run websites need to know that it is better to have people who know what they are doing from a security standpoint have configured and are running their servers, and that paying $10 a year for hosting isn&#8217;t sustainable. Some say that there is a significant overhead to running SSL on websites. It will, in fact, add some processing and bandwidth overhead. However <strong>this is necessary to provide security of services to the end users</strong>. </p>
<p>In my opinion, you either host your website on a large provider who use set up to have a secure infrastructure, or you pay more for an expert to host your website in a secure manner. </p>
<p>Another roadblock is the end of the free source of IPv4 address blocks. Web hosts need to move to IPv6 to free up IP addresses, and every website should be on its own IP address. That will allow SSL certificate installations much easier.</p>
<h2>Back to Reality</h2>
<p>What can you do, right now, about this problem? If you have to use an unencrypted wireless network, you should be running some sort of VPN to encrypt your traffic over the air as this is the most likely place it would be sniffed. You can get a cheap VPS at < $10 a month and <a href="http://systembash.com/content/a-poor-mans-vpn-proxy-web-connection-to-remote-server-via-ssh-and-tunnel/">proxy all of your traffic over SSH</a>. Not the fastest method, but it will secure your data. </p>
<p>You can also install the <a href="https://chrome.google.com/extensions/detail/mjpinemnkjlppmemjfabdaelpfgfjgkj">Chrome Extension</a> to warn you if you are about to submit form information via an unencrypted website. It isn&#8217;t the prettiest extension but it does get the job done.</p>
<p>Hopefully network, web and system administrators will get their acts together and push for a solution to this problem. It is a big one and one that isn&#8217;t apparent to the end user until their data, financial details and/or identity is stolen. We can fix this.</p>
<p><small>/via <a href="http://techmeme.com/">TechMeme</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/firesheep-should-be-a-call-to-arms-for-system-network-web-admins/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Adds Two-Factor Authentication To Google Apps (For Real, This Time)</title>
		<link>http://systembash.com/content/google-adds-two-factor-authentication-to-google-apps-for-real-this-time/</link>
		<comments>http://systembash.com/content/google-adds-two-factor-authentication-to-google-apps-for-real-this-time/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 16:21:00 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[authentication]]></category>

		<guid isPermaLink="false">http://systembash.com/content/google-adds-two-factor-authentication-to-google-apps-for-real-this-time/</guid>
		<description><![CDATA[I&#8217;m not trying to say I had anything to do with Google adding two-factor authentication to Google Apps. I&#8217;m really not. But on September 9th, MakeUseOf published an article named How To Secure Your Google Apps Account with Two Factor Authentication. In this article, I wrote: All of this brings up the question: why doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not trying to say I had anything to do with Google adding two-factor authentication to Google Apps. I&#8217;m really not. But on September 9th, <a href="http://www.makeuseof.com">MakeUseOf</a> published an article named <a href="http://www.makeuseof.com/tag/secure-google-apps-account-factor-authentication/">How To Secure Your Google Apps Account with Two Factor Authentication</a>. In this article, I wrote:</p>
<blockquote><p>All of this brings up the question: why doesn&rsquo;t Google enable a direct way to use two factor authentication with their Gmail, Calendar and other services? Many folks such as myself use Google services for all too many things in their lives, and that login is potentially the most important one of their online life. I would suggest that Google gets onto the security boat and enables this as an option for everyday folks.</p></blockquote>
<p>Today, 11 days later, Google released their own <a href="http://googleenterprise.blogspot.com/2010/09/more-secure-cloud-for-millions-of.html">Two-Factor authentication scheme for Google Apps</a> account (Premier, Education and Government). An example of accurate prognostication? Or just dumb luck? Either way, great job Google!</p>
<p>If you are a Google Apps user, your Administrator will need to enable the feature for your account. Standard edition users will have this feature available shortly. Highly recommended for password and data security if you store your data in the Google cloud.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/google-adds-two-factor-authentication-to-google-apps-for-real-this-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Command Line, Generating a Random File</title>
		<link>http://systembash.com/content/linux-command-line-generating-a-random-file/</link>
		<comments>http://systembash.com/content/linux-command-line-generating-a-random-file/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 01:53:41 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=581</guid>
		<description><![CDATA[It is very easy to create a random file using the linux command line. Much like the command to fill a file with all zeros, for example a 1 Meg file: dd if=/dev/zero of=zero.filename bs=1024 count=1000 You do the same using /dev/urandom: dd if=/dev/urandom of=random.filename bs=1024 count=1000 Resulting in a 1MB file: 1000+0 records in [...]]]></description>
			<content:encoded><![CDATA[<p>It is very easy to create a random file using the linux command line. Much like the command to fill a file with all zeros, for example a 1 Meg file:</p>
<pre>dd if=/dev/zero of=zero.filename bs=1024 count=1000</pre>
<p>You do the same using /dev/urandom:</p>
<pre>dd if=/dev/urandom of=random.filename bs=1024 count=1000</pre>
<p>Resulting in a 1MB file:</p>
<pre>1000+0 records in
1000+0 records out
1024000 bytes (1.0 MB) copied, 0.0294247 s, 34.8 MB/s</pre>
<p>This is transferring random data from the virtual device urandom to the output file. We use /dev/urandom instead of /dev/random because the /dev/random source generates random data very slowly. urandom is much faster at this but remains very random, <a href="http://vinitsworld.blogspot.com/2008/10/difference-between-devrandom-and.htmlh">if not quite a random</a> as /dev/random. This should work with any system with <a href="http://linux.die.net/man/1/dd">dd</a> and /dev/urandom.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/linux-command-line-generating-a-random-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Poor Man&#8217;s VPN: Proxy Web Connection to Remote Server (via SSH and Tunnel)</title>
		<link>http://systembash.com/content/a-poor-mans-vpn-proxy-web-connection-to-remote-server-via-ssh-and-tunnel/</link>
		<comments>http://systembash.com/content/a-poor-mans-vpn-proxy-web-connection-to-remote-server-via-ssh-and-tunnel/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 13:12:20 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://systembash.com/content/a-poor-mans-vpn-proxy-web-connection-to-remote-server-via-ssh-and-tunnel/</guid>
		<description><![CDATA[Did you ever have a situation where you needed to access a website that had an IP restriction in place? I recently had a situation where I needed to access the web via my university connection (due to IP restrictions placed on accessing databases of research papers). They do not have a VPN setup so [...]]]></description>
			<content:encoded><![CDATA[<p>Did you ever have a situation where you needed to access a website that had an IP restriction in place? I recently had a situation where I needed to access the web via my university connection (due to IP restrictions placed on accessing databases of research papers). They do not have a VPN setup so it is hard to do this off-campus.</p>
<p>I do however have access to a linux machine on campus. I am familiar with port forwarding using SSH but I had never used it to actually tunnel web traffic using a web browser on Windows. Turns out it is surprisingly easy!</p>
<p>The ssh command to use is:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ssh -C2qTnN -D 8080 username@remote_host</div></td></tr></tbody></table></div>
<p>This command sshes to the remote_host, and creates a tunnel on your localhost, port 8080. Note that you need to have private key authentication already set up for this host &#8211; it will not work with password authentication.</p>
<p>The description of the switches are (from the <a href="http://linux.die.net/man/1/ssh">ssh man page</a>):</p>
<ul>
<li>-C : Compression</li>
<li>-2 : Use SSHv2</li>
<li>-q : quiet!</li>
<li>-T : Disable pseuto-tty allocation</li>
<li>-n : Prevents reading from stdin (you need to have private key authentication set up, to prevent password authentication)</li>
<li>-N : Do not execute a remote command (or launch a shell). Just use the ssh process for port forwarding</li>
<li>-D : Allocate a socket to listen on the local side. When a connection is made to this port it is located to the remote machine. Makes SSH work as a SOCKS server. Only root can forward&nbsp;privileged&nbsp;ports like this.</li>
</ul>
<p>From here, you set up Firefox or your browser of choice to use a Socks proxy on localhost:8080. The man page says that SOCKS4 and SOCK5 should both work but I had to use SOCKS v4, SOCKS v5 did not seem to work for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/a-poor-mans-vpn-proxy-web-connection-to-remote-server-via-ssh-and-tunnel/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Remote Desktop from Windows XP to Windows Server 2008 or Windows Vista</title>
		<link>http://systembash.com/content/remote-desktop-from-windows-xp-to-windows-server-2008-or-windows-vista/</link>
		<comments>http://systembash.com/content/remote-desktop-from-windows-xp-to-windows-server-2008-or-windows-vista/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 14:28:02 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Configurations]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[credssp]]></category>
		<category><![CDATA[network level authentication]]></category>
		<category><![CDATA[nla]]></category>
		<category><![CDATA[remote desktop]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=318</guid>
		<description><![CDATA[The Remote Desktop connection settings for Windows Server 2008, and I believe Windows Vista, includes 3 levels of service: Don&#8217;t allow connections to this computer Allow connections from computers running any version of Remote Desktop (less secure) Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure) At first blush, you [...]]]></description>
			<content:encoded><![CDATA[<p>The Remote Desktop connection settings for Windows Server 2008, and I believe Windows Vista, includes 3 levels of service:</p>
<ul>
<li>Don&#8217;t allow connections to this computer</li>
<li>Allow connections from computers running any version of Remote Desktop (less secure)</li>
<li>Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure)</li>
</ul>
<p style="text-align: center;"><img class="size-full wp-image-319 aligncenter" title="windows_server_2008_remote_desktop_properties" src="http://systembash.com/wp-content/uploads/2009/01/windows_server_2008_remote_desktop_properties.jpg" alt="windows_server_2008_remote_desktop_properties" width="414" height="465" /></p>
<p>At first blush, you would probably choose the &#8220;more secure&#8221; option. Practically, this mainly means that it only allows connections from the latest Remote Desktop software in Windows Vista. It is probably another attempt by Microsoft to force consumers and businesses into upgrading to Windows Vista. But&#8230; I digress.</p>
<p>When connecting with an older Terminal Services (TS) client in XP or even Vista, you will get this message:</p>
<p>&#8220;Remote computer requires Network Level Authentication, which your computer doesn&#8217;t support&#8221;</p>
<p><img class="aligncenter size-full wp-image-320" title="the-remote-computer-requires-network-level-authentication11" src="http://systembash.com/wp-content/uploads/2009/01/the-remote-computer-requires-network-level-authentication11.png" alt="the-remote-computer-requires-network-level-authentication11" width="477" height="78" /></p>
<p>Not all is lost. There are two ways around this. The first and most obvious solution is to <strong>select the less secure option</strong> and disabled Network Level Authentication (NLA). If you are in an environment that does not allow this change, or there are some other circumstances where you need to keep Network Level Authentication enabled, you <strong>can get a Remote Desktop connection from Windows XP</strong>.</p>
<p>The first step is to download the latest Remote Desktop Client for Windows XP. As of the writing of this article, the latest version is 6.1.</p>
<p>For XP SP3: <a href="http://support.microsoft.com/kb/951616">here</a></p>
<p>For XP SP2: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e1ec93d-bdbd-4983-92f7-479e088570ad&amp;displaylang=en">here</a></p>
<p>That is not it. For XP, you need to enable CredSSP &#8211; Credential Security Service Provider.</p>
<blockquote><p>CredSSP is a new Security Service Provider (SSP) that is available in Windows XP SP3 by using the Security Service Provider Interface (SSPI). CredSSP enables a program to use client-side SSP to delegate user credentials from the client computer to the target server.</p></blockquote>
<p>Directions on how do do this are available at Microsoft here:</p>
<p><a href="http://support.microsoft.com/kb/951608/">http://support.microsoft.com/kb/951608/</a></p>
<p>The quick and dirty summary:</p>
<ol>
<li>Click <strong class="uiterm">Start</strong>, click <strong class="uiterm">Run</strong>, type <span class="userInput">regedit</span>, and then press ENTER.</li>
<li>In the navigation pane, locate and then click the following registry subkey:
<div class="indent">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa</div>
</li>
<li>In the details pane, right-click <strong class="uiterm">Security Packages</strong>, and then click <strong class="uiterm">Modify</strong>.</li>
<li>In the <strong class="uiterm">Value data</strong> box, type <span class="userInput">tspkg</span>. Leave any data that is specific to other SSPs, and then click <strong class="uiterm">OK</strong>.</li>
<li>In the navigation pane, locate and then click the following registry subkey:
<div class="indent">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders</div>
</li>
<li>In the details pane, right-click SecurityProviders, and then click <strong class="uiterm">Modify</strong>.</li>
<li>In the <strong class="uiterm">Value data</strong> box, type <span class="userInput">credssp.dll</span>. Leave any data that is specific to other SSPs, and then click <strong class="uiterm">OK</strong>.</li>
<li>Exit Registry Editor.</li>
<li>Restart the computer.</li>
</ol>
<p>For more information on CredSSP including how to deploy this setting using Group Policy, see the <a href="http://support.microsoft.com/kb/951608/">CredSSP page here.</a></p>
<p>Let me know if you have any other tips or a simpler way to connect to the more secure version of Remote Desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/remote-desktop-from-windows-xp-to-windows-server-2008-or-windows-vista/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>4 Steps to Authenticate Ubuntu Logins with Active Directory</title>
		<link>http://systembash.com/content/4-steps-to-authenticate-ubuntu-logins-with-active-directory/</link>
		<comments>http://systembash.com/content/4-steps-to-authenticate-ubuntu-logins-with-active-directory/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 15:45:02 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[likewise]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[lwidentity]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=265</guid>
		<description><![CDATA[It is possible to install Active Directory authentication in Ubuntu 8.04 and later. The Likewise Open packages accomplish this task, and it is actually pretty easy. Just a note &#8211; when installing Ubuntu, do not add a user named &#8220;administrator&#8221; as I did. This makes it impossible to join the Ubuntu workstation to the domain [...]]]></description>
			<content:encoded><![CDATA[<p>It is possible to install Active Directory authentication in Ubuntu 8.04 and later. The <a href="http://www.likewisesoftware.com/products/likewise_open/">Likewise Open</a> packages accomplish this task, and it is actually pretty easy.</p>
<p>Just a note &#8211; when installing Ubuntu, do not add a user named &#8220;administrator&#8221; as I did. This makes it impossible to join the Ubuntu workstation to the domain using the &#8220;administrator&#8221; active directory user &#8211; but you can use a different Domain Administrator username and password.</p>
<p><strong>The steps to follow:</strong></p>
<ol>
<li>sudo apt-get install likewise-open</li>
<li>sudo domainjoin-cli join fdqn.yourdomainserver Administrator</li>
<li>sudo update-rc.d likewise-open defaults</li>
<li>sudo /etc/init.d/likewise-open start</li>
</ol>
<p>As a side note &#8211; you should also consider adding the following code to make it so that users do not have to login with DOMAIN\username on the ubuntu login screen. You can do this by changing <strong>/etc/samba/lwiauthd.conf</strong> and adding this line:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">winbind use default domain = yes</div></td></tr></tbody></table></div>
<p>Also, another helpful tidbit of information is getting your Ubuntu machine to resolve netbios domain names. You can do this by adding missing entries to the following lines in <strong>/etc/nsswitch.conf</strong>:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">passwd: compat winbind lwidentity<br />
group: compat winbind lwidentity<br />
shadow: compat winbind<br />
hosts: files dns winbind</div></td></tr></tbody></table></div>
<p>If you receive an &#8220;ERROR&#8221; message when you try to login to Ubuntu, it could be because the likewise-open service isn&#8217;t running. Running &#8220;update-rc.d likewise-open defaults&#8221; should start it but troubleshoot this script to make sure it is indeed running on boot.</p>
<p>For More Information:<br />
<a href="https://help.ubuntu.com/community/LikewiseOpen">Official Likewise-open page on Ubuntu</a></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/4-steps-to-authenticate-ubuntu-logins-with-active-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Secure Drupal Admin Login Page</title>
		<link>http://systembash.com/content/secure-drupal-admin-login-page/</link>
		<comments>http://systembash.com/content/secure-drupal-admin-login-page/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 17:32:49 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Configurations]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[secure]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=217</guid>
		<description><![CDATA[Drupal&#8217;s administration login area is not secure by default. Usually there is an option in the configuration area of content management systems to set a secure area for logins, otherwise your username and password are sent in plain text over the internet. Luckily, there is a module which enforces secure login on a Drupal install. [...]]]></description>
			<content:encoded><![CDATA[<p>Drupal&#8217;s administration login area is not secure by default. Usually there is an option in the configuration area of content management systems to set a secure area for logins, otherwise your username and password are sent in plain text over the internet.</p>
<p>Luckily, there is a module which enforces secure login on a Drupal install.</p>
<p><a href="http://drupal.org/project/securepages">Drupal Module: Securepages</a></p>
<p>Although it is still in development, the 6.x-1.x-dev version worked great with my Drupal 6.4 installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/secure-drupal-admin-login-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sony BDP-S301/BDP-S300 Blu-Ray Player Review</title>
		<link>http://systembash.com/content/sony-bdp-s301bdp-s300-blu-ray-player-review/</link>
		<comments>http://systembash.com/content/sony-bdp-s301bdp-s300-blu-ray-player-review/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 01:48:33 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Television]]></category>
		<category><![CDATA[bdp-s300]]></category>
		<category><![CDATA[bdp-s301]]></category>
		<category><![CDATA[blu-ray]]></category>
		<category><![CDATA[bluray]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[sony]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=210</guid>
		<description><![CDATA[We received this Blu-ray player along with a few Blu-Ray DVDs for an anniversary present. The BDP-S301 is the same as the BDP-S300 except it is only sold at wholesale outlets like Costco and Sam&#8217;s Club. The S301 also includes an HDMI cable. The Pros: The image looks great. Hands down it is a clean, [...]]]></description>
			<content:encoded><![CDATA[<p>We received this Blu-ray player along with a few Blu-Ray DVDs for an <img class="size-full wp-image-212 alignright" title="Sony BDP-S301 Bluray Player" src="http://systembash.com/wp-content/uploads/2008/08/31osmj4nsxl.jpg" alt="" width="142" height="99" />anniversary present. The BDP-S301 is the same as the BDP-S300 except it is only sold at wholesale outlets like Costco and Sam&#8217;s Club. The S301 also includes an HDMI cable.</p>
<p><strong>The Pros:</strong> The image looks great. Hands down it is a clean, crisp image, and with the latest firmware updates (<a href="http://esupport.sony.com/US/perl/swu-list.pl?mdl=BDPS301">click here</a>) supports most audio configurations.</p>
<p><strong>The Cons:</strong> This thing is the slowest media player I have ever laid my hands on.</p>
<p>The instructions warn that the initial setup could take 90 seconds to start and after that, start up would be quicker. I suppose they didn&#8217;t lie &#8211; start up on an everyday basis takes around <em>40 seconds or more</em>! After that, you can finally eject the tray to insert your movie, or make your way to the menu.</p>
<p>Forty seconds, when you have an impatient toddler wanting to watch <a href="http://www.imdb.com/title/tt0266543/"><em>Finding Nemo</em></a> for the 50th time, is similar to taking a short detour through Dante&#8217;s 3rd circle of hell.</p>
<p>In addition to that, woe to the consumer who might get a relatively new, $30 Blu-ray movie to play in it. We put in <a href="http://www.imdb.com/title/tt0480242/"><em>Dan In Real Life</em></a> (Ok movie, but slow paced) &#8211; it proceeds to play the previews, fine. Then it seemingly locks up for a few minutes on a screen with a progress bar that says &#8220;loading&#8221;. We power down, start the process again. Briefly before the &#8220;loading&#8221; screen pops up again, it mentions that on older players it could take several minutes to load the menu. Seriously, 3 to 4 minutes later, the menu loads up.</p>
<p>Again, we received <a href="http://www.imdb.com/title/tt0443649/"><em>10,000BC</em></a> (don&#8217;t waste your time) in the mail from <a href="http://www.blockbuster.com/">Blockbuster</a>. Started to play it and we wanted to stop and start it over. I pressed the stop button, and I guess I overloaded the system as it was totally frozen. I had to press the power button for 10 seconds and start the whole process over.</p>
<p>Are you kidding me? This is the worst consumer experience I&#8217;ve had in a long time. Maybe I am just an impatient American, but spending 5 minutes waiting for a movie to load up, after having spent that much money on top of the line technology, is a disgrace. Sony should be ashamed that they let this product go to market.</p>
<p>What is it doing during this loading time? Is the Java OS loading all of its unnecessary libraries? Who allowed this to pass by QA?</p>
<p>So my recommendation to anyone looking to buy one of these systems is keep looking! There are more and more choices out there. The PS3 is only $50-$100 more and it loads movies much faster and has many more advanced media features (like streaming audio and video right to the PS3 from other media servers), not to mention all the games you can play on it.</p>
<p>Sony used to be top notch in my opinion when it came to hardware of any kind. However after this incident, I will really have to think twice before getting another Sony product!</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/sony-bdp-s301bdp-s300-blu-ray-player-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Post on Makeuseof: Keeping Safe on the Web: 8 Firefox Addons for Privacy and Security</title>
		<link>http://systembash.com/content/makeuseof-post-firefox-extensions-keeping-safe-on-the-web-privacy-securit/</link>
		<comments>http://systembash.com/content/makeuseof-post-firefox-extensions-keeping-safe-on-the-web-privacy-securit/#comments</comments>
		<pubDate>Thu, 01 May 2008 00:30:46 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Programs]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=163</guid>
		<description><![CDATA[I have a new post up on Makeuseof, regarding Firefox Addons for Privacy and Security. Maybe you won&#8217;t use all of them but even installing some of them (NoScript in particular) can really lower your chances of getting hit with a javascript exploit.]]></description>
			<content:encoded><![CDATA[<p>I have a new post up on <a href="http://www.makeuseof.com">Makeuseof</a>, regarding <a href="http://www.makeuseof.com/tag/keeping-safe-on-the-web-8-firefox-addons-for-privacy-and-security/">Firefox Addons for Privacy and Security</a>. Maybe you won&#8217;t use all of them but even installing some of them (<a href="https://addons.mozilla.org/en-US/firefox/addon/722">NoScript</a> in particular) can really lower your chances of getting hit with a javascript exploit.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/makeuseof-post-firefox-extensions-keeping-safe-on-the-web-privacy-securit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 8/22 queries in 0.006 seconds using disk: basic

Served from: systembash.com @ 2012-05-23 23:45:59 -->
