<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Wi-Fi Street Smarts, iPhone Edition</title>
	<atom:link href="http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/feed/" rel="self" type="application/rss+xml" />
	<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/</link>
	<description>In-depth security news and investigation</description>
	<lastBuildDate>Sat, 11 Feb 2012 19:29:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Stephanie@EVS</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-7084</link>
		<dc:creator>Stephanie@EVS</dc:creator>
		<pubDate>Thu, 24 Jun 2010 19:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-7084</guid>
		<description>Great advice! I&#039;ve passed the word on here. http://bit.ly/bNISE4</description>
		<content:encoded><![CDATA[<p>Great advice! I&#8217;ve passed the word on here. <a href="http://bit.ly/bNISE4" rel="nofollow">http://bit.ly/bNISE4</a></p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-7084" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('7084', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-7084-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-7084" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('7084', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-7084-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: stvs</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6576</link>
		<dc:creator>stvs</dc:creator>
		<pubDate>Mon, 07 Jun 2010 14:51:35 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6576</guid>
		<description>&lt;i&gt;If you use your iPhone to connect to open or public wireless networks, it’s a good idea to tell the device to forget the network’s name after you’re done using it&lt;/i&gt;

Much more importantly, never use public wifi for anything except to establish an ssh tunnel to your home computer, and make sure that your email account has SSL on for both sending and receiving email.

Here&#039;s a shell script that I use on my JB iPhone. Install in /var/mobile/bin/ssht, then run from Terminal (you can program a quick action for this as well for convenience). At home, I have Squid and Privoxy proxies chained with access only from localhost; you can use any of Squid/Polipo/Privoxy options for this purpose, all available using &quot;sudo port install squid privoxy polipo&quot; from MacPorts, or equivalent using yum/etc. on Linux.

With a setup like this, the only information the public wifi router (and all its clients) will see is encrypted SSL and ssh traffic.


#!/bin/sh
# SSH tunnel to squid proxy: ssht [user_name@][ip_address][:ssh_port]

MYUSERNAME_DEFAULT=username
MYHOSTNAME_DEFAULT=192.168.1.1  # actual IP goes here
MYSSHPORT_DEFAULT=22  # move ssh off standard port 22!

# SSH port forwarding specs, e.g. 8080:localhost:3128
MYLOCALHOSTPORT=8080
MYSQUIDPORT=3128

# Get username, hostname, and ssh_port from the command line argument
if [[ $1 == *@* ]]
then
    MYUSERNAME=${1%%@*}
else
    MYUSERNAME=$MYUSERNAME_DEFAULT
fi
if [ -z $MYUSERNAME ]
then
    MYUSERNAME=$MYUSERNAME_DEFAULT
fi

if [[ $1 == *:* ]]
then
    MYSSHPORT=${1##*:}
else
    MYSSHPORT=$MYSSHPORT_DEFAULT
fi
if [ -z $MYSSHPORT ]
then
    MYSSHPORT=$MYSSHPORT_DEFAULT
fi

MYHOSTNAME=${1##*@}
MYHOSTNAME=${MYHOSTNAME%%:*}
if [ -z $MYHOSTNAME ]
then
    MYHOSTNAME=$MYHOSTNAME_DEFAULT
fi

ssh -p $MYSSHPORT -L $MYLOCALHOSTPORT:localhost:$MYSQUIDPORT -l $MYUSERNAME $MYHOSTNAME -f -C -q -N \
    &amp;&amp; echo &quot;SSH tunnel established via $MYLOCALHOSTPORT:localhost:$MYSQUIDPORT\n\tto $MYUSERNAME@$MYHOSTNAME:$MYSSHPORT.&quot; \
    &#124;&#124; echo &quot;SSH tunnel FAIL.&quot;</description>
		<content:encoded><![CDATA[<p><i>If you use your iPhone to connect to open or public wireless networks, it’s a good idea to tell the device to forget the network’s name after you’re done using it</i></p>
<p>Much more importantly, never use public wifi for anything except to establish an ssh tunnel to your home computer, and make sure that your email account has SSL on for both sending and receiving email.</p>
<p>Here&#8217;s a shell script that I use on my JB iPhone. Install in /var/mobile/bin/ssht, then run from Terminal (you can program a quick action for this as well for convenience). At home, I have Squid and Privoxy proxies chained with access only from localhost; you can use any of Squid/Polipo/Privoxy options for this purpose, all available using &#8220;sudo port install squid privoxy polipo&#8221; from MacPorts, or equivalent using yum/etc. on Linux.</p>
<p>With a setup like this, the only information the public wifi router (and all its clients) will see is encrypted SSL and ssh traffic.</p>
<p>#!/bin/sh<br />
# SSH tunnel to squid proxy: ssht [user_name@][ip_address][:ssh_port]</p>
<p>MYUSERNAME_DEFAULT=username<br />
MYHOSTNAME_DEFAULT=192.168.1.1  # actual IP goes here<br />
MYSSHPORT_DEFAULT=22  # move ssh off standard port 22!</p>
<p># SSH port forwarding specs, e.g. 8080:localhost:3128<br />
MYLOCALHOSTPORT=8080<br />
MYSQUIDPORT=3128</p>
<p># Get username, hostname, and ssh_port from the command line argument<br />
if [[ $1 == *@* ]]<br />
then<br />
    MYUSERNAME=${1%%@*}<br />
else<br />
    MYUSERNAME=$MYUSERNAME_DEFAULT<br />
fi<br />
if [ -z $MYUSERNAME ]<br />
then<br />
    MYUSERNAME=$MYUSERNAME_DEFAULT<br />
fi</p>
<p>if [[ $1 == *:* ]]<br />
then<br />
    MYSSHPORT=${1##*:}<br />
else<br />
    MYSSHPORT=$MYSSHPORT_DEFAULT<br />
fi<br />
if [ -z $MYSSHPORT ]<br />
then<br />
    MYSSHPORT=$MYSSHPORT_DEFAULT<br />
fi</p>
<p>MYHOSTNAME=${1##*@}<br />
MYHOSTNAME=${MYHOSTNAME%%:*}<br />
if [ -z $MYHOSTNAME ]<br />
then<br />
    MYHOSTNAME=$MYHOSTNAME_DEFAULT<br />
fi</p>
<p>ssh -p $MYSSHPORT -L $MYLOCALHOSTPORT:localhost:$MYSQUIDPORT -l $MYUSERNAME $MYHOSTNAME -f -C -q -N \<br />
    &amp;&amp; echo &#8220;SSH tunnel established via $MYLOCALHOSTPORT:localhost:$MYSQUIDPORT\n\tto $MYUSERNAME@$MYHOSTNAME:$MYSSHPORT.&#8221; \<br />
    || echo &#8220;SSH tunnel FAIL.&#8221;</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6576" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6576', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6576-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6576" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6576', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6576-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: Spiros malavazos</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6538</link>
		<dc:creator>Spiros malavazos</dc:creator>
		<pubDate>Sat, 05 Jun 2010 16:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6538</guid>
		<description>You don&#039;t know how right you are.  Very good advice!!</description>
		<content:encoded><![CDATA[<p>You don&#8217;t know how right you are.  Very good advice!!</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6538" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6538', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6538-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6538" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6538', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6538-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: QQ</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6452</link>
		<dc:creator>QQ</dc:creator>
		<pubDate>Thu, 03 Jun 2010 15:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6452</guid>
		<description>As the number of smart-phones rises so will the danger of using them rise.

It has been some hackers dream to have the ability to steal information just by walking near people with a smart phone. 

As the usage of smart phones and similar devices that transmit info over wi-fi rises this hacker dream is coming closer. This threat can come in many forms it havent been created yet but it could be phone exploiting all the phones in a circle around it or just stealing stored passwords or something else...

Not unlike security on a PC, most Iphone owners dont care about security, bringing up any security subject as discussion topic will likely blow away most people they dont even want to hear about this boring crap.</description>
		<content:encoded><![CDATA[<p>As the number of smart-phones rises so will the danger of using them rise.</p>
<p>It has been some hackers dream to have the ability to steal information just by walking near people with a smart phone. </p>
<p>As the usage of smart phones and similar devices that transmit info over wi-fi rises this hacker dream is coming closer. This threat can come in many forms it havent been created yet but it could be phone exploiting all the phones in a circle around it or just stealing stored passwords or something else&#8230;</p>
<p>Not unlike security on a PC, most Iphone owners dont care about security, bringing up any security subject as discussion topic will likely blow away most people they dont even want to hear about this boring crap.</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6452" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6452', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6452-up" style="font-size:14px; color:#009933;">1</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6452" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6452', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6452-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: MessengerBoy</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6422</link>
		<dc:creator>MessengerBoy</dc:creator>
		<pubDate>Wed, 02 Jun 2010 23:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6422</guid>
		<description>Another best practice is to turn off Wi-Fi when you don&#039;t need it. This practice also helps save your battery.</description>
		<content:encoded><![CDATA[<p>Another best practice is to turn off Wi-Fi when you don&#8217;t need it. This practice also helps save your battery.</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6422" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6422', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6422-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6422" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6422', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6422-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: Danny Goodman</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6374</link>
		<dc:creator>Danny Goodman</dc:creator>
		<pubDate>Wed, 02 Jun 2010 15:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6374</guid>
		<description>When attending WiFi-enabled conferences, I also use VPN for both my iPhone and laptop (and now iPad).</description>
		<content:encoded><![CDATA[<p>When attending WiFi-enabled conferences, I also use VPN for both my iPhone and laptop (and now iPad).</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6374" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6374', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6374-up" style="font-size:14px; color:#009933;">1</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6374" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6374', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6374-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: Jane</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6337</link>
		<dc:creator>Jane</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6337</guid>
		<description>The encryption technically slows down your connection a tad, so leaving the connection unencrypted can give &quot;gamers&quot; at least some placebo comfort.  Routers usually give you an option to whitelist MAC addresses for permitting access, but that doesn&#039;t affect snooping.  

There are also some nifty routers that will serve as endpoints for multiple wireless networks.  The basic idea is that you can leave an unsecured network with less privileges as a sort of honeypot for your neighbors so that they won&#039;t bother trying your phone number for the password to your real network....</description>
		<content:encoded><![CDATA[<p>The encryption technically slows down your connection a tad, so leaving the connection unencrypted can give &#8220;gamers&#8221; at least some placebo comfort.  Routers usually give you an option to whitelist MAC addresses for permitting access, but that doesn&#8217;t affect snooping.  </p>
<p>There are also some nifty routers that will serve as endpoints for multiple wireless networks.  The basic idea is that you can leave an unsecured network with less privileges as a sort of honeypot for your neighbors so that they won&#8217;t bother trying your phone number for the password to your real network&#8230;.</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6337" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6337', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6337-up" style="font-size:14px; color:#009933;">2</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6337" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6337', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6337-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: Dunbar Pappy</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6336</link>
		<dc:creator>Dunbar Pappy</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6336</guid>
		<description>Brian makes another excellent case about WiFi security, but it should be noted that PC laptops should have similar constraints on this &#039;fluid&#039; connectivity behavior.
In XP; Control Panel&gt; Wireless Network Connections&gt; Wireless Networks&gt; &#039;Advanced&#039; button, tick &#039;access points only&#039; and uncheck &#039;Automatically connect to non-preferred networks&#039;&gt; close&gt; OK out.
Vista/Win7 should have all Networks not in direct control of the user placed in the &quot;Public&quot; heading, with maximum stealth settings.</description>
		<content:encoded><![CDATA[<p>Brian makes another excellent case about WiFi security, but it should be noted that PC laptops should have similar constraints on this &#8216;fluid&#8217; connectivity behavior.<br />
In XP; Control Panel&gt; Wireless Network Connections&gt; Wireless Networks&gt; &#8216;Advanced&#8217; button, tick &#8216;access points only&#8217; and uncheck &#8216;Automatically connect to non-preferred networks&#8217;&gt; close&gt; OK out.<br />
Vista/Win7 should have all Networks not in direct control of the user placed in the &#8220;Public&#8221; heading, with maximum stealth settings.</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6336" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6336', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6336-up" style="font-size:14px; color:#009933;">1</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6336" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6336', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6336-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: Hank Arnold</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6335</link>
		<dc:creator>Hank Arnold</dc:creator>
		<pubDate>Wed, 02 Jun 2010 08:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6335</guid>
		<description>Excellent article!! Scary, but it&#039;s good to know that I already do what you suggested... I&#039;ve already passed this on to my friends and posted it on my blog.</description>
		<content:encoded><![CDATA[<p>Excellent article!! Scary, but it&#8217;s good to know that I already do what you suggested&#8230; I&#8217;ve already passed this on to my friends and posted it on my blog.</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6335" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6335', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6335-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6335" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6335', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6335-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
	<item>
		<title>By: David Chasey</title>
		<link>http://krebsonsecurity.com/2010/06/wi-fi-street-smarts-iphone-edition/comment-page-1/#comment-6328</link>
		<dc:creator>David Chasey</dc:creator>
		<pubDate>Wed, 02 Jun 2010 02:51:31 +0000</pubDate>
		<guid isPermaLink="false">http://krebsonsecurity.com/?p=2809#comment-6328</guid>
		<description>So how safe is Wi-Fi? I use my computer only at home and I&#039;ve stuck with DSL even though I could get Verizon fiber optic. Should I switch and what else would I need to do to make it safe?</description>
		<content:encoded><![CDATA[<p>So how safe is Wi-Fi? I use my computer only at home and I&#8217;ve stuck with DSL even though I could get Verizon fiber optic. Should I switch and what else would I need to do to make it safe?</p>
<div class="CommentRating">Like or Dislike: <img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="up-6328" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_up.png" alt="Thumb up" onclick="javascript:ckratingKarma('6328', 'add', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_');" title="Thumb up" /> <span id="karma-6328-up" style="font-size:14px; color:#009933;">0</span>&nbsp;<img style="padding: 0px; margin: 0px; border: none; cursor: pointer;" onmouseover="this.width=this.width*1.3" onmouseout="this.width=this.width/1.2" id="down-6328" src="http://krebsonsecurity.com/wp-content/plugins/comment-rating-pro/images/1_16_down.png" alt="Thumb down" onclick="javascript:ckratingKarma('6328', 'subtract', 'krebsonsecurity.com/wp-content/plugins/comment-rating-pro/', '1_16_')" title="Thumb down" /> <span id="karma-6328-down" style="font-size:14px; color:#990033;">0</span></div>]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching 1/17 queries in 0.012 seconds using memcached
Object Caching 954/960 objects using memcached

Served from: krebsonsecurity.com @ 2012-02-11 23:18:46 -->
