<?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>binpoint.com &#187; Information Security</title>
	<atom:link href="http://binpoint.com/category/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://binpoint.com</link>
	<description>A Security Blog (Stirred with Geek Life)</description>
	<lastBuildDate>Wed, 09 Jun 2010 02:02:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Quick note on sorting john.pot files</title>
		<link>http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/</link>
		<comments>http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 02:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[john the ripper]]></category>
		<category><![CDATA[password cracking]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=719</guid>
		<description><![CDATA[I run john the ripper on multiple boxes at once by splitting up the input password hash files by type (NT, LanMan, DES, md5, etc.) Once I&#8217;ve let the individual systems run for a while, I run reports using  john - -show. This means I need to combine the john.pot files from each system into [...]


Related posts:<ol><li><a href='http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/' rel='bookmark' title='Permanent Link: John the Ripper Password Cracking Now Obsolete'>John the Ripper Password Cracking Now Obsolete</a></li>
<li><a href='http://binpoint.com/2009/03/complete-unix-cron-job-crib-sheet/' rel='bookmark' title='Permanent Link: Complete Unix Cron Job Crib Sheet'>Complete Unix Cron Job Crib Sheet</a></li>
<li><a href='http://binpoint.com/2009/05/auc-2-ls/' rel='bookmark' title='Permanent Link: AUC #2: ls'>AUC #2: ls</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-722" title="pot" src="http://binpoint.com/wp-content/uploads/2010/06/pot.png" alt="" width="304" height="301" /></p>
<p>I run <a href="http://www.openwall.com/john/">john the ripper</a> on multiple boxes at once by splitting up the input password hash files by type (NT, LanMan, DES, md5, etc.)</p>
<p>Once I&#8217;ve let the individual systems run for a while, I run reports using  <em>john</em> <em>- -show</em>. This means I need to combine the john.pot files from each system into a unique file on the system I&#8217;m running the reports on.</p>
<p>So, I ran the (fairly standard) commands:</p>
<p><em><strong>$ cat john1.pot john2.pot john3.pot &gt; combined.pot</strong><br />
</em></p>
<p><em><strong>$ cat combined.pot | sort | uniq &gt; john.pot</strong><br />
sort: string comparison failed: Illegal byte sequence<br />
sort: Set LC_ALL=&#8217;C&#8217; to work around the problem.<br />
sort: The strings compared were `1234567892031276d66b123456789:user&#8217; and `abcdefghijklmnop4ab</em><em>38:l\</em><em>4327367qrstuvwxyz&#8217;.</em></p>
<p>Oops! I wasn&#8217;t expecting that command to bomb out like that. To fix the sort, do exactly as sort suggests. Type:</p>
<p><strong>$ export LC_ALL=&#8217;C&#8217;</strong></p>
<p><strong><br />
</strong></p>
<p>What&#8217;s going on here?</p>
<p>I found <a href="http://www.opengroup.org/onlinepubs/007908799/xbd/envvar.html">this reference webpage</a> on Google. Here&#8217;s the relevant bits:</p>
<dl>
<dt><em>LC_ALL</em></dt>
<dd> <em>This variable determines the values for all locale categories. The value of the </em><em>LC_ALL environment variable has precedence over any of the other environment variables starting with </em><em>LC_ (</em><em>LC_COLLATE, LC_CTYPE, LC_MESSAGES, LC_MONETARY, LC_NUMERIC, LC_TIME) and the </em><em>LANG environment variable. </em></dd>
</dl>
<p><em>If the </em><em>LANG</em> environment variable is not set or is set to the empty string, the implementation-dependent default locale is used.</p>
<p><em>If the locale value is &#8220;C&#8221; or &#8220;POSIX&#8221;, the POSIX locale is used and the standard utilities behave in accordance with the rules in  POSIX Locale , for the associated category.</em></p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/' rel='bookmark' title='Permanent Link: John the Ripper Password Cracking Now Obsolete'>John the Ripper Password Cracking Now Obsolete</a></li>
<li><a href='http://binpoint.com/2009/03/complete-unix-cron-job-crib-sheet/' rel='bookmark' title='Permanent Link: Complete Unix Cron Job Crib Sheet'>Complete Unix Cron Job Crib Sheet</a></li>
<li><a href='http://binpoint.com/2009/05/auc-2-ls/' rel='bookmark' title='Permanent Link: AUC #2: ls'>AUC #2: ls</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Scanning with nmap</title>
		<link>http://binpoint.com/2010/04/network-scanning-with-nmap/</link>
		<comments>http://binpoint.com/2010/04/network-scanning-with-nmap/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:50:17 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[pentesting]]></category>
		<category><![CDATA[scanning]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=653</guid>
		<description><![CDATA[Shopping List Before we start, make sure you have the following ingredients ready to go: Fydor’s nmap – The true king of network scanners OpenVAS – The glamor queen of vulnerability assessors Start Here The first thing you need to determine is if you will be performing a black box test or a glass box [...]


Related posts:<ol><li><a href='http://binpoint.com/2008/06/thousands-of-sacrificial-lambs/' rel='bookmark' title='Permanent Link: Thousands of Sacrificial Lambs'>Thousands of Sacrificial Lambs</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
<li><a href='http://binpoint.com/2008/06/detectin-bad-tcp-sessions/' rel='bookmark' title='Permanent Link: Detecting bad TCP sessions'>Detecting bad TCP sessions</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-707" title="nmap_pic1" src="http://binpoint.com/wp-content/uploads/2010/04/nmap_pic1.png" alt="" width="367" height="212" /></p>
<p><strong>Shopping List</strong><br />
Before we start, make sure you have the following ingredients ready to go:</p>
<ul>
<li>Fydor’s <a href="http://nmap.org/">nmap</a> – The true king of network scanners</li>
<li><a href="http://www.openvas.org/">OpenVAS</a> – The glamor queen of vulnerability assessors</li>
</ul>
<p><strong>Start Here</strong><br />
The first thing you need to determine is if you will be performing a black box test or a glass box (often referred to as crystal box) test. I will only quickly go over the differences here.</p>
<p><strong>The Fairest Box of All</strong><br />
Black box testing is the &#8220;simplest&#8221; as you are only provided the IP Addresses in scope of the assessment. That’s it. You are not told how many Windows systems to expect, how many firewalls may be in your way or even if an IPS may shut down your scan if you are too aggressive with your timing options (we’ll touch on that later in this article.) It is difficult to accurately predict how long this may take as the composition of every network is different. An extreme example is if you are scanning through ocean floor fiber it could take quite some time when each packet suffers 250ms+ latency.</p>
<p>Glass box testing is typically much quicker to perform as your client will be providing architectural details of how the network is bolted together. It’s best to ask for network diagrams plus a real live human being to help you decipher them. (I mean seriously, how many UML network diagrams have you seen?) This is important not only because they may use abbreviations unknown to you or how closely the diagram aligns with reality or even all the labels they scribbled on by hand are subject to the lost art that is penmanship. Err, graphmanship.</p>
<p><strong>Scope Up!</strong><br />
Once the transparency of your target environment is agreed upon, you will need to define the scope of which portions of the target organization’s network is within scope for the assessment.</p>
<p>Ask for hosts which must NOT be scanned as they will fall over seizing due to poor IP/TCP stack implementations or other programming bugs. Place into “exclude.list”</p>
<p>Place the authorized IP address ranges and domains you were provided into “inscope.list”</p>
<p><strong>Just a Minor Technicality</strong><br />
Ok, we are now ready to dominate the world with our awesomeness! Or at the very least impress your client with a thorough report&#8230;</p>
<p>If you are scanning a class B network (10.10.X.X) or smaller, you will likely want to choose <strong>-T4</strong> for your speed setting. If you are attempting to map the Internet, stop now. <a href="http://insecure.org/presentations/BHDC08/bhdc08-slides-fyodor.pdf">Fydor has beaten you to it</a> <img src='http://binpoint.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>The Need For Speed</strong><br />
The <strong>–n</strong> switch will disable DNS lookups, reducing overall start to finish time as you no longer need to wait for all those UDP DNS request / responses to file in.</p>
<p>Setting how fast nmap chucks packets onto the network is controlled with:<br />
<strong>-T</strong>, <strong>&#8211;scan-delay</strong> and <strong>—min-hostgroup</strong><br />
<strong>-T5</strong> is balls to the wall and <strong>–T0</strong> means you never want it to finish&#8230;</p>
<p>A safe choice is <strong>–T3</strong> (the default) but again you will likely want to use <strong>-T4</strong> to save time.</p>
<p><strong>Top Heavy Servers</strong><br />
Scanning for every in-scope IP Address plus 65,535 port combinations to gather an inventory of live hosts could last longer than your contract engagement. You may need to pick 20 to 30 ports. In a perfect scenario, at least one of these ports will be open on every server that you need to find. Use <strong>-p</strong> to specify destination ports; a good starting list are the following UDP (<strong>U:</strong>) and TCP (<strong>T:</strong>) ports:<br />
<strong>-p U:53,111,137,T:21-25,80,135,139,443,445,3389,8080</strong></p>
<p>If your client has no idea what services they expect to find on their network, you now have permission to cry like a baby because they will have problems with your report regardless of what you find. T-T<br />
All seriousness aside, thanks to Fydor’s Internet mapping project I mentioned earlier, you can just substitute the defined list with Fydor’s results by adding:<br />
<strong>&#8211;top-ports 30 </strong> (where 30 is the number of ports you want to scan)</p>
<p><strong>I Know That Look&#8230;<br />
</strong>nmap is more than just a simple inventory scanner. It can also guess what the target operating system and it&#8217;s network accessible service names and versions are. It does this by looking at distinguishing features of a packet or connection (such as what the starting TTL value is or how it responds to an unsolicited RST packet sent to a closed port.) This technique is referred to as fingerprinting. If nmap is unsure about a target host, it will guess (and tell you as much) and if it is completely baffled it will politely ask you to submit a fingerprint to add to the nmap database along with what you determine the target to be (by other means.)</p>
<p><strong>-sV</strong> will attempt to match the name and version of each open network service that is discovered<br />
<strong>-O</strong> will attempt to match the operating system of target boxen</p>
<p><strong>New Implants</strong><br />
nmap has received some really neat upgrades since version 4.something such as the ability to run lua scripts during the scan process. An example:<br />
<strong>&#8211;script </strong><strong>smb-os-discovery</strong></p>
<p>Make sure you are using the latest scripts by running:<br />
<strong>nmap —script-updatedb</strong></p>
<p><strong>Putting it all Together</strong><strong><br />
</strong></p>
<p>Thus far, we have compiled the following nmap command:</p>
<p><strong>nmap –iL inscope.list —excludefile exclude.list –v –sS –n —reason –T4 —script </strong><strong>smb-os-discovery</strong><strong> –sV –O —top-ports 30</strong></p>
<p>Sweep 1: I highly recommend swapping out <strong>–sS</strong> with <strong>–sL</strong> before you run your final scan. Why? A list of hosts to be scanned is a great piece of information to include in your report to PROVE that you only touched systems that you were expressly authorized to touch. Yes, this is just feeding back information they originally provided you&#8230; Hey, this is why consultants get paid the big bucks right?</p>
<p>Sweep 2: swap out <strong>–sS</strong> with <strong>–sP</strong> to icmp scan for which hosts you are able to receive echo replies from. Consider sending this list to your client immediately to verify that your are in the ballpark prior to the &#8220;real&#8221; scan. Obviously, this can be skipped if a networking device (such as a router or firewall) is dropping all your icmp echo request probes.</p>
<p>Sweep 3: <strong>-sS</strong> for the win! This is your traditional half open SYN scan. Nmap will send out a TCP SYN packet to each IP address and port combination as you specified to determine if it returns a SYN+ACK packet, indicating an open port. If it doesn&#8217;t hear back from the target, it&#8217;s assumed to be closed. (Yes, this is where the increased timing option pays off.)</p>
<p><strong>Wrapping Up</strong></p>
<p>If you are running up against an IPS blocking your aggressive scans by sending you RSTs or dropping your packets silently, try setting <strong>–f </strong>to fragment (split up) your packets to a smaller portion of their maximum transmission unit (MTU) or size. This may just be enough to fool (or crash) that pesky IPS into letting them all pass on their merry way for total target box domination. Make sure you have permission to try this from the client first&#8230;</p>
<p>This was intended to be a pick up and go article and not dig too deep into how network scanning works nor the intricacies of nmap. If you want WAY more info than I&#8217;ve provided here, I highly recommend buying <a href="http://www.amazon.com/gp/product/0979958717?ie=UTF8&amp;tag=binpoint-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0979958717">Fydor&#8217;s nmap book</a>. If you can&#8217;t spare a few bucks, it&#8217;s also <a href="http://nmap.org/book/nse.html">available online for free</a>.</p>
<p><em>Stay tuned for Part 2, which covers <a href="http://www.openvas.org/">OpenVAS</a>.</em></p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2008/06/thousands-of-sacrificial-lambs/' rel='bookmark' title='Permanent Link: Thousands of Sacrificial Lambs'>Thousands of Sacrificial Lambs</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
<li><a href='http://binpoint.com/2008/06/detectin-bad-tcp-sessions/' rel='bookmark' title='Permanent Link: Detecting bad TCP sessions'>Detecting bad TCP sessions</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2010/04/network-scanning-with-nmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Harbinger of Doomsday Malware</title>
		<link>http://binpoint.com/2010/02/iphone-harbinger-of-doomsday-malware/</link>
		<comments>http://binpoint.com/2010/02/iphone-harbinger-of-doomsday-malware/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 02:06:31 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Information Security]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[doomsday]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[WindowsXP]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=602</guid>
		<description><![CDATA[The security guy voice in my subconscious has been yelling at me to pay attention to the iPhone for a while now and that’s been bothering me. As Information Security professionals must focus on threats they are charged to defend against, it’s beneficial for them to acknowledge what the attack vectors of tomorrow might be [...]


Related posts:<ol><li><a href='http://binpoint.com/2009/12/a-romance-flowchart-when-is-it-inappropriate-to-use-your-iphone/' rel='bookmark' title='Permanent Link: A Romance Flowchart: When Is It Inappropriate to Use Your iPhone?'>A Romance Flowchart: When Is It Inappropriate to Use Your iPhone?</a></li>
<li><a href='http://binpoint.com/2008/06/pretty-graphs-for-the-malware-detection-ftw/' rel='bookmark' title='Permanent Link: Pretty graphs for the malware detection (ftw?)'>Pretty graphs for the malware detection (ftw?)</a></li>
<li><a href='http://binpoint.com/2008/06/windows-tune-up/' rel='bookmark' title='Permanent Link: Windows Tune Up! (type: Auto-magic)'>Windows Tune Up! (type: Auto-magic)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The security guy voice in my subconscious has been yelling at me to pay attention to the iPhone for a while now and that’s been bothering me.</p>
<p>As Information Security professionals must focus on threats they are charged to defend against, it’s beneficial for them to acknowledge what the attack vectors of tomorrow might be to better prepare for them today.<br />
<br />
<strong>Proposition: <span style="text-decoration: underline;"><em>iPhone user? You&#8217;re pwned</em></span>.</strong></p>
<p></p>
<p>Yes, that is quite a blanket statement. Give me a minute to back up that statement with my evidence.</p>
<p>Let’s start with motivations:</p>
<ul>
<li> Authors of malware (malicious software) do so to make money by capturing your resources (bandwidth or storage)</li>
<li> Malware programmers will choose a target based on the amount of bang for their buck (or time)</li>
</ul>
<p>Some statistics:</p>
<div id="attachment_607" class="wp-caption alignnone" style="width: 404px"><img class="size-full wp-image-607" title="iphone-sales-first-eleven-quarters" src="http://binpoint.com/wp-content/uploads/2010/02/iphone-sales-first-eleven-quarters.png" alt="" width="394" height="303" /><p class="wp-caption-text">44 million Apple iPhones have been sold to date (and that&#39;s not counting iPod Touches)</p></div>
<div id="attachment_605" class="wp-caption alignnone" style="width: 470px"><img class="size-full wp-image-605" title="first-three-years-iphone-ipod-touch-windows-xp-sales" src="http://binpoint.com/wp-content/uploads/2010/02/first-three-years-iphone-ipod-touch-windows-xp-sales.png" alt="" width="460" height="332" /><p class="wp-caption-text">iPod Touch sales now outpace iPhone sales, so let&#39;s assume a one for one iPod Touch sold for each iPhone sold to date. Windows XP was released in 2001 and hit 153 million units within the first 3 years of it&#39;s release</p></div><br />
<br />
<strong>Conclusion 1: <span style="text-decoration: underline;">iPhone OS is as popular as Windows XP was 2001-2003</span> </strong><br />
<br />
So far, we’ve established that the iPhone &amp; Mac platforms are a realistic target. Let’s take a look at what vulnerabilities on iPhones look like.  I have assembled a list of some of the bad vulnerabilities that have been found and patched to date. Keep in mind that these have all been discovered since the iPhone was announced in summer 2007.</p>
<p>Arbitrary remote code execution:<br />
• Receiving a maliciously crafted SMS message<br />
• Playing a maliciously crafted mp4, AAC or MP3 audio file<br />
• Visiting a maliciously crafted website<br />
• Viewing a maliciously crafted PNG or TIFF image<br />
• Viewing a maliciously crafted MPEG-4 video<br />
• Opening a maliciously crafted PDF file<br />
• Accessing a maliciously crafted FTP server</p>
<p>Interception &amp; redirection:<br />
• Susceptible to DNS cache poisoning and may return forged information<br />
• Predictable TCP initial sequence numbers may lead to TCP spoofing or session hijacking<br />
• Look-alike characters in a URL could be used to masquerade a website<br />
• A remote attacker may cause a device reset (via crafted ICMP Ping)</p>
<p>Breach of Privacy:<br />
• Apps can read another Apps data<br />
• User names and passwords in URLs may be disclosed to linked sites</p>
<p>Unauthorized Local access:<br />
• An unauthorized user may bypass the Passcode Lock and launch iPhone applications via Emergency Call<br />
• Deleted email messages may still be visible through a Spotlight search<br />
• Passwords may be made visible via undo<br />
• A person with physical access to a locked device may be able to access the user&#8217;s data</p>
<p>Now here comes the real shocker&#8230;</p>
<p><div id="attachment_608" class="wp-caption alignnone" style="width: 568px"><img class="size-full wp-image-608    " title="first-3-years-of-iphone-and-windows-xp-patches" src="http://binpoint.com/wp-content/uploads/2010/02/first-3-years-of-iphone-and-windows-xp-patches.png" alt="" width="558" height="356" /><p class="wp-caption-text">In nearly 3 years of availability, the Apple iPhone OS has had 104 security vulnerabilities identified and patched,  while Microsoft Windows XP had 86 security vulnerabilities patched in it’s first 3 years</p></div>
<p>In the same amount of time after release, the iPhone had 18 more security patches than Windows XP did. To skew the number even further, 27 (twenty seven!) of those Windows XP Patches were replaced by another patch so technically there were only 59 patches for Windows XP in the first three years.<br />
<br />
<strong>Conclusion 2: <span style="text-decoration: underline;">The iPhone is a more vulnerable target than infant Windows XP was (pre SP2!)</span></strong><br />
<br />
Finally, let’s review what sensitive personal information is stored on these devices and is at risk of being leaked.</p>
<ul>
<li> GPS Location</li>
<li> Safari History</li>
<li> AutoComplete data</li>
<li> Call History</li>
<li> YouTube History</li>
<li> Emails</li>
<li> Text Messages</li>
<li> Address Book</li>
<li> Pictures</li>
<li> Name</li>
<li> Phone Number</li>
<li> Birthday</li>
</ul>
<p>
<strong>Conclusion 3: <span style="text-decoration: underline;">the iPhone is a sexy, well-organized, treasure trove of personal information, ripe for theft or abuse</span><br />
</strong><br />
<br />
This would suggest that the early iPhone 0-day attacks will be spear phishing high profile users such as celebrities, business leaders or government officials.<br />
<br />
What do you think?<br />
</p>
<p>If you found this article useful, please show it by <a href="http://binpoint.com/feed/">following my blog</a>.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.191.92" /><p>Your email:<br /><input type="text" name="email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" value="Unsubscribe" /></p></form>

<p><a href="http://support.apple.com/kb/HT1263" target="_blank">source</a> <a href="http://support.apple.com/kb/HT1222" target="_blank">source</a> <a href="http://www.microsoft.com/technet/security/current.aspx" target="_blank">source</a> <a href="http://www.apple.com/pr/library/2009/10/19results.html" target="_blank">source</a></p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2009/12/a-romance-flowchart-when-is-it-inappropriate-to-use-your-iphone/' rel='bookmark' title='Permanent Link: A Romance Flowchart: When Is It Inappropriate to Use Your iPhone?'>A Romance Flowchart: When Is It Inappropriate to Use Your iPhone?</a></li>
<li><a href='http://binpoint.com/2008/06/pretty-graphs-for-the-malware-detection-ftw/' rel='bookmark' title='Permanent Link: Pretty graphs for the malware detection (ftw?)'>Pretty graphs for the malware detection (ftw?)</a></li>
<li><a href='http://binpoint.com/2008/06/windows-tune-up/' rel='bookmark' title='Permanent Link: Windows Tune Up! (type: Auto-magic)'>Windows Tune Up! (type: Auto-magic)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2010/02/iphone-harbinger-of-doomsday-malware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John the Ripper Password Cracking Now Obsolete</title>
		<link>http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/</link>
		<comments>http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 16:10:11 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[brute force]]></category>
		<category><![CDATA[gpu password]]></category>
		<category><![CDATA[john the ripper]]></category>
		<category><![CDATA[password cracking]]></category>

		<guid isPermaLink="false">http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/</guid>
		<description><![CDATA[The days of using John the Ripper are numbered. Soon, you will perform your password cracking and password strength audits using security tools that utilize the GPU cores in high performance gaming video cards. Why? Gaming video cards are designed to churn through metric tons of floating point operations per second; hence the common metric [...]


Related posts:<ol><li><a href='http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/' rel='bookmark' title='Permanent Link: Quick note on sorting john.pot files'>Quick note on sorting john.pot files</a></li>
<li><a href='http://binpoint.com/2009/11/strong-contender-for-worst-idea-of-the-year-adobe-flash-10-1-add-hardware-video-acceleration/' rel='bookmark' title='Permanent Link: Strong Contender for Worst Idea of the Year: Adobe Flash 10.1 Adds Hardware Video Acceleration'>Strong Contender for Worst Idea of the Year: Adobe Flash 10.1 Adds Hardware Video Acceleration</a></li>
<li><a href='http://binpoint.com/2008/05/fedora-9-review-mini-edition/' rel='bookmark' title='Permanent Link: Fedora 9 Review (Mini-Edition)'>Fedora 9 Review (Mini-Edition)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-565" title="jack" src="http://binpoint.com/wp-content/uploads/2010/02/jack.png" alt="" width="209" height="169" /></p>
<p>The days of using John the Ripper are numbered. Soon, you will perform your password cracking and password strength audits using security tools that utilize the GPU cores in high performance gaming video cards.</p>
<p>Why?</p>
<p>Gaming video cards are designed to churn through metric tons of floating point operations per second; hence the common metric gflops (giga floating point operations per second.) To accomplish this, modern boards come with dozens to hundreds of GPU cores which can run data crunching tasks in parallel.</p>
<p>An astute reader would point out that password hashing algorithms are devised to run on CPU cores which excel in integer operations, not floating point operations.</p>
<p>Luckily for us security folks, the number of processing units on the gaming video boards are so high, they can provide orders of magnitude improved performance versus traditional CPU based password crackers.</p>
<p>Can you recommend any GPU based password cracking tools that could replace JTR today?</p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/' rel='bookmark' title='Permanent Link: Quick note on sorting john.pot files'>Quick note on sorting john.pot files</a></li>
<li><a href='http://binpoint.com/2009/11/strong-contender-for-worst-idea-of-the-year-adobe-flash-10-1-add-hardware-video-acceleration/' rel='bookmark' title='Permanent Link: Strong Contender for Worst Idea of the Year: Adobe Flash 10.1 Adds Hardware Video Acceleration'>Strong Contender for Worst Idea of the Year: Adobe Flash 10.1 Adds Hardware Video Acceleration</a></li>
<li><a href='http://binpoint.com/2008/05/fedora-9-review-mini-edition/' rel='bookmark' title='Permanent Link: Fedora 9 Review (Mini-Edition)'>Fedora 9 Review (Mini-Edition)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA</title>
		<link>http://binpoint.com/2009/12/sans-502-get-your-giac-gcfw-cert-in-burbank-ca/</link>
		<comments>http://binpoint.com/2009/12/sans-502-get-your-giac-gcfw-cert-in-burbank-ca/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 00:36:31 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Burbank]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[GCFW]]></category>
		<category><![CDATA[SANS]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=522</guid>
		<description><![CDATA[SANS 502 &#8211; Firewalls, Perimeter Protection &#38; VPNs is an undiscovered gem in the SANS armada of training offerings. It&#8217;s an excellent overview of technologies and concepts that any entry level Information Security professional going into a corporate environment needs. While it may not be as sexy as the penetration testing classes SANS also offers, [...]


Related posts:<ol><li><a href='http://binpoint.com/2009/11/metasploit-framework-3-3-released-today/' rel='bookmark' title='Permanent Link: Metasploit Framework 3.3 Released Today'>Metasploit Framework 3.3 Released Today</a></li>
<li><a href='http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/' rel='bookmark' title='Permanent Link: Quick note on sorting john.pot files'>Quick note on sorting john.pot files</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sans.org/info/45104"><img class="aligncenter size-medium wp-image-523" title="GCFW_Silver" src="http://binpoint.com/wp-content/uploads/2009/12/GCFW_Silver-300x298.png" alt="GCFW_Silver" width="300" height="298" /></a> </p>
<p><strong>SANS 502 &#8211; Firewalls, Perimeter Protection &amp; VPNs</strong> is an undiscovered gem in the SANS armada of training offerings. It&#8217;s an excellent overview of technologies and concepts that any entry level Information Security professional going into a corporate environment needs. While it may not be as sexy as the penetration testing classes SANS also offers, it definitely still holds value for anyone who plans (or ends up) responsible for protecting a corporate network environment. This class corresponds to the GIAC GCFW certification. Personal comments aside, here&#8217;s the flyer SANS has just sent out:</p>
<hr />Please join in me Burbank, CA starting on February 11 for SANS Security 502: Firewalls, Perimeter Protection &amp; VPNs. Experience this local class and SANS award winning security training first hand in the popular Mentor format! For complete course details and registration information, please click on <a href="http://www.sans.org/info/45104">http://www.sans.org/info/45104</a>.</p>
<p>Register by December 15th and receive $500 towards any single course* in 2010. Enter in the discount code &#8220;BYE09&#8243; in step 3, group discount code.  Instructions to redeem your $500 award will be sent to you upon receipt of your paid registration.</p>
<p>Benefits of the Mentor Program <a href="https://www.sans.org/mentor/about.php">https://www.sans.org/mentor/about.php</a> are:</p>
<ul>
<li>Save 25% off the regular SANS tuition fee with the ability to save even more with group discounts (see below)</li>
<li>No need to spend money on travel outside of your local area</li>
<li>Small, locally run 10 week classes utilizing the same great SANS courseware presented at larger conferences</li>
<li>Evening classes do not conflict with daytime commitments</li>
<li>Direct, hands on contact with a qualified Mentor</li>
</ul>
<p>The Mentor program reviews the courseware at a slower pace giving the student more time to learn the material. Students can apply the class material the next day when they return to the office and bring questions back to the Mentor each week!</p>
<p><em>&#8220;The SANS Mentor program is a great value. It allowed a learning environment that was local, with a knowledgeable instructor, and fellow like minded individuals.  All of this without having to travel!&#8221;</em><br />
- Sean Nixon &#8211; Fidelity National Information Service</p>
<p>EXTRA TUITION DISCOUNTS are available for 2 or more students who register from the same organization. To obtain the Group Discount fee for this course, please contact Heather Kohls directly at mentor@sans.org PRIOR to registering with your company name and contact information of those wishing to attend.</p>
<p>Discover the quality training only The SANS Institute has to offer and register today!  Once again, for complete course details, course outline and to register, visit <a href="http://www.sans.org/info/45104">http://www.sans.org/info/45104</a>.</p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2009/11/metasploit-framework-3-3-released-today/' rel='bookmark' title='Permanent Link: Metasploit Framework 3.3 Released Today'>Metasploit Framework 3.3 Released Today</a></li>
<li><a href='http://binpoint.com/2010/06/quick-note-on-sorting-john-pot-files/' rel='bookmark' title='Permanent Link: Quick note on sorting john.pot files'>Quick note on sorting john.pot files</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/12/sans-502-get-your-giac-gcfw-cert-in-burbank-ca/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Metasploit Framework 3.3 Released Today</title>
		<link>http://binpoint.com/2009/11/metasploit-framework-3-3-released-today/</link>
		<comments>http://binpoint.com/2009/11/metasploit-framework-3-3-released-today/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:24:22 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=505</guid>
		<description><![CDATA[The Metasploit Framework 3.3 was released today (Tue, Nov 17th.) Tons of bug fixes and more exploits for us to play pentest with! (via SANS Internet Storm Center.) Related posts:Fedora 10 Released OS X 10.5.5 Update Released SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA


Related posts:<ol><li><a href='http://binpoint.com/2008/11/fedora-10-released/' rel='bookmark' title='Permanent Link: Fedora 10 Released'>Fedora 10 Released</a></li>
<li><a href='http://binpoint.com/2008/09/os-x-1055-update-released/' rel='bookmark' title='Permanent Link: OS X 10.5.5 Update Released'>OS X 10.5.5 Update Released</a></li>
<li><a href='http://binpoint.com/2009/12/sans-502-get-your-giac-gcfw-cert-in-burbank-ca/' rel='bookmark' title='Permanent Link: SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA'>SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img src="http://binpoint.com/wp-content/uploads/2009/11/metasploit_hax_small.jpg" alt="metasploit_hax_small.jpg" border="0" width="300" height="215" /></div>
<p>The <a href="http://www.metasploit.com/framework/download/">Metasploit Framework 3.3</a> was released today (Tue, Nov 17th.)</p>
<p><a href="http://www.metasploit.com/redmine/projects/framework/wiki/Release_Notes_33">Tons of bug fixes and more exploits</a> for us to <strike>play</strike> pentest with!</p>
<p>(via <a href="http://isc.sans.org">SANS Internet Storm Center</a>.)</p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2008/11/fedora-10-released/' rel='bookmark' title='Permanent Link: Fedora 10 Released'>Fedora 10 Released</a></li>
<li><a href='http://binpoint.com/2008/09/os-x-1055-update-released/' rel='bookmark' title='Permanent Link: OS X 10.5.5 Update Released'>OS X 10.5.5 Update Released</a></li>
<li><a href='http://binpoint.com/2009/12/sans-502-get-your-giac-gcfw-cert-in-burbank-ca/' rel='bookmark' title='Permanent Link: SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA'>SANS 502 &#8211; Get Your GIAC GCFW Cert in Burbank, CA</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/11/metasploit-framework-3-3-released-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strong Contender for Worst Idea of the Year: Adobe Flash 10.1 Adds Hardware Video Acceleration</title>
		<link>http://binpoint.com/2009/11/strong-contender-for-worst-idea-of-the-year-adobe-flash-10-1-add-hardware-video-acceleration/</link>
		<comments>http://binpoint.com/2009/11/strong-contender-for-worst-idea-of-the-year-adobe-flash-10-1-add-hardware-video-acceleration/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:14:39 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=497</guid>
		<description><![CDATA[I&#8217;m not claiming to be an expert on how Macromedia / Adobe Flash is bolted together nor it&#8217;s security architecture, however adding an API to allow any website to stream HD video to directly to the video card sounds like a terrible idea on the level of badness equal to ActiveX. Makes you wonder what [...]


Related posts:<ol><li><a href='http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/' rel='bookmark' title='Permanent Link: John the Ripper Password Cracking Now Obsolete'>John the Ripper Password Cracking Now Obsolete</a></li>
<li><a href='http://binpoint.com/2009/11/motor-trend-car-of-the-year-2010-ford-fusion/' rel='bookmark' title='Permanent Link: Motor Trend Car Of The Year: 2010 Ford Fusion'>Motor Trend Car Of The Year: 2010 Ford Fusion</a></li>
<li><a href='http://binpoint.com/2008/05/fedora-9-review-mini-edition/' rel='bookmark' title='Permanent Link: Fedora 9 Review (Mini-Edition)'>Fedora 9 Review (Mini-Edition)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img src="http://binpoint.com/wp-content/uploads/2009/11/adobe_flash_virus.png" alt="adobe_flash_virus.png" border="0" width="340" height="340" /></div>
<p>I&#8217;m not claiming to be an expert on how Macromedia / Adobe Flash is bolted together nor it&#8217;s security architecture, however adding an API to allow any website to stream HD video to directly to the video card sounds like a terrible idea on the level of badness equal to <a href="http://www.google.com/search?q=activex+vulnerabilities">ActiveX</a>. Makes you wonder what the QA cycle for video card drivers is like.</p>
<p>Luckily, Adobe has only announced support of <strike>this new reason to keep all us security folks employed</strike> HD Video Acceleration for Microsoft operating systems at this time.</p>
<p>(Feature announcement via <a href="http://lifehacker.com/5406453/adobe-flash-101-beta-brings-hardware-acceleration-to-web-videos">Lifehacker</a>.)</p>
<p>Oh, and here&#8217;s some <a href="http://www.anandtech.com/video/showdoc.aspx?i=3678">performance benchmarks from anandtech</a></p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2010/02/john-the-ripper-password-cracking-now-obsolete/' rel='bookmark' title='Permanent Link: John the Ripper Password Cracking Now Obsolete'>John the Ripper Password Cracking Now Obsolete</a></li>
<li><a href='http://binpoint.com/2009/11/motor-trend-car-of-the-year-2010-ford-fusion/' rel='bookmark' title='Permanent Link: Motor Trend Car Of The Year: 2010 Ford Fusion'>Motor Trend Car Of The Year: 2010 Ford Fusion</a></li>
<li><a href='http://binpoint.com/2008/05/fedora-9-review-mini-edition/' rel='bookmark' title='Permanent Link: Fedora 9 Review (Mini-Edition)'>Fedora 9 Review (Mini-Edition)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/11/strong-contender-for-worst-idea-of-the-year-adobe-flash-10-1-add-hardware-video-acceleration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Risks to Web Applications</title>
		<link>http://binpoint.com/2009/11/top-10-risks-to-web-applications/</link>
		<comments>http://binpoint.com/2009/11/top-10-risks-to-web-applications/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 01:01:01 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[risks]]></category>
		<category><![CDATA[top 10]]></category>
		<category><![CDATA[webapp]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=475</guid>
		<description><![CDATA[OWASP has published a release-candidate report of the top 10 risks they foresee to web applications in 2010. Summary: Injection Cross Site Scripting (XSS) Broken Authentication and Session Management Insecure Direct Object References Cross Site Request Forgery (CSRF) Security Misconfiguration Failure to Restrict URL Access Unvalidated Redirects and Forwards Insecure Cryptographic Storage Insufficient Transport Layer Protection Related posts:Minority Report Computer is Real Spam is unpredictable Motor Trend Car Of The Year: 2010 Ford Fusion


Related posts:<ol><li><a href='http://binpoint.com/2008/11/minority-report-computer-is-real/' rel='bookmark' title='Permanent Link: Minority Report Computer is Real'>Minority Report Computer is Real</a></li>
<li><a href='http://binpoint.com/2008/11/spam-is-unpredictable/' rel='bookmark' title='Permanent Link: Spam is unpredictable'>Spam is unpredictable</a></li>
<li><a href='http://binpoint.com/2009/11/motor-trend-car-of-the-year-2010-ford-fusion/' rel='bookmark' title='Permanent Link: Motor Trend Car Of The Year: 2010 Ford Fusion'>Motor Trend Car Of The Year: 2010 Ford Fusion</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Calibri, Verdana, Helvetica, Arial; font-size: 15px;"><a href="http://www.owasp.org/index.php/Category:OWASP_Top_Ten_Project" target="_blank">OWASP has published a release-candidate report of the top 10 risks they foresee to web applications in 2010</a>.</span></p>
<p><span style="font-family: Calibri, Verdana, Helvetica, Arial; font-size: 15px;">Summary:</span></p>
<p><span style="font-family: Calibri, Verdana, Helvetica, Arial;"> </span></p>
<ol>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; "><span style="font-size: 12pt;"><span style="font-family: 'Calibri Bold';">Injection</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Cross Site Scripting (XSS)</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Broken Authentication and Session Management</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Insecure Direct Object References</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Cross Site Request Forgery (CSRF)</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Security Misconfiguration</span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Failure to Restrict URL Access</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Unvalidated</span><span style="font-family: Helvetica, Verdana, Arial;"> </span><span style="font-family: 'Calibri Bold';">Redirects and Forwards</span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Insecure Cryptographic Storage</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
<li><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 16px; "><span style="font-family: 'Calibri Bold';">Insufficient Transport Layer Protection</span><span style="font-family: Helvetica, Verdana, Arial;"> </span></span></li>
</ol>


<p>Related posts:<ol><li><a href='http://binpoint.com/2008/11/minority-report-computer-is-real/' rel='bookmark' title='Permanent Link: Minority Report Computer is Real'>Minority Report Computer is Real</a></li>
<li><a href='http://binpoint.com/2008/11/spam-is-unpredictable/' rel='bookmark' title='Permanent Link: Spam is unpredictable'>Spam is unpredictable</a></li>
<li><a href='http://binpoint.com/2009/11/motor-trend-car-of-the-year-2010-ford-fusion/' rel='bookmark' title='Permanent Link: Motor Trend Car Of The Year: 2010 Ford Fusion'>Motor Trend Car Of The Year: 2010 Ford Fusion</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/11/top-10-risks-to-web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting Anti-Virus Software for Home</title>
		<link>http://binpoint.com/2009/09/selecting-anti-virus-software-for-home/</link>
		<comments>http://binpoint.com/2009/09/selecting-anti-virus-software-for-home/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:38:05 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=444</guid>
		<description><![CDATA[&#8220;I purchased X Anti-Virus for my Home PC last year and unimpressed, let it expire. Which anti-virus product should I purchase now?&#8221; I get asked this question a lot. I provide below how I typically answer it, hoping that someone out there will find it useful as a template for your responses to similar questions to [...]


Related posts:<ol><li><a href='http://binpoint.com/2008/11/free-osx-tools-i-use-everyday/' rel='bookmark' title='Permanent Link: Free OSX Tools I Use Everyday'>Free OSX Tools I Use Everyday</a></li>
<li><a href='http://binpoint.com/2009/03/computer-security-at-hotels/' rel='bookmark' title='Permanent Link: Computer Security At Hotels'>Computer Security At Hotels</a></li>
<li><a href='http://binpoint.com/2009/11/7-reasons-why-you-should-not-eat-breakfast/' rel='bookmark' title='Permanent Link: 7 Reasons Why You Should NOT Eat Breakfast'>7 Reasons Why You Should NOT Eat Breakfast</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;I purchased X Anti-Virus for my Home PC last year and unimpressed, let it expire. Which anti-virus product should I purchase now?&#8221;</em></p>
<address></address>
<p>I get asked this question a lot. I provide below how I typically answer it, hoping that someone out there will find it useful as a template for your responses to similar questions to which you must respond.</p>
<p><span id="more-444"></span></p>
<p><strong>BEGIN EMAIL REPLY:</strong></p>
<p>Hi So and So,</p>
<p>First of all, great question.</p>
<p><em><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-style: normal; line-height: 18px; font-size: 12px; white-space: pre;">W</span><span style="font-style: normal;">hile I typically recommend home users to select security software products from well known commercial vendors, most of these are large companies that structure their pricing model to force you to repurchase their new version every year instead of simply renewing your subscription. As a consolation prize, you get any new features added each year.</span></em></p>
<p>Your customer service experience (or lack thereof) is sadly typical for large software companies; the best way to avoid outsourced call-center style support is to choose a boutique software company that hasn’t a large enough customer base to decide outsourcing customer support as viable. If customer support isn&#8217;t something you plan to use and commercial security software feels too expensive, there are a number of companies that release free home-use only versions of their software.</p>
<p>Finally, as far as how to select a new anti-virus solution, I unfortunately put a lot of trust into tech review websites such as <a title="CNET" href="http://www.cnet.com" target="_blank">CNET</a>. When selecting products, typically user reviews for software as complicated as anti-virus provide little insight to how good it really is as experiences vary from person to person. With a tech journal, you at least know they sampled many products. The downside is they only get to it every year or two, so the ratings may be based on last years version.</p>
<p>That said, here’s a <a href="http://www.cnet.com/topic-reviews/antivirus.html?tag=lia;lcol" target="_blank">link to CNET&#8217;s Anti-Virus review page</a> as a starting point.</p>
<p>Here is a <a href="http://download.cnet.com/windows/antivirus-software/?tag=mncol%3Bsort&amp;rpp=10&amp;sort=editorsRating+asc" target="_blank">link to CNET&#8217;s top rated Anti-Virus software</a> which includes free home-use products.</p>
<p>Hope that helps! Happy hunting.</p>
<p>Regards,<br />
Tom</p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2008/11/free-osx-tools-i-use-everyday/' rel='bookmark' title='Permanent Link: Free OSX Tools I Use Everyday'>Free OSX Tools I Use Everyday</a></li>
<li><a href='http://binpoint.com/2009/03/computer-security-at-hotels/' rel='bookmark' title='Permanent Link: Computer Security At Hotels'>Computer Security At Hotels</a></li>
<li><a href='http://binpoint.com/2009/11/7-reasons-why-you-should-not-eat-breakfast/' rel='bookmark' title='Permanent Link: 7 Reasons Why You Should NOT Eat Breakfast'>7 Reasons Why You Should NOT Eat Breakfast</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/09/selecting-anti-virus-software-for-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X10 Smarthome Security</title>
		<link>http://binpoint.com/2009/03/x10-smarthome-security/</link>
		<comments>http://binpoint.com/2009/03/x10-smarthome-security/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:42:20 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[EPIC FAIL]]></category>
		<category><![CDATA[Information Security]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://binpoint.com/?p=296</guid>
		<description><![CDATA[Have you considered installing smarthome tech? Read this first.


Related posts:<ol><li><a href='http://binpoint.com/2009/03/computer-security-at-hotels/' rel='bookmark' title='Permanent Link: Computer Security At Hotels'>Computer Security At Hotels</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
<li><a href='http://binpoint.com/2008/11/spam-is-unpredictable/' rel='bookmark' title='Permanent Link: Spam is unpredictable'>Spam is unpredictable</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-297" title="owned_house" src="http://binpoint.com/wp-content/uploads/2009/03/owned_house.jpg" alt="owned_house" width="300" height="199" /></p>
<p>I&#8217;ve been looking into home automation gadgets like <a href="http://en.wikipedia.org/wiki/X10_(industry_standard)" target="_blank">X10</a> for quite some time now. My interest in home automation revolves around reducing power consumption, recording anomalous events with cameras as evidence and because I&#8217;m super lazy and only like doing things once (but the right way) and want my CFL&#8217;s to flick on when I stumble in after a long day at work. I also want to build a DIY BIDS: Burglar Intrusion Detection System.</p>
<p>I even admit to visiting my local library and borrowing books on the subject solely with the goal of pimping the geek out of my home. So did I find true <a href="http://en.wikipedia.org/wiki/Trekkie" target="_blank">trekkie</a> bliss, full of motion sensing lighting, sexy sounding verbal computer readouts, intelligent power management and enhanced security?</p>
<p><span id="more-296"></span></p>
<p>Fat chance. In fact, I have to wonder if any information security kung fu has been applied to this home automation stuff at all.</p>
<p><a href="http://en.wikipedia.org/wiki/X10_(industry_standard)#Weak_points_and_limitations" target="_blank">Looking at this</a> list of criticisms makes Microsoft&#8217;s spotty past suddenly look peachy.</p>
<p>For those who haven&#8217;t looked into the X10 home automation technology, let me introduce you to a couple of it&#8217;s significant figures:</p>
<ul>
<li>256 &#8211; The number of unique addresses that are <em>possible </em>using X10</li>
<li>16 &#8211; Unique transmittable commands</li>
<li>4096 &#8211; Total number of <em>unique </em>packets</li>
<li>0.75 seconds &#8211; Time it takes to transmit one X10 packet</li>
<li>42 &#8211; Number of bikini clad girls on the <a href="http://www.x10.com" target="_blank">X10.com</a> website in GIF image glory (unnecessary!)</li>
<li>1 hr &#8211; Worst case total time it takes to transmit every unique X10 packet towards your neighbors house using a $9.99 X10 universal remote since both X10 RF or OtW transmissions may bleed to neighboring circuits</li>
</ul>
<p>For example: if two X10 devices (say your glass vibration sensor and motion detector) transmit within a second of each other, the message is garbled, bringing your <a href="http://www.securityfocus.com/archive/1/493387" target="_blank">Jura F90 Ethernet Coffee Pot</a> to boil right when that burglar breaks in to your computer room instead of the Star Trek: TNG Red Alert Klaxon you deny purchasing. Granted, X10 was developed in 1975 but Ethernet has been around nearly as long and it handles <a href="http://en.wikipedia.org/wiki/Ethernet#Collision_detected_procedure" target="_blank">transmission collisions</a> just fine. A little piece of mind regarding retransmissions would be nice.</p>
<p>What really worries me about deploying an X10 home is how easy it is to cause mayhem. It&#8217;s like guessing the IP Address of computers on a class C LAN (ie: 192.168.1.XXX.) How long will it take to transmit all commands to all X10 IDs using a perl script and a X10 enabled laptop? Really.</p>
<p>In addition, most of these devices do not have backup batteries and are knocked offline during blackouts. While I&#8217;m interested in +5-ing the geek of my home, I&#8217;m not going to do it because I value sleeping more. And also because my girl gave me &#8220;the look&#8221; when I brought it up.</p>
<p>So please, please, please <a href="mailto:tom@binpoint.com">let me know</a> if you know of any hacks to fix these issues or if you can suggest a better product.</p>
<p><em>P.S. Doesn&#8217;t it make you wonder about automobile remote entry systems? I wonder how long it </em><em>really takes to transmit every possible unlock code for every car manufacturer? What are your observations?</em></p>


<p>Related posts:<ol><li><a href='http://binpoint.com/2009/03/computer-security-at-hotels/' rel='bookmark' title='Permanent Link: Computer Security At Hotels'>Computer Security At Hotels</a></li>
<li><a href='http://binpoint.com/2008/06/writing-a-dns-sniffer/' rel='bookmark' title='Permanent Link: Writing a DNS sniffer'>Writing a DNS sniffer</a></li>
<li><a href='http://binpoint.com/2008/11/spam-is-unpredictable/' rel='bookmark' title='Permanent Link: Spam is unpredictable'>Spam is unpredictable</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://binpoint.com/2009/03/x10-smarthome-security/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
