<?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>MindHack</title>
	<atom:link href="http://www.mindhack.us/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.mindhack.us</link>
	<description>“Efficiency is intelligent laziness.”</description>
	<lastBuildDate>Sat, 01 May 2010 18:09:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Test Lab Setup with VirtualBox Tutorial</title>
		<link>http://www.mindhack.us/?p=245</link>
		<comments>http://www.mindhack.us/?p=245#comments</comments>
		<pubDate>Thu, 29 Apr 2010 15:18:47 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=245</guid>
		<description><![CDATA[So yesterday I decided to setup a test lab to play with Windows 2008 Server. Microsoft has announced the retirement of mainstream 2003 support , which is happening this July. I was able to download a licensed ISO of the 64-bit Windows 2008 Server from MSDN Academic Alliance, which includedStandard, Enterprise, and Datacenter editions (and 3 [...]]]></description>
			<content:encoded><![CDATA[<p>So yesterday I decided to setup a test lab to play with Windows 2008 Server. Microsoft has announced the <a href="http://support.microsoft.com/lifecycle/?LN=en-us&amp;x=16&amp;y=4&amp;p1=3198" target="_self">retirement of mainstream 2003 support </a>, <a href="http://www.virtualbox.org" target="_blank"><img class="alignleft" title="Sun VirtualBox" src="http://www.mindhack.us/wp-content/uploads/2010/04/virtualbox-300x300.png" alt="" width="150" height="150" /></a>which is happening this July. I was able to download a licensed ISO of the 64-bit Windows 2008 Server from MSDN Academic Alliance, which includedStandard, Enterprise, and Datacenter editions (and 3 other install options that were just &#8220;server core&#8221; &#8212; I don&#8217;t know the differences).</p>
<p>My host machine is Ubuntu Linux 9.10, AMD quad-core, 3.5G of DDDR3 ram. I have two 160GB SATA disks in a non-RAID configuration. I know it&#8217;s far from ideal but I try to split VM&#8217;s between these drives to help I/O performance. I am using <a href="http://www.virtualbox.org/wiki/Downloads" target="_self">Virtualbox 3.1.6</a>, non OSE. I&#8217;ve been using the command line tools to manage my VM&#8217;s lately. It can seem daunting at first (it was for me) but you will soon become accustomed to the syntax. <span id="more-245"></span></p>
<p>I began by creating a virtual disk for my first 2008 vm and then creating the actual vm:</p>
<pre><code>
VBoxManage -q createhd --filename win2k8.vdi --size 20000 --format VDI --variant standard
VBoxManage -q createvm --name win2k8-test1 --ostype Windows2008_64 --register</code></pre>
<p>Don&#8217;t forget the &#8211;register, that option registers the vm in VirtualBox&#8217;s XML config, otherwise you have to do that separately with the registervm command. Next we take care of the basic settings &#8211; RAM, remote access via RDP, disk controllers, etc. You can also change available VCPU&#8217;s here if you&#8217;d like (default is one):</p>
<pre><code>
VBoxManage -q modifyvm win2k8-test1 --memory 1024 --vrdp on --vrdpport 3392
VBoxManage -q storagectl win2k8-test1 --add  sata --name "Sata Controller"
VBoxManage -q storagectl win2k8-test1 --add ide --name "Ide Controller"
VBoxManage -q storageattach win2k8-test1 --storagectl "Sata Controller" --port 0 --device 0 --type hdd --medium /storage/bangel/vbox-disks/win2k8.vdi
VBoxManage -q storageattach win2k8-test1 --storagectl "Ide Controller" --port 0 --device 0 --type dvddrive --medium /storage/bangel/isos/en_windows_server_2008_datacenter_enterprise_standard_x64_dvd_X14-26714.iso</code></pre>
<p>Notice, I had to add an IDE Controller for the virtual DVD drive because VirtualBox does not support DVD drives on SATA interfaces. After the SATA/IDE controllers were setup, I attached my VDI file to SATA, and the Server 2008 ISO to the IDE Controller.</p>
<p>A side note: I didn&#8217;t do this until much, much later, but it was probably the most useful thing I did all day:</p>
<pre><code>alias vboxmanage='VBoxManage -q'
</code></pre>
<p>You realize how much of a pain it is typing CaMeLCaSe commands w/ tab-completion when you have to do it dozens of times in a row. The -q option suppresses the Sun copyright notice.</p>
<p>And we&#8217;re ready to to install our new server into the vm. If you&#8217;re running VirtualBoxon your local machine (with keyboard, mouse, display) you can start it up via the VirtualBox GUI or with the &#8220;VBoxManage startvm&#8221; command. On my setup, I generally start a GNU screen session and do:</p>
<pre><code>VBoxHeadless -s win2k8-test1
</code></pre>
<p>This will allow me to connect to the vm via RDP client from anywhere on my LAN. Remember above we configured port 3392 for RDP. Proceed through the installation process and it&#8217;s multiple reboots. Don&#8217;t forget to install the Guest Additions! The display resolution and mouse input were screwy until I did. It&#8217;s as simple as:</p>
<pre><code>VBoxManage -q storageattach win2k8-test1 --storagectl "Ide Controller" --p0rt 0 --device 0 --type dvddrive --medium /home/bangel/Documents/VBoxGuestAdditions-7-OldX.iso
</code></pre>
<p>Reboot, then start the install of about 80 Microsoft patches, which will require many hours and multiple reboots of the vm. Once you&#8217;re all patched up, you&#8217;ll have to do the whole process again for your second 2008 server, but not really. This is where the magic of virtualization really shines:</p>
<pre><code>VBoxManage clonehd /storage/bangel/vbox-disks/win2k8.vdi win2k8-test2.vdi --format VDI --remember
</code></pre>
<p>Bam! You just made a new virtual disk and it&#8217;s registered in the VirtualBox MediaManager with the &#8211;remember option. Using the &#8220;clonehd&#8221; function also updates the disk&#8217;s UUID so it won&#8217;t conflict with your source VDI. I also made a manual copy using &#8216;cp&#8217; so I could easily deploy more Windows 2008 Server vm&#8217;s based on this disk image. Run through these now-familiar commands:</p>
<pre><code>VBoxManage -q createvm --name win2k8-test2 --ostype Windows2008_64 --register
VBoxManage -q modifyvm win2k8-test2 --memory 768 --vrdp on --vrdpport 3393
VBoxManage -q storagectl win2k8-test2 --add sata --name "Sata Controller"
VBoxManage -q storageattach win2k8-test2 --storagectl "Sata Controller" --port  0 --device 0 --type hdd --medium /home/bangel/.VirtualBox/HardDisks/win2k8-test2.vdi
</code></pre>
<p>And your second Windows 2008 server is ready to boot, completely patched and up to date with Guest Additions installed. Notice I set the RDP port to 3393. In my next post I will be discussing the VirtualBox network setup for these two vm&#8217;s and the addition of a new vm: a linux-based router distro called <a href="http://www.vyatta.com" target="_self">Vyatta</a>.</p>
<div id="attachment_262" class="wp-caption alignleft" style="width: 310px"><a href="http://www.mindhack.us/wp-content/uploads/2010/04/rdp-screenshot.jpg"><img class="size-medium wp-image-262 " title="Screenshot of both Windows 2008 Server VM's" src="http://www.mindhack.us/wp-content/uploads/2010/04/rdp-screenshot-300x161.jpg" alt="Screenshot of both Windows 2008 Server VM's" width="300" height="161" /></a><p class="wp-caption-text">Side-by-side shot of the two Win2k8 VM&#39;s via RDP Client</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=245</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Life, Live on Google</title>
		<link>http://www.mindhack.us/?p=242</link>
		<comments>http://www.mindhack.us/?p=242#comments</comments>
		<pubDate>Tue, 18 Aug 2009 20:32:44 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Anonymity]]></category>
		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=242</guid>
		<description><![CDATA[Good article in the LA Times business section today &#8211; Online, your life is searchable. It&#8217;s good to see this issue getting a larger exposure. From the article:
Online information about consumers comes from several sources. Public records such as campaign contributions, property sales and court cases are increasingly posted on the Internet. At the same [...]]]></description>
			<content:encoded><![CDATA[<p>Good article in the LA Times business section today &#8211; <a title="LA Times - Online, your life is searchable" href="http://www.latimes.com/business/la-fi-cover-privacy16-2009aug16,0,5663794.story">Online, your life is searchable</a>. It&#8217;s good to see this issue getting a larger exposure. From the article:</p>
<p style="padding-left: 30px;">Online information about consumers comes from several sources. Public records such as campaign contributions, property sales and court cases are increasingly posted on the Internet. At the same time, marketers are collecting information about consumers&#8217; Web browsing and buying habits. And then there are the thousands of online communities such as Facebook and Twitter, where users supply the personal information themselves.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=242</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Privacy needs pro-active security</title>
		<link>http://www.mindhack.us/?p=237</link>
		<comments>http://www.mindhack.us/?p=237#comments</comments>
		<pubDate>Tue, 23 Jun 2009 19:24:44 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Anonymity]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=237</guid>
		<description><![CDATA[There is a great (if not really long) article by Simson Garfinkel over at the Technology Review discussing our privacy and the need to be vigilant and proactive. Privacy by inaction doesn&#8217;t cut it in our digital age. Keeping your head low won&#8217;t keep your name or picture out of the massive government and private-sector [...]]]></description>
			<content:encoded><![CDATA[<p>There is a great (if not really long) article by Simson Garfinkel over at the Technology Review discussing our privacy and the need to be vigilant and proactive. Privacy by inaction doesn&#8217;t cut it in our digital age. Keeping your head low won&#8217;t keep your name or picture out of the massive government and private-sector databases. We need to be more vocal and more active in protecting ourserlves and our data.</p>
<p>Garfinkel concludes that what is necessary is an &#8220;online passport&#8221;: A global, ubiquitous electronic-identification system, backed by business and government alike. Currently there are a myriad of systems to verify our online personas: your banks each have one, every e-mail account you use is different, any company you do business with online and your facebook and myspace. Now each of these systems is designed and implemented in different ways by different people and contain their own strengths and weaknesses. While I see the benefits of a single, well-designed and strong authentication system, I also see it&#8217;s drawbacks. It creates a single point of failure. Sure we can pass laws protecting it and standards for auditing it. But what happens when an attacker gets a hold of your credential? Instead of just having access to one account, he has access to all of them. Because now every government office and online retailer trusts that single system, and nothing is ever 100% secure.</p>
<p>Anyway, it&#8217;s a good read and contains a good discussion of the legal history of privacy and how it&#8217;s evolving and will continue to evolve. Discussion is what we need; a solution to the privacy problem will not be a quick and easy fix. Read the full thing <a title="Privacy requires security. Not Abistinence" href="http://www.technologyreview.com/computing/22831/">here</a>.</p>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>Anonymity</strong></li>
<li><a href="http://blogs.journalism.co.uk/editors/2009/06/17/right-of-a-bloggers-anonymity-a-selection-of-views/">Right of a blogger&#8217;s <strong>anonymity</strong>: a selection of views | Journalism <strong>&#8230;</strong></a></li>
<li><a href="http://thegentlepath.wordpress.com/2009/06/21/local-sa-meeting-busted-anonymity-destroyed/">Local SA meeting busted, <strong>anonymity</strong> destroyed. « Trudging the <strong>&#8230;</strong></a></li>
<li><a href="http://www.chickyog.net/2009/06/16/nightjack-the-cloak-of-anonymity-and-the-mankini-of-hypocrisy/">Nightjack: the cloak of <strong>anonymity</strong> and the mankini of hypocrisy <strong>&#8230;</strong></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>Privacy</strong></li>
<li><a href="http://www.privacylives.com/events-of-interest-fordham-university-privacy-rights-and-wrongs-april-21/2009/04/20/"><strong>Privacy</strong> Lives » Blog Archive » Events of Interest: Fordham <strong>&#8230;</strong></a></li>
<li><a href="http://www.lawrencepingree.com/index.php/2009/04/19/google-and-personal-privacy-is-it-really-that-bad-you-decide/">Google and Personal <strong>Privacy</strong> – Is it really that bad? You Decide <strong>&#8230;</strong></a></li>
<li><a href="http://blueherald.com/2009/04/goodbye-privacy/">Blue Herald » Blog Archive » Goodbye <strong>Privacy</strong></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>Security</strong></li>
<li><a href="http://www.blogherald.com/2009/04/09/security-and-hacking-reporting-cyber-crime/"><strong>Security</strong> and Hacking: Reporting Cyber Crime | The Blog Herald</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The insecurity of &#8217;secret question&#8217; authentication</title>
		<link>http://www.mindhack.us/?p=217</link>
		<comments>http://www.mindhack.us/?p=217#comments</comments>
		<pubDate>Tue, 26 May 2009 23:50:52 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[passwords]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=217</guid>
		<description><![CDATA[A while ago my colleague blogged about the importance of secret questions in keeping your online accounts safe. We came to the conclusion that security questions, in many implementations, can actually decrease your overall level of security. Security questions are a secondary means of authentication used when the primary method fails. So when you forget [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago my colleague blogged about the <a href="http://www.mindhack.us/?p=51" target="_self">importance of secret questions</a> in keeping your online accounts safe. We came to the conclusion that security questions, in many implementations, can actually decrease your overall level of security. Security questions are a secondary means of authentication used when the primary method fails. So when you forget your webmail password, you&#8217;ll be asked a pre-arranged secret question that you must answer to reset your password and regain access to your account. During the presidential election last year, VP candidate <a href="http://www.wired.com/threatlevel/2008/09/palin-e-mail-ha/" target="_self">Sarah Palin&#8217;s Yahoo email was hacked</a>, because of weak secret questions and a little googling. A paper was published recently with some hard data, it can be downloaded <a href="http://research.microsoft.com/apps/pubs/default.aspx?id=79594" target="_blank">here</a>, and makes for an interesting read.</p>
<p>From the abstract:</p>
<blockquote><p>All four of the most popular webmail providers &#8212; AOL, Google, Microsoft, and Yahoo! &#8212; rely on personal questions as the secondary authentication secrets used to reset account passwords. The security of these questions has received limited formal scrutiny, almost all of which predates webmail. We ran a user study to measure the reliability and security of the questions used by all four webmail providers. We asked participants to answer these questions and then asked their acquaintances to guess their answers. Acquaintance with whom participants reported being unwilling to share their webmail passwords were able to guess 17% of their answers. Participants forgot 20% of their own answers within six months. What&#8217;s more, 13% of answers could be guessed within five attempts by guessing the most popular answers of other participants, though this weakness is partially attributable to the geographic homogeneity of our participant pool.</p></blockquote>
<p><span id="more-217"></span><br />
The testing methodology seems sound and the paper contains a lot of interesting statistics on the most commonly used secret questions and how and by whom they can be compromised. For example, if a site allows the user to submit their own question/answer pair, the paper conlcuded that 24% of these are vulnerable to guessing with no other knowledge except geographic location, another 23% are vulnerable to guessing by coworkers, clients or family members. Another paper on this topic is available <a href="http://www.cs.berkeley.edu/~asrabkin/soups/bankauth.pdf" target="_self">here</a>. It focuses on financial instutions and the impact of the social networking phenomenom. They concluded that 33% of banking institutions&#8217; security questions were &#8220;guessable&#8221; and that 12% of their question sample was &#8220;automatically attackable&#8221; via data commonly contained on facebook/myspace/etc. profiles.<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>passwords</b></li>
<li><a href="http://beginlinux.wordpress.com/2009/05/28/creating-secure-passwords-you-can-pronounce/">Creating Secure <b>Passwords</b> You Can Pronounce « Begin Linux Blog</a></li>
<li><a href="http://presalecentral.net/free-presale-passwords-friday-may-29/">Free Presale <b>Passwords</b> &#8211; Friday, May 29 |</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Security</b></li>
<li><a href="http://www.blogherald.com/2009/04/09/security-and-hacking-reporting-cyber-crime/"><b>Security</b> and Hacking: Reporting Cyber Crime | The Blog Herald</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux Swap Partition Encryption</title>
		<link>http://www.mindhack.us/?p=192</link>
		<comments>http://www.mindhack.us/?p=192#comments</comments>
		<pubDate>Wed, 06 May 2009 19:58:54 +0000</pubDate>
		<dc:creator>Justin Case</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[AES]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[SWAP]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=192</guid>
		<description><![CDATA[An often overlooked aspect to security is the swap partition. A swap partition is a partition used to temporarily store data when ram is low. Any thing that might be stored in ram could be placed in your swap partition, such as passwords and encryption keys. These passwords and keys could be retrieved by a [...]]]></description>
			<content:encoded><![CDATA[<p>An often overlooked aspect to security is the swap partition. A swap partition is a partition used to temporarily store data when ram is low. Any thing that might be stored in ram could be placed in your swap partition, such as passwords and encryption keys. These passwords and keys could be retrieved by a malicious person, and used to access your online banking accounts, e-mail accounts or encrypted files.</p>
<p>Today we are going to walk you through simple AES encryption of your Linux swap partition. All data stored in your SWAP file will be seamlessly encrypted with a different random key, every time you boot. This will render any examination by a malicious person worthless.<br />
<span id="more-192"></span><br />
I will be doing this using Ubuntu 9.04, but this should work will any newer Linux distribution with little or no modification. You will be able to do this with a fresh install, or a previous install.</p>
<p>In our install /dev/sda2 is our swap partition, if yours is different you will need to substitute it.</p>
<p>and here is how we do it&#8230;</p>
<p>Boot the system, and shut down any non-critical programs.</p>
<p>Become root:<br />
<code>sudo -s</code></p>
<p>Install cryptsetup (This would already be installed if you followed our /home encryption tutorial found <a href="http://www.mindhack.us/?p=168">here</a>.):<br />
<code>apt-get install cryptsetup</code></p>
<p>Turn the current swap partition off:<br />
<code><br />
swapoff -v /dev/sda2<br />
</code></p>
<p>Open /etc/crypttab in nano:<br />
<code>nano /etc/crypttab</code></p>
<p>Add this line to /etc/crypttab:<br />
<code>cswap /dev/sda2 /dev/urandom swap,cipher=aes-cbc-essiv:sha256</code></p>
<p>Open /etc/fstab in nano:<br />
<code>nano /etc/fstab</code></p>
<p>Find the line for the swap file and comment it out by putting a # sign in front of it. It should look like this when your done:<br />
<code>#UUID=879b3256-03e3-3be2-765a-0329a2aa162e none            swap    sw              0       0<br />
</code></p>
<p>Add this line to /etc/fstab:<br />
<code>/dev/mapper/cswap none swap sw 0 0</code></p>
<p>At this point, if you have any other partitions encrypted, reboot and you should be done. However you could try the following&#8230;</p>
<p>Create the device /dev/mapper:<br />
<code>/etc/init.d/cryptdisks start</code></p>
<p>Turn the swap partition back on:<br />
<code>swapon -a</code></p>
<p>You can see your current swap partitions by doing:<br />
<code>cat /proc/swaps</code></p>
<p>Your swap partition should be fully encrypted now.</p>
<p>Please watch for our upcoming series on WI-FI security.</p>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>AES</b></li>
<li><a href="http://www.nixtutor.com/linux/off-site-encrypted-backups-using-rsync-and-aes/">Off Site Encrypted Backups using Rsync and <b>AES</b></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Encryption</b></li>
<li><a href="http://script-o-matic.net/?p=73">Script-o-matic » Old <b>Encryption</b> Traces</a></li>
<li><a href="http://www.spottedhere.com/dallas/club/aura+lounge">Aura</a>
</li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>ubuntu</b></li>
<li><a href="http://ak33m.com/?p=62">Developer&#39;s Kanundrum » Blog Archive » Upgrading <b>Ubuntu</b> Feisty <b>&#8230;</b></a></li>
<li><a href="http://bderzhavets.wordpress.com/2009/05/02/debootstrap-ubuntu-jaunty-pv-domu-at-xen-331-f10-dom0-kernel-2630-rc3-tip/">Debootstrap <b>Ubuntu</b> Jaunty PV DomU at Xen 3.3.1 F10 Dom0 ( kernel <b>&#8230;</b></a></li>
<li><a href="http://doctormo.wordpress.com/2009/05/01/ubuntu-anime-convention-with-ubunchu/"><b>Ubuntu</b>: Anime Convention with Ubunchu « DoctorMO&#39;s Blag</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Netbook Remix / Desktop Home Encryption</title>
		<link>http://www.mindhack.us/?p=168</link>
		<comments>http://www.mindhack.us/?p=168#comments</comments>
		<pubDate>Sun, 03 May 2009 03:18:25 +0000</pubDate>
		<dc:creator>Justin Case</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[AA1]]></category>
		<category><![CDATA[Acer Apire One]]></category>
		<category><![CDATA[Acer Aspire]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=168</guid>
		<description><![CDATA[So last week I got my new Acer Aspire One, awesome little netbook here. First things first, I had to remove Windows XP Home and put Ubuntu 9.04 on it. Everything runs pretty good, the webcam works, and the microphone works properly after setting the sound capture to &#8216;HDA Intel ALC268 Analog (ALSA)&#8217;.
Being so small [...]]]></description>
			<content:encoded><![CDATA[<p>So last week I got my new Acer Aspire One, awesome little netbook here. First things first, I had to remove Windows XP Home and put Ubuntu 9.04 on it. Everything runs pretty good, the webcam works, and the microphone works properly after setting the sound capture to &#8216;HDA Intel ALC268 Analog (ALSA)&#8217;.</p>
<p>Being so small I wanted to encrypt the hard drive with luks, in case it was stolen or lost. Initially I used the alternative install ISO to do this. The install was complicated due to the installer complaining about the lack of a CD drive, and the performance hit was just too big. So, I decided use the Netbook Remix and do just /home encryption, as that is where most settings and personal files should be stored.<br />
<span id="more-168"></span><br />
The regular desktop ISO and the netbook IMG do not offer encryption during installation, so here is how I accomplished it.</p>
<p>Download the Desktop ISO or Netbook Remix IMG.<br />
Write the ISO or IMG to your media (in my case I used a usb thumb drive).</p>
<p>Boot into the LiveCD from your USB stick (or CD if you have a CD drive).</p>
<p>Start the installation, and choose to manually partition your drive.</p>
<p>Make two partitions. One for your / and one for swap. I have a 160gb HDD and did the following:</p>
<p>/dev/sda1 &#8211; 30gb &#8211; ext4 &#8211; mount as /<br />
/dev/sda2 &#8211; 2gb &#8211; SWAP</p>
<p>Leave the remaining space unallocated, it will be used for your future /home.</p>
<p>Go ahead and install as normal.</p>
<p>When I created my user, I chose to have it login automatically, since once we are done a password will be required to mount /home anyways.</p>
<p>Once done, boot up into your fresh install.</p>
<p>You will need to connect to the Internet.</p>
<p>I went ahead and updated my install.</p>
<p>Then go to (System> if your using the Desktop version) Administration> Software Sources,</p>
<p>Make sure all the repositories are enabled, and up to date.</p>
<p>Now open a terminal.</p>
<p>Become root<br />
<code>sudo -s</code></p>
<p>Install the package &#8216;cryptsetup&#8217;<br />
<code>apt-get install cryptsetup</code></p>
<p>Install the package gparted<br />
<code>apt-get install gparted</code></p>
<p>Run gparted<br />
<code>gparted</code></p>
<p>Using gparted, partition the unallocated space as ext3, I used /dev/sda3</p>
<p>Now create the luks partition<br />
<code><br />
cryptsetup --verify-passphrase --verbose --hash=sha256 --cipher=aes-cbc-essiv:sha256 --key-size=256 luksFormat /dev/sda3</code></p>
<p>Setup the device mapper<br />
<code>cryptsetup luksOpen /dev/sda3 home</code></p>
<p>Create the file system<br />
<code>mke2fs -j -O dir_index,filetype,sparse_super /dev/mapper/home</code></p>
<p>Mount the partition<br />
<code>mount -t ext3 /dev/mapper/home /mnt</code></p>
<p>Copy your home dir<br />
<code>cp -axv /home/* /mnt/</code></p>
<p>Unmount the partition<br />
<code>sudo umount /mnt</code></p>
<p>Edit /etc/fstab to use the new encrypted home dir<br />
<code>nano  /etc/fstab</code></p>
<p>Add this line to the bottom of /etc/fstab<br />
<code>/dev/mapper/home   /home           ext3     defaults    1       2</code></p>
<p>Edit /etc/crypttab to decrypt the new home dir on boot<br />
<code>nano /etc/crypttab</code></p>
<p>Add this line to /etc/crypttab<br />
<code>home                /dev/sda3         none         luks</code></p>
<p>Reboot. Now you should be using your new encrypted home dir.</p>
<p>To remove your old /home files, you will need to boot back into the livecd and run the following in a terminal:<br />
<code>sudo -s<br />
mkdir temp1<br />
mount /dev/sda1 temp1<br />
cd temp1/home/<br />
rm -rf *<br />
</code></p>
<p>Now you should be all done. If you had any sensitive data in the old /home you may wish to install a secure delete program like &#8216;wipe&#8217; while running off the LiveCD and do a secure delete.</p>
<p>I plan to do encryption of the swap file as well, please check back for that future post.</p>
<p>I would like to thank Kilobit for the Acer Aspire One to play with.</p>
<p>I used this <a href="https://help.ubuntu.com/community/EncryptedFilesystem">post</a> as my refrence, when initially trying /home encryption.</p>
<p>You can find me as &#8216;Dox&#8217; or &#8216;TheDox&#8217; on efnet in #ubuntu and #wifi.</p>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>AA1</b></li>
<li><a href="http://linuxd.wordpress.com/2009/03/17/ubuntu-810-on-the-aa1-follow-up-review/">Ubuntu 8.10 on the <b>AA1</b> &#8211; follow-up review « Linux Daily</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Acer Apire One</b></li>
<li><a href="http://eeepc.net/acer-aspire-one-751-shows-up-in-germany/"><b>Acer Aspire One</b> 751 Shows Up in Germany | Eee PC &#8211; Blog</a></li>
<li><a href="http://www.gadgetfolder.com/acer-aspire-one-751-116-inch-intel-atom-z520-with-us15w-express-chipset.html"><b>Acer Aspire One</b> 751: 11.6-inch, Intel Atom Z520 with US15W Express <b>&#8230;</b></a></li>
<li><a href="http://www.mybestlaptop.org/acer-aspire-one-751-laptop.html"><b>Acer Aspire One</b> 751 Laptop | MYBESTLAPTOP</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Acer Aspire</b></li>
<li><a href="http://eeepc.net/acer-aspire-one-751-shows-up-in-germany/"><b>Acer Aspire</b> One 751 Shows Up in Germany | Eee PC &#8211; Blog</a></li>
<li><a href="http://www.dancewithshadows.com/tech/acer-aspire-el-1600-nettop-launched-in-india/"><b>Acer Aspire</b> EL 1600 nettop India price, features | DWS Tech</a></li>
<li><a href="http://www.gadgetfolder.com/acer-aspire-one-751-116-inch-intel-atom-z520-with-us15w-express-chipset.html"><b>Acer Aspire</b> One 751: 11.6-inch, Intel Atom Z520 with US15W Express <b>&#8230;</b></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Encryption</b></li>
<li><a href="http://script-o-matic.net/?p=73">Script-o-matic » Old <b>Encryption</b> Traces</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>netbook remix</b></li>
<li><a href="http://www.softsift.com/200905/ubuntu-904-netbook-remix.html">Ubuntu 9.04 <b>Netbook Remix</b> » SoftSift</a></li>
<li><a href="http://www.appledifferent.com/2009/04/26/ubuntu-netbook-remix-review/">Ubuntu 9.04 <b>Netbook Remix</b> Review | AppleDifferent</a></li>
<li><a href="http://wp.dembowski.net/2009/04/23/ubuntu-netbook-remix-904/">Ubuntu <b>Netbook Remix</b> 9.04 at Mostly Harmless</a></li>
<li><a href="http://www.moshable.com">Free Music</a>
</li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>ubuntu</b></li>
<li><a href="http://ak33m.com/?p=62">Developer&#39;s Kanundrum » Blog Archive » Upgrading <b>Ubuntu</b> Feisty <b>&#8230;</b></a></li>
<li><a href="http://bderzhavets.wordpress.com/2009/05/02/debootstrap-ubuntu-jaunty-pv-domu-at-xen-331-f10-dom0-kernel-2630-rc3-tip/">Debootstrap <b>Ubuntu</b> Jaunty PV DomU at Xen 3.3.1 F10 Dom0 ( kernel <b>&#8230;</b></a></li>
<li><a href="http://doctormo.wordpress.com/2009/05/01/ubuntu-anime-convention-with-ubunchu/"><b>Ubuntu</b>: Anime Convention with Ubunchu « DoctorMO&#39;s Blag</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FBI spyware has been catching criminals for years</title>
		<link>http://www.mindhack.us/?p=147</link>
		<comments>http://www.mindhack.us/?p=147#comments</comments>
		<pubDate>Mon, 20 Apr 2009 17:38:17 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[civil rights]]></category>
		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=147</guid>
		<description><![CDATA[
Last Thursday wired.com, through the FOIA,  obtained 100&#8217;s of pages of  documents that detail seven years of the FBI&#8217;s use of malicious software in tracking down hackers, hitmen, extortionists and terrorist suspects. The released documents, available for download here, are of course heavily redacted. The software is called CIPAV, or &#8220;computer and internet protocol address [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="size-thumbnail wp-image-154 alignnone" title="1015891_locked" src="http://www.mindhack.us/wp-content/uploads/2009/04/1015891_locked-150x150.jpg" alt="1015891_locked" width="150" height="150" /></p>
<p style="text-align: left;">Last Thursday <a href="http://wired.com" target="_self">wired.com</a>, through the <a href="http://en.wikipedia.org/wiki/Freedom_of_Information_Act_(United_States)" target="_self">FOIA</a>,  obtained <a href="http://blog.wired.com/27bstroke6/2009/04/fbi-spyware-pro.html" target="_self">100&#8217;s of pages of  documents </a>that detail seven years of the FBI&#8217;s use of malicious software in tracking down hackers, hitmen, extortionists and terrorist suspects. The released documents, available for download <a href="http://blog.wired.com/27bstroke6/2009/04/get-your-fbi-sp.html" target="_blank">here</a>, are of course heavily redacted. The software is called CIPAV, or &#8220;computer and internet protocol address verifier.&#8221; From the documents it&#8217;s capabilities include: reporting a computer&#8217;s IP address, MAC address, open ports, a list of running programs, the operating system type, version and serial number, preferred internet browser and version, the computer&#8217;s registered owner and registered company name, the current logged-in user name and the last-visited URL. After sending this information to FBI servers via <a href="http://en.wikipedia.org/wiki/Covert_channel" target="_blank">covert channel</a>, the software sits quietly and monitors your internet use, reporting the IP addresses of every connection made while on the Internet.</p>
<p><span id="more-147"></span>Some of the cases in which CIPAV was used include:</p>
<ul>
<li>In 2005, Danny Kelly, an unemployed engineer, used anonymous e-mail to <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9131778&amp;source=NLT_AM" target="_self">demand money from Verizon and Comcast</a>, in exchange for not cutting cables in their network. He had cut a total of 18 cables between 2004-2005.</li>
<li>Also in 2005, CIPAV was used to identify a hacker who had compromised thousands of computers at Cisco Systems, NASA JPL, and US Government Laboratories. The hacker was later found to be a 16 year-old from Sweden.</li>
<li>A European hitman using an anonymous and encrypted e-mail service to solicit business.</li>
</ul>
<p>At first glance, it seems the feds have gone blackhat in their zealous pursuit of wrongdoers, but the documents indicate that search warrants were applied for and obtained in every case. Even if some of our 4th Amendment protections are in place, I don&#8217;t see how they can be sure it&#8217;s on the right machine. The documents indicate that the spyware actually takes advantage of security vulnerabilities to install itself&#8230; the same method used by viruses and other malware. What happens when an innocent third-party gets his machine infected by visiting some secret FBI trojan-installer website? Are the feds going to call him up and tell him how to remove their spyware? No, but they&#8217;ll still be receiving private information sent by the trojan. Maybe it won&#8217;t be admissible in court, but they&#8217;ll still have it. The only upside is it&#8217;s NOT a virus/worm and it does NOT self-propagate. One document even indicates the FBI e-mailed the trojan to a suspect&#8217;s yahoo.com account. I haven&#8217;t read the entirety of the FOIA release, but there are some interesting items, if you can read through all the redactions. One document even indicates that the FBI is hacking suspects&#8217; WiFi, another reason to use the strongest-available encryption and authentication protocols.</p>
<p>So how do you protect yourself (from accidental infection of course)? Well first I&#8217;d recommend not using Internet Explorer, which has a history of security vulnerabilities. Also, running a non-windows operating system may be of help. In one of the documents, the FBI was concerned their attempts to install the trojan may have been detected. A suspect in the hacking of a bank in Cincinnatti visited the trojan site, but  &#8220;the CIPAV did not deliver its payload because of system incompatibility.&#8221; You can safely infer that this trojan will not function on a unix-based operating system, such as <a href="http://www.linux.org/" target="_blank">Linux</a> or <a href="http://www.freebsd.org" target="_blank">FreeBSD</a>.</p>
<p>Lastly, use anti-spyware and antivirus software that was developed outside of the United States. We don&#8217;t know if the FBI has backroom deals with U.S.-based security products vendors. i.e. &#8220;Please don&#8217;t add our trojan to your virus detection list or your company will be aiding the terrorists and helping kill children.&#8221; How could they refuse? So use <a href="http://www.avast.com" target="_blank">Avast</a> or <a href="http://www.grisoft.com" target="_blank">AVG</a> for your antivirus (both Czech companies) and <a href="http://www.comodo.com" target="_blank">Comodo</a> (Great Britain) firewall can be configured to detect covert communications, even over port 80. Security doesn&#8217;t have to be difficult. It&#8217;s mostly common-sense and a small investment in time to educate yourself. Take the initative, your personal information will appreciate it, I know mine does.<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>civil rights</b></li>
<li><a href="http://fotowarung.bazuki.com/?p=10742">fotowarung.bazuki.com » Blog Archive » U.S. <b>civil rights</b> activist <b>&#8230;</b></a></li>
<li><a href="http://snarkybytes.com/?p=3337">SnarkyBytes » ABC’s Anti-<b>Civil Rights</b> Agenda</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>malware</b></li>
<li><a href="http://foxnewsboycott.com/fox-news/malware-in-foxnewscom-ads/">Fox News Boycott » <b>Malware</b> in FoxNews.com Ads?</a></li>
<li><a href="http://blog.trendmicro.com/boredom-results-in-twitter-malware-attack/">Boredom Results in Twitter <b>Malware</b> Attack | <b>Malware</b> Blog | Trend Micro</a></li>
<li><a href="http://blog.trendmicro.com/search-for-twitter-worm-news-snowballs-to-more-malware/">Search for Twitter Worm News Snowballs to More <b>Malware</b> | <b>Malware</b> <b>&#8230;</b></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Privacy</b></li>
<li><a href="http://www.privacylives.com/events-of-interest-fordham-university-privacy-rights-and-wrongs-april-21/2009/04/20/"><b>Privacy</b> Lives » Blog Archive » Events of Interest: Fordham <b>&#8230;</b></a></li>
<li><a href="http://www.lawrencepingree.com/index.php/2009/04/19/google-and-personal-privacy-is-it-really-that-bad-you-decide/">Google and Personal <b>Privacy</b> – Is it really that bad? You Decide <b>&#8230;</b></a></li>
<li><a href="http://blog.planetjamie.co.uk/blog/?p=585"><b>Privacy</b> International’s Official Response On Deep Packet <b>&#8230;</b></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=147</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Critical Infrastructure Vulnerabilities</title>
		<link>http://www.mindhack.us/?p=138</link>
		<comments>http://www.mindhack.us/?p=138#comments</comments>
		<pubDate>Fri, 10 Apr 2009 20:39:38 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[critical infrastructure]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=138</guid>
		<description><![CDATA[We&#8217;ve all read the news about yesterday&#8217;s early morning fiber cuts in the San Francisco Bay Area.  The first cut, which was AT&#38;T fiber, happened around 1:30am alongside Monterey Highway near Blossom Hill Road, in San Jose. At 3:30am more AT&#38;T fiber was cut along Old County Road near Bing Street in San Carlos.  [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all read the <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2009/04/09/BAP816VTE6.DTL" target="_blank">news</a> about yesterday&#8217;s early morning fiber cuts in the San Francisco Bay Area.  The first cut, which was AT&amp;T fiber, happened around 1:30am alongside Monterey Highway near Blossom Hill Road, in San Jose. At 3:30am more AT&amp;T fiber was cut along Old County Road near Bing Street in San Carlos.  Two additional lines were also sliced on Hayes Avenue in south San Jose. The cuts affected both landline and cell phone service for tens of thousands of people. Access to e911 services were also affected as far south as Gilroy. Transit at the 200 Paul datacenter in San Francisco was also <a href="https://puck.nether.net/pipermail/outages/2009-April/thread.html#1157" target="_blank">disrupted</a>. So, no, it wasn&#8217;t a backhoe. It was a coordinated and deliberate act of sabotage on our critical infrastructure. AT&amp;T is offering a <a href="http://www.att.com/gen/press-room?pid=4800&amp;cdvn=news&amp;newsarticleid=26715" target="_blank">$100,000</a><a href="http://www.att.com/gen/press-room?pid=4800&amp;cdvn=news&amp;newsarticleid=26715" target="_blank"> reward</a> for information that leads to the arrest of the perpetrators.</p>
<p><span id="more-138"></span><a href="http://wikipedia.com/" target="_blank">Wikipedia</a> defines &#8220;<a href="http://en.wikipedia.org/wiki/Critical_infrastructure" target="_blank">critical infrastructure</a>&#8221; as &#8220;<span class="mw-redirect">assets</span> that are essential for the functioning of a society and economy.&#8221; After the terrorist attacks of September 11, 2001, the US Government&#8217;s Critical Infrastructure Protection program made the decision to include fiber optic communication networks as part of our country&#8217;s critical infrastructure. Cell phones and landlines, the internet, local networks, emergency services, voice and data. Our society&#8217;s communication and connectivity depend on these thousands of miles of hair-width strands of glass.</p>
<div id="attachment_139" class="wp-caption alignleft" style="width: 160px"><img class="size-thumbnail wp-image-139" title="Palo Alto Fiber Routes" src="http://www.mindhack.us/wp-content/uploads/2009/04/paloalto_fibre_largemap-150x150.gif" alt="City of Palo Alto fiber route" width="150" height="150" /><p class="wp-caption-text">City of Palo Alto fiber route</p></div>
<p>So how secure is our critical fiber optic infrastructure? Well, are you strong enough to lift a manhole cover? Yes there are millions of manholes, which one is the right one? Almost every network service provider publicly publishes maps of their fiber optic routes as part of their product marketing. Don&#8217;t believe me? Google it. I remember <a href="http://www.qwest.com/" target="_blank">Qwest</a> (SP Telecom, anyone?) laying their 18,500 miles of fiber starting in the early 90&#8217;s. And a majority of that fiber runs right along with Southern Pacific&#8217;s old railroad tracks. It&#8217;s pretty easy to spot those.</p>
<p>Even if we found a way to secure the millions of manhole covers and vaults in our cities and towns, how do we secure the thousands of miles of fiber runs that go through America&#8217;s heartland? Any basic risk assessment would identify and quantify this vulnerability. But no one is talking about it because no one knows what to do. There is no easy solution. This incident was obviously purposeful and well-coordinated. Yet it was also purposefully easy to repair the damage. We were lucky. What happens with a real attack? Next time a bomb could go off in a fiber vault. Good luck splicing that. We&#8217;ll be in even more trouble when an attacker discovers it&#8217;s easy as renting a cage in a telco hotel and filling it with 42U&#8217;s of C4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=138</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Identity Theft and the Social Web</title>
		<link>http://www.mindhack.us/?p=123</link>
		<comments>http://www.mindhack.us/?p=123#comments</comments>
		<pubDate>Thu, 09 Apr 2009 17:28:22 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Social Engineering]]></category>
		<category><![CDATA[identity theft]]></category>
		<category><![CDATA[social web]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=123</guid>
		<description><![CDATA[Bruce Scheiner is covering an interesting security aspect of Web 2.0 over at his blog: identity theft scams. Though I believe a more apt category would be social engineering, because this vulnerability is not limited to solely ID theft. This demonstrates the need to be vigilant in deciding who to friend on these social networking [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schneier.com/" target="_blank">Bruce Scheiner</a> is covering an interesting security aspect of Web 2.0 over at his blog: <a href="http://www.schneier.com/blog/archives/2009/04/social_networki.html" target="_blank">identity theft scams</a>. Though I believe a more apt category would be social engineering, because this vulnerability is not limited to solely ID theft. This demonstrates the need to be vigilant in deciding who to friend on these social networking sites. But not even that will protect you, because your friends or your friend&#8217;s friends may not be as security-conscious as you are, and that leaves a way in for the enterprising social engineer. I mean, I&#8217;ve been on <a href="http://facebook.com" target="_blank">facebook</a> all of 2 weeks, and every day the site itself asks me to friend some person I don&#8217;t know. And how many of us have seen the profiles with 1000&#8217;s of friends? Come on, no one knows 1000&#8217;s of people well enough to actually consider them friends.</p>
<p><span id="more-123"></span></p>
<p>This is a new take on a very old scam. This type of social engineering exploits a natural human weakness. We trust our friends. And we assume that our friends trust their friends, and so on. This turns trust verification into a never-ending web-of-trust based solely on who you&#8217;re linked to on myspace or facebook. You want to try this out yourself? Get a good-looking picture of a young woman and create a profile. I bet you&#8217;ll rack up more friends than I have, and in a shorter time. And none of them know anything about you, except that &#8220;oh this is a friend of so-and-so, she must be cool.&#8221;</p>
<p>Ask yourself if you really <strong>know</strong> all the people on your friends list? Do you know them well enough to be comfortable telling them when you&#8217;re out of town? Or on which nights you&#8217;re coming home late? Looking over my friends list, I&#8217;m guilty. I&#8217;ve added people that I&#8217;ve never met personally only because I&#8217;m linked to them through a real friend. I may be one-degree away from knowing them, but I have no clue who any of <em>their</em> friends are.  The solution is to verify. Trust your friends: the ones you go out with on Friday nights or talk to on the phone during the work day. Unless you&#8217;re an uber-geek that is going to trade signed public-key&#8217;s with your friends, a simple phone call should suffice to verify who&#8217;s who on facebook.</p>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>identity theft</strong></li>
<li><a href="http://identitytheftinternet.com/you-can-be-a-victim-of-identity-theft/">You Can Be A Victim of <strong>Identity Theft</strong></a></li>
<li><a href="http://identitytheftprotection.org/blog/index.php/nigerian-email-scams/">Nigerian Email Scams – Be on the Look Out! | <strong>Identity theft</strong> <strong>&#8230;</strong></a></li>
<li><a href="http://www.loanmodificationonline.org/tips-for-choosing-an-identity-theft-prevention-service.html">Tips For Choosing An <strong>Identity Theft</strong> Prevention Service</a></li>
<li><a href="http://identitytheftinternet.com/are-you-looking-for-an-identity-protection-plan/">Are You Looking For An <strong>Identity</strong> Protection Plan?</a></li>
<li><a href="http://technologyheaven.com/2009/04/10/internet-safety-part-4-identity-theft/">Internet Safety &#8211; Part 4: <strong>Identity Theft</strong> | Technology Heaven</a></li>
<li><a href="http://www.moshable.com">Free Music</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>Security</strong></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong>social web</strong></li>
<li><a href="http://www.blogofchange.com/?p=1065">Blog of Change » Re-imaginging through the <strong>social web</strong></a></li>
<li><a href="http://socialwebstrategies.com/2009/04/08/social-web-incubator-group/"><strong>Social Web</strong> Incubator Group | <strong>Social Web</strong> Strategies</a></li>
<li><a href="http://socialwebstrategies.com/2009/04/09/ia09-join-us-april-27th/">#IA09 &#8211; join us April 27th! | <strong>Social Web</strong> Strategies</a></li>
<li><a href="http://socialwebstrategies.com/2009/04/08/social-media-for-higher-revenues/"><strong>Social</strong> media for higher revenues | <strong>Social Web</strong> Strategies</a></li>
<li><a href="http://www.mindhack.us/?p=123">Identity Theft and the <strong>Social Web</strong> | MindHack</a></li>
</ul>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>identity theft</b></li>
<li><a href="http://identitytheftinternet.com/you-can-be-a-victim-of-identity-theft/">You Can Be A Victim of <b>Identity Theft</b></a></li>
<li><a href="http://identitytheftprotection.org/blog/index.php/nigerian-email-scams/">Nigerian Email Scams – Be on the Look Out! | <b>Identity theft</b> <b>&#8230;</b></a></li>
<li><a href="http://www.loanmodificationonline.org/tips-for-choosing-an-identity-theft-prevention-service.html">Tips For Choosing An <b>Identity Theft</b> Prevention Service</a></li>
<li><a href="http://identitytheftinternet.com/are-you-looking-for-an-identity-protection-plan/">Are You Looking For An <b>Identity</b> Protection Plan?</a></li>
<li><a href="http://technologyheaven.com/2009/04/10/internet-safety-part-4-identity-theft/">Internet Safety &#8211; Part 4: <b>Identity Theft</b> | Technology Heaven</a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Security</b></li>
<li><a href="http://www.spottedhere.com/dallas/club/ghostbar">Ghost Bar Dallas</a>
</li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>social web</b></li>
<li><a href="http://www.blogofchange.com/?p=1065">Blog of Change » Re-imaginging through the <b>social web</b></a></li>
<li><a href="http://socialwebstrategies.com/2009/04/08/social-web-incubator-group/"><b>Social Web</b> Incubator Group | <b>Social Web</b> Strategies</a></li>
<li><a href="http://socialwebstrategies.com/2009/04/09/ia09-join-us-april-27th/">#IA09 &#8211; join us April 27th! | <b>Social Web</b> Strategies</a></li>
<li><a href="http://socialwebstrategies.com/2009/04/08/social-media-for-higher-revenues/"><b>Social</b> media for higher revenues | <b>Social Web</b> Strategies</a></li>
<li><a href="http://www.mindhack.us/?p=123">Identity Theft and the <b>Social Web</b> | MindHack</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=123</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonymity in the age of Web 2.0</title>
		<link>http://www.mindhack.us/?p=107</link>
		<comments>http://www.mindhack.us/?p=107#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:24:56 +0000</pubDate>
		<dc:creator>blakangel</dc:creator>
				<category><![CDATA[Anonymity]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[social web]]></category>

		<guid isPermaLink="false">http://www.mindhack.us/?p=107</guid>
		<description><![CDATA[
I&#8217;ve recently returned from a long hiatus from the &#8216;net. Working in the IT industry and being an all-around computer geek my entire life, a prolonged absence from modern technology (especially the Internet) was a strange experience. Since I&#8217;ve always been a strong believer in personal privacy, and in how this privacy can be enjoyed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-116" title="security-cameras" src="http://www.mindhack.us/wp-content/uploads/2009/04/security-cameras2.jpg" alt="security-cameras" width="200" height="275" /></p>
<p>I&#8217;ve recently returned from a long hiatus from the &#8216;net. Working in the IT industry and being an all-around computer geek my entire life, a prolonged absence from modern technology (especially the Internet) was a strange experience. Since I&#8217;ve always been a strong believer in personal privacy, and in how this privacy can be enjoyed and protected online, my absence presented me with a unique opportunity to view privacy and anonymity on today&#8217;s Internet and compare it to that of three years ago.<span id="more-107"></span></p>
<p>Only a few short years ago if you were somewhat careful, it was next to impossible for someone online to get your personal information: Use shell accounts and proxies, don&#8217;t let your home IP get out; Use a made-up online persona and free e-mail accounts for forums and mailing lists; Follow <a href="http://www.mindhack.us/?p=11" target="_blank">good password policies</a>; Be careful using your credit card. The list of simple things we did to protect ourselves is no longer as useful today. For the last three months I&#8217;ve been slowly learning Web 2.0 and it&#8217;s ramifications for online privacy.</p>
<p>Web 2.0 is the Social Web. People are now linked together in a myriad of ways. You subscribe to your friends twitter feeds and know where they are what they are doing as soon as it happens. Maybe you send a tweet or two now and then yourself. You have a <a href="http://facebook.com" target="_blank">facebook</a> and <a href="http://myspace.com" target="_blank">myspace</a> profile with hundreds of friends, colleagues and acquaintances. And don&#8217;t forget that the purpose of these social networking sites is to <em>expand</em> your network of social connections as large as it can. A tagged photo, a <a href="http://digg.com" target="_blank">Digg</a> or an occasional <a href="http://www.stumbleupon.com//" target="_blank">Stumble</a> can all leak out a little bit more about you, the real you. It will be even worse when cloud computing takes off. With the social web no longer limited to online communities such as chat and forums, mediums where we could keep our online identity at a safe distance from our real one. The line that separated the virtual world from the real world is blurring.</p>
<p>So what does all this mean? It means that online activity will begin to have a more profound effect on your real life. A few recent examples of this have caught my eye and I have no doubt we will be hearing stories like these more and more. The <a href="http://ciscofatty.com/ruin-a-fatty-cisco-job-with-1-tweet/" target="_blank">Cisco Fatty</a> lost his new job by tweeting his honest opinion of his new employer. Google just reported that they <a href="http://seekingalpha.com/article/124761-careless-in-the-cloud-google-accidentally-shares-some-docs?source=feed" target="_blank">accidently shared</a> some users Google Docs and Spreadsheets with people that had no permission to see the documents. That was only an accident, what happens when the hackers start hitting the cloud? We&#8217;ve all read about the <a href="http://www.marketingvox.com/watershed-ruling-in-myspace-suicide-case-may-criminalize-fake-net-personas-042175/" target="_blank">Lori Drew Myspace case</a>, where a Missouri mother was convicted for using a fake myspace account to cyber-bully a teenage girl to suicide. But the ruling could have far-reaching effects on online anonymity: the next time you put a fake name and throwaway email in a online form, you may be committing a federal crime.</p>
<p>So what can be done to protect your online anonymity? Well you can simply not participate in Web 2.0, as difficult as that may become. Or  you can take some simple steps to protect yourself. I signed up for facebook a couple of weeks ago, but not before reading and re-reading <a href="http://www.allfacebook.com/2009/02/facebook-privacy/" target="_blank">this article</a> on facebook privacy. Be pro-active. Do research on what privacy options are available on specific sites, and implement them. Keep your professional and personal networks as walled off from each other as possible. Make sure that drunken photo of you someone tagged on facebook is NOT shared with your boss and coworkers. And always, always, <em>think before you tweet.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindhack.us/?feed=rss2&amp;p=107</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
