<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>danielmiessler.com » Information Security</title>
	
	<link>http://danielmiessler.com</link>
	<description>grep understanding</description>
	<lastBuildDate>Sun, 13 Mar 2011 01:17:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/blog_informationsecurity" /><feedburner:info uri="blog_informationsecurity" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>blog_informationsecurity</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Bypassing a Web Proxy Using Chrome on OS X</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/2knznO2H9Ik/bypassing-a-web-proxy-using-chrome-on-os-x</link>
		<comments>http://danielmiessler.com/blog/bypassing-a-web-proxy-using-chrome-on-os-x#comments</comments>
		<pubDate>Sat, 12 Mar 2011 06:27:38 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/bypassing-a-web-proxy-using-chrome-on-os-x</guid>
		<description><![CDATA[It&#8217;s highly annoying when you are trying to read or download something at a client site only to be denied by their proxy. Luckily there&#8217;s a way around it that normally works, and here&#8217;s how to set it up in OS X or Linux. 1 Basically, you&#8217;re setting up an SSH tunnel between you and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center"><img width="300" height="300" src="http://danielmiessler.com/wp-content/uploads/2011/03/reroute.jpeg" alt="reroute" /></p>

<p>It&#8217;s highly annoying when you are trying to read or download something at a client site only to be denied by their proxy. Luckily there&#8217;s a way around it that normally works, and here&#8217;s how to set it up in OS X or Linux. <sup>1</sup></p>

<p>Basically, you&#8217;re setting up an SSH tunnel between you and your own SSH server on the Internet, and you&#8217;re opening a tunnel endpoint on your local system that will serve as the proxy address. Anything sent over that port will be shuttled over the tunnel&#8211;invisible to anyone in-between.</p>

<p>There are basically three steps for setup:</p>

<ol>
<li>Own an SSH server somewhere on the Internet (else, fail)</li>
<li>Set up your local proxy (which points to your SSH server)</li>
<li>Configure your browser to use that proxy</li>
</ol>

<p>Step one is out of scope here, so let&#8217;s move on to step 2.</p>

<h3>Listener Setup</h3>

<div id="commandentry"> 
<p class="commandcomment"># set up your SSH tunnel on the local system</p> 
<p class="command"><span class="first">ssh -ND</span> <span class="third">8082</span> <span class="fourth">user@yourdomain.com</span></p> 
</div>

<p class="post_note">The <code>-N</code> tells it not to execute remote commands, and the <code>-D</code> is where the *dynamic* port forwarding happens. The number listed there is the port that will listen locally that you&#8217;ll connect to to get out.</p>

<h3>Browser Setup</h3>

<p>My preferred browser is <a href="http://danielmiessler.com/categories/chrome" title="Chrome - danielmiessler.com">Google Chrome</a>, and my favorite extension for proxy modification is <a href="https://chrome.google.com/extensions/detail/caehdcpeofiiigpdhbabniblemipncjj" title="Proxy Switchy! - Google Chrome extension gallery">Proxy Switchy</a>. I set up Proxy Switchy to use just one protocol, which is Socks Version 4 as shown in the screenshot below:</p>

<p style="text-align:center"><img width="400" height="" src="http://danielmiessler.com/wp-content/uploads/2011/03/proxy_switchy.png" alt="proxy_switchy" /></p>

<h2>Fin</h2>

<p>That&#8217;s it. Activate that proxy from within Proxy Switchy and now you&#8217;re browsing the Internet over SSH. If it seems too good to be true, SSH to your server and use <code>tcpdump</code> to watch the HTTP leave your box. ::</p>

<p class="note">
<sup>1</sup> This guide assumes you have permission from the network owner to bypass the proxy.<br />
</p>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/searching-google-bookmarks-from-chromes-omnibox" rel="bookmark" class="crp_title">Searching Google Bookmarks from Chrome&#8217;s Omnibox</a></li><li><a href="http://danielmiessler.com/blog/5-chrome-features-worth-noticing" rel="bookmark" class="crp_title">5 Chrome Features Worth Noticing</a></li><li><a href="http://danielmiessler.com/blog/dear-google-why-cant-chrome-tell-me-if-a-site-has-an-rss-feed" rel="bookmark" class="crp_title">Dear Google, Why Can&#8217;t Chrome Tell Me if a Site Has an RSS Feed?</a></li><li><a href="http://danielmiessler.com/blog/building-an-asterisk-box-with-pbx-in-a-flash-and-tincantalk" rel="bookmark" class="crp_title">Building an Asterisk VOIP System Using PBXinaFlash and TinCanTalk</a></li><li><a href="http://danielmiessler.com/blog/browser-stats" rel="bookmark" class="crp_title">Browser Stats</a></li><li><a href="http://danielmiessler.com/blog/ttl-caging-how-to-fight-malware-using-reduced-ttl-values" rel="bookmark" class="crp_title">TTL Caging: How to Fight Malware Using Reduced TTL Values</a></li><li><a href="http://danielmiessler.com/blog/10-essential-firefox-plugins-for-the-infosec-professional" rel="bookmark" class="crp_title">10 Essential Firefox Plugins for the Infosec Professional</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/O46eSpN1xn_sI45lkTTUW7Ybrdw/0/da"><img src="http://feedads.g.doubleclick.net/~a/O46eSpN1xn_sI45lkTTUW7Ybrdw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O46eSpN1xn_sI45lkTTUW7Ybrdw/1/da"><img src="http://feedads.g.doubleclick.net/~a/O46eSpN1xn_sI45lkTTUW7Ybrdw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/2knznO2H9Ik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/bypassing-a-web-proxy-using-chrome-on-os-x/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/bypassing-a-web-proxy-using-chrome-on-os-x</feedburner:origLink></item>
		<item>
		<title>APT Being Co-opted by Marketing Types</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/cLqrgDMd3eQ/apt-being-co-opted-by-marketing-types</link>
		<comments>http://danielmiessler.com/blog/apt-being-co-opted-by-marketing-types#comments</comments>
		<pubDate>Sun, 06 Mar 2011 08:02:02 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/apt-being-co-opted-by-marketing-types</guid>
		<description><![CDATA[The co-opting of APT by the marketing folks have led to the point that people are classifying any malware, rootkit or bot as &#8220;APT&#8221;. &#160;Zeus is not APT, Aurora is not APT. &#160;APT is a level of threat, a description of the sophistication, patience and talent behind an attack. &#160;The attacks are targeted, typically involving [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote">The co-opting of APT by the marketing folks have led to the point that people are classifying any malware, rootkit or bot as &#8220;APT&#8221;. &nbsp;Zeus is not APT, Aurora is not APT. &nbsp;APT is a level of threat, a description of the sophistication, patience and talent behind an attack. &nbsp;The attacks are targeted, typically involving both an exploit and social engineering. &nbsp;Emails containing PDF exploits don&#8217;t get spammed to everyone in the&nbsp;organization, they are sent to key individuals with convincing messages. &nbsp;Bots aren&#8217;t your commercial, off-the-shelf variety. &nbsp;They are custom built, hard to detect and typically have multiple instances and functions so an initial remediation sweep will appear&nbsp;successful&nbsp;but miss the deeper, quieter processes.<p>    The attackers monitor the state and success of their attacks and channels. &nbsp;As one channel goes down, they activate another. &nbsp;If a node containing valuable data is cleaned, they&#8217;ll reinfect it from another computer. &nbsp;They know what they are doing.</p><p>    Or, to use my own, barbaric way of describing things:</p><p>    “APT: There are people smarter than you, they have more resources than you, and they are coming for you. Good luck with that.&#8221;</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://vrt-blog.snort.org/2010/03/apt-should-your-panties-be-in-bunch-and.html">vrt-blog.snort.org</a></div> <p>Damn sales people.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/apt-being-co-opted-by-marketing-types">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/fear-of-success-letters-to-a-friend" rel="bookmark" class="crp_title">Fear of Success &#8211; Letters to a Friend</a></li><li><a href="http://danielmiessler.com/blog/liberal-states-have-less-teen-pregnancy" rel="bookmark" class="crp_title">Liberal States Have Less Teen Pregnancy</a></li><li><a href="http://danielmiessler.com/blog/powerful-ideas-scott-adams" rel="bookmark" class="crp_title">Powerful Ideas | Scott Adams</a></li><li><a href="http://danielmiessler.com/blog/are-all-drug-reps-hot-the-last-psychiatrist" rel="bookmark" class="crp_title">Are All Drug Reps Hot? | The Last Psychiatrist</a></li><li><a href="http://danielmiessler.com/blog/overcoming-bias-nearfar-and-drunkenness" rel="bookmark" class="crp_title">Overcoming Bias : NearFar and Drunkenness</a></li><li><a href="http://danielmiessler.com/blog/pennies-cost-more-to-make-than-theyre-worth" rel="bookmark" class="crp_title">Pennies Cost More to Make Than They&#8217;re Worth</a></li><li><a href="http://danielmiessler.com/blog/pat-robertson-chile-earthquake-result-of-pact-with-chupacabra" rel="bookmark" class="crp_title">Pat Robertson: Chile Earthquake Result Of Pact With Chupacabra</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/6fBLYqTkfPl9Y3va6jkN3cJMmWY/0/da"><img src="http://feedads.g.doubleclick.net/~a/6fBLYqTkfPl9Y3va6jkN3cJMmWY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6fBLYqTkfPl9Y3va6jkN3cJMmWY/1/da"><img src="http://feedads.g.doubleclick.net/~a/6fBLYqTkfPl9Y3va6jkN3cJMmWY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/cLqrgDMd3eQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/apt-being-co-opted-by-marketing-types/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/apt-being-co-opted-by-marketing-types</feedburner:origLink></item>
		<item>
		<title>Google Buys Security Analytics Software Developer Zynamics</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/pfvjFSC5D3k/google-buys-security-analytics-software-developer-zynamics</link>
		<comments>http://danielmiessler.com/blog/google-buys-security-analytics-software-developer-zynamics#comments</comments>
		<pubDate>Sun, 06 Mar 2011 02:40:53 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/google-buys-security-analytics-software-developer-zynamics</guid>
		<description><![CDATA[Zynamics builds reverse engineering tools (BinDiff, BinNavi, VxClass, BinCrowd and PDF Dissector) for both offensive and defensive security that help find and prevent security vulnerabilities and issues within software applications. The startup’s tools are used to help understand security updates, identify FOSS code in binaries and identify flaws in closed-source software and build input to [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_medium_quote">Zynamics builds reverse engineering tools (BinDiff, BinNavi, VxClass, BinCrowd and PDF Dissector) for both offensive and defensive security that help find and prevent security vulnerabilities and issues within software applications. The startup’s tools are used to help understand security updates, identify FOSS code in binaries and  identify flaws in closed-source software and build input to trigger them. The company’s software will also cluster malicious software and generate signatures as well as share information remotely.</blockquote>    <div class="posterous_quote_citation">via <a href="http://techcrunch.com/2011/03/01/google-buys-security-analytics-startup-zynamics/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29">techcrunch.com</a></div> <p>A nice acquisition for Google.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/google-buys-security-analytics-software-devel">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/google-to-launch-amazon-s3-competitor-%e2%80%98google-storage%e2%80%99-at-io" rel="bookmark" class="crp_title">Google To Launch Amazon S3 Competitor ‘Google Storage’ At I/O</a></li><li><a href="http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch" rel="bookmark" class="crp_title">Google Eager to Find Vulnerabilities in Chrome | TechCrunch</a></li><li><a href="http://danielmiessler.com/blog/what-your-phone-says-about-you" rel="bookmark" class="crp_title">What Your Phone Says About You</a></li><li><a href="http://danielmiessler.com/blog/opentable-finds-an-opening-on-yelp-techcrunch" rel="bookmark" class="crp_title">OpenTable Finds An Opening On Yelp | TechCrunch</a></li><li><a href="http://danielmiessler.com/blog/the-iphone-is-helen-of-troy-techcrunch" rel="bookmark" class="crp_title">The iPhone Is Helen Of Troy | TechCrunch</a></li><li><a href="http://danielmiessler.com/blog/the-dangers-of-externalizing-knowledge-techcrunch" rel="bookmark" class="crp_title">The Dangers Of Externalizing Knowledge | TechCrunch</a></li><li><a href="http://danielmiessler.com/blog/google%e2%80%99s-awesomely-useful-and-obvious-%e2%80%9chighlight-to-search%e2%80%9d-chrome-extension" rel="bookmark" class="crp_title">Google’s Awesomely Useful And Obvious “Highlight To Search” Chrome Extension</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/89zG74VjyNTFNqCKT1V4bb7lSJ8/0/da"><img src="http://feedads.g.doubleclick.net/~a/89zG74VjyNTFNqCKT1V4bb7lSJ8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/89zG74VjyNTFNqCKT1V4bb7lSJ8/1/da"><img src="http://feedads.g.doubleclick.net/~a/89zG74VjyNTFNqCKT1V4bb7lSJ8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/pfvjFSC5D3k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/google-buys-security-analytics-software-developer-zynamics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/google-buys-security-analytics-software-developer-zynamics</feedburner:origLink></item>
		<item>
		<title>BSQLHacker</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/Xs1lOh7-Oh8/bsqlhacker</link>
		<comments>http://danielmiessler.com/blog/bsqlhacker#comments</comments>
		<pubDate>Fri, 25 Feb 2011 17:26:36 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/bsqlhacker</guid>
		<description><![CDATA[BSQL Hacker For Feature Requests, Feedback and Bug Reports use: http://bsql.uservoice.com/ See SQLIBench project to compare BSQLHacker with other SQL Injection tools. BSQL Hacker is an automated SQL Injection Framework / Tool designed to exploit SQL injection vulnerabilities virtually in any database. BSQL Hacker aims for experienced users as well as beginners who want to [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><h1>BSQL Hacker<a href="http://code.google.com/p/bsqlhacker#BSQL_Hacker" class="section_anchor"></a></h1><p><a href="http://labs.portcullis.co.uk" rel="nofollow"><img src="http://labs.portcullis.co.uk/mg/logo.gif?googlecode" /></a> </p><p><i>For Feature Requests, Feedback and Bug Reports use: <a href="http://bsql.uservoice.com/" rel="nofollow">http://bsql.uservoice.com/</a> </i> </p><p><strong>See <a href="http://code.google.com/p/sqlibench/" rel="nofollow">SQLIBench</a> project to compare BSQLHacker with other SQL Injection tools.</strong> </p><p>BSQL Hacker is an automated SQL Injection Framework / Tool designed to exploit SQL injection vulnerabilities virtually in any database. </p><p>BSQL Hacker aims for experienced users as well as beginners who want to automate SQL Injections (especially Blind SQL Injections).</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://code.google.com/p/bsqlhacker/">code.google.com</a></div> <p></p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/bsqlhacker">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/memcache-top-google-code" rel="bookmark" class="crp_title">memcache-top | Google Code</a></li><li><a href="http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie-2" rel="bookmark" class="crp_title">How Does One Explain SQL Injection to a Non-Techie?</a></li><li><a href="http://danielmiessler.com/blog/google-code-blog-with-the-new-google-latitude-api-build-latitude-and-location-into-your-app" rel="bookmark" class="crp_title">Google Code Blog: With the New Google Latitude API, Build Latitude and Location Into Your App</a></li><li><a href="http://danielmiessler.com/blog/google-code-blog-a-proposal-to-extend-the-dns-protocol" rel="bookmark" class="crp_title">Google Code Blog: A proposal to extend the DNS protocol</a></li><li><a href="http://danielmiessler.com/blog/body-browser-google-labs" rel="bookmark" class="crp_title">Body Browser | Google Labs</a></li><li><a href="http://danielmiessler.com/blog/google-to-launch-amazon-s3-competitor-%e2%80%98google-storage%e2%80%99-at-io" rel="bookmark" class="crp_title">Google To Launch Amazon S3 Competitor ‘Google Storage’ At I/O</a></li><li><a href="http://danielmiessler.com/blog/plan-9-gurus-at-google-now-use-macs-and-linux" rel="bookmark" class="crp_title">Plan 9 Gurus at Google Now Use Macs and Linux</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/GwfWhe1-JhiI3Ni86i_3TwcV8nQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/GwfWhe1-JhiI3Ni86i_3TwcV8nQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GwfWhe1-JhiI3Ni86i_3TwcV8nQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/GwfWhe1-JhiI3Ni86i_3TwcV8nQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/Xs1lOh7-Oh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/bsqlhacker/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/bsqlhacker</feedburner:origLink></item>
		<item>
		<title>Alex Hutton Talks VERIS</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/4Z1EbJUH2QM/alex-hutton-talks-veris</link>
		<comments>http://danielmiessler.com/blog/alex-hutton-talks-veris#comments</comments>
		<pubDate>Thu, 24 Feb 2011 06:41:54 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/alex-hutton-talks-veris</guid>
		<description><![CDATA[via youtube.com This is a friend of mine who lives risk. Great guy, great asset for infosec. :: Posted via email from danielmiessler.com &#124; posterous Related PostsSwords vs. ShadowsEuler&#8217;s DiskThe GiftJan-Ove Waldner ServesAndrei Arlovski &#8220;This is Sparta&#8221; KickThe Strange Powers of the Placebo EffectThe Merits of Reading]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <object height="417" width="500"><param name="movie" value="http://www.youtube.com/v/SoKtxmxZQiY&#038;hl=en&#038;fs=1" /><param name="wmode" value="window" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed allowfullscreen="true" src="http://www.youtube.com/v/SoKtxmxZQiY&#038;hl=en&#038;fs=1" wmode="opaque" allowscriptaccess="always" type="application/x-shockwave-flash" height="417" width="500"></embed></object>    <div class="posterous_quote_citation">via <a href="http://www.youtube.com/watch?v=SoKtxmxZQiY&amp;feature=player_embedded">youtube.com</a></div> <p>This is a friend of mine who lives risk. Great guy, great asset for infosec. ::</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/alex-hutton-talks-veris">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/swords-vs-shadows" rel="bookmark" class="crp_title">Swords vs. Shadows</a></li><li><a href="http://danielmiessler.com/blog/eulers-disk" rel="bookmark" class="crp_title">Euler&#8217;s Disk</a></li><li><a href="http://danielmiessler.com/blog/the-gift" rel="bookmark" class="crp_title">The Gift</a></li><li><a href="http://danielmiessler.com/blog/jan-ove-waldner-serves" rel="bookmark" class="crp_title">Jan-Ove Waldner Serves</a></li><li><a href="http://danielmiessler.com/blog/andrei-arlovski-this-is-sparta-kick" rel="bookmark" class="crp_title">Andrei Arlovski &#8220;This is Sparta&#8221; Kick</a></li><li><a href="http://danielmiessler.com/blog/the-strange-powers-of-the-placebo-effect" rel="bookmark" class="crp_title">The Strange Powers of the Placebo Effect</a></li><li><a href="http://danielmiessler.com/blog/the-merits-of-reading" rel="bookmark" class="crp_title">The Merits of Reading</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/v1SNcRctnBa1G4PGhqfzDwjEEx4/0/da"><img src="http://feedads.g.doubleclick.net/~a/v1SNcRctnBa1G4PGhqfzDwjEEx4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/v1SNcRctnBa1G4PGhqfzDwjEEx4/1/da"><img src="http://feedads.g.doubleclick.net/~a/v1SNcRctnBa1G4PGhqfzDwjEEx4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/4Z1EbJUH2QM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/alex-hutton-talks-veris/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/alex-hutton-talks-veris</feedburner:origLink></item>
		<item>
		<title>How Does One Explain SQL Injection to a Non-Techie?</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/3aokq8Yt6E4/how-does-one-explain-sql-injection-to-a-non-techie-2</link>
		<comments>http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie-2#comments</comments>
		<pubDate>Tue, 22 Feb 2011 04:46:38 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie-2</guid>
		<description><![CDATA[Anyone got a good analogy to describe SQL Injection to people who don’t understand what a “back end” is, much less a SELECT statement? Here’s my response: SQL Injection is like a telephone operator who has to phonetically relay verbal speech between two people who cannot be connected, in a language the operator doesn’t understand. [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><blockquote class="posterous_short_quote">Anyone got a good analogy to describe SQL Injection to people who don’t understand what a “back end” is, much less a SELECT statement?</blockquote>    <p>Here’s my response:</p>    <p class="offset">SQL Injection is like a telephone operator who has to phonetically relay verbal speech between two people who cannot be connected, in a language the operator doesn’t understand. The problem is that the operator has no way of knowing if she’s telling the person on the other side, “Happy Birthday”, or giving them instructions on how to kill themselves.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie">danielmiessler.com</a></div> <p>An old explanation, but I like it ok&#8230;</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/how-does-one-explain-sql-injection-to-a-non-t-0">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie" rel="bookmark" class="crp_title">How Does One Explain SQL Injection to a Non-Techie?</a></li><li><a href="http://danielmiessler.com/blog/bsqlhacker" rel="bookmark" class="crp_title">BSQLHacker</a></li><li><a href="http://danielmiessler.com/blog/how-to-do-a-websec-demo" rel="bookmark" class="crp_title">How to do a WebSec Demo</a></li><li><a href="http://danielmiessler.com/blog/the-birthday-attack" rel="bookmark" class="crp_title">The Birthday Attack</a></li><li><a href="http://danielmiessler.com/blog/the-2010-owasp-top-10-have-been-finalized" rel="bookmark" class="crp_title">The 2010 OWASP Top 10 Have Been Finalized</a></li><li><a href="http://danielmiessler.com/blog/familiarity-with-evil" rel="bookmark" class="crp_title">Familiarity with Evil</a></li><li><a href="http://danielmiessler.com/blog/the-posterous-bookmarklet" rel="bookmark" class="crp_title">The Posterous Bookmarklet</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/BVGJi1FFJ3rdP-0uaOoDnKQM6EA/0/da"><img src="http://feedads.g.doubleclick.net/~a/BVGJi1FFJ3rdP-0uaOoDnKQM6EA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BVGJi1FFJ3rdP-0uaOoDnKQM6EA/1/da"><img src="http://feedads.g.doubleclick.net/~a/BVGJi1FFJ3rdP-0uaOoDnKQM6EA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/3aokq8Yt6E4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/how-does-one-explain-sql-injection-to-a-non-techie-2</feedburner:origLink></item>
		<item>
		<title>Google Eager to Find Vulnerabilities in Chrome | TechCrunch</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/0QqSuQixnYQ/google-eager-to-find-vulnerabilities-in-chrome-techcrunch</link>
		<comments>http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch#comments</comments>
		<pubDate>Thu, 10 Feb 2011 17:12:25 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch</guid>
		<description><![CDATA[Last year, after two full days of hacking, only one web browser emerged from Pwn2Own unscathed: Google Chrome. IE8, Safari 4, Firefox 3, and even Safari on iOS actually all fell after just one day, but no one could seem to penetrate Chrome. In fact, despite a $10,000 bounty to crack their “sandbox”, no one [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>Last year, after two full days of hacking, only one web browser emerged from Pwn2Own unscathed: Google Chrome. IE8, Safari 4, Firefox 3, and even Safari on iOS actually all fell after just one day, but no one could seem to penetrate Chrome. In fact, despite a $10,000 bounty to crack their “sandbox”, <a href="http://lifehacker.com/#!5502835/day-two-no-one-even-attempts-hacking-chrome-at-pwn2own-competition">no one even tried</a>, likely figuring it was futile. And so this year, Pwn2Own wasn’t even going to invite Chrome back. Then Google stepped in with wads of cash.</p>  <p>While the lineup for Pwn2Own 2011 was announced a&nbsp;<a href="http://dvlabs.tippingpoint.com/blog/2011/02/02/pwn2own-2011">few days ago</a>, Google took the time today to give <a href="http://blog.chromium.org/2011/02/chromium-to-feature-in-pwn2own-contest.html">a bit more details</a> about their role in the event. Of note, they write: “<em>Chrome wasn’t originally going to be included as a target browser in the competition, but Google volunteered to sponsor Chrome’s participation by contributing monetary rewards for Chrome exploits</em>.”</p>  <p>In other words: bring it, hackers.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://techcrunch.com/2011/02/07/hack-google-chrome/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29">techcrunch.com</a></div> <p></p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/google-eager-to-find-vulnerabilities-in-chrom">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/web-browsers-crushed-in-%e2%80%98pwn2own%e2%80%99-contest-wired-com" rel="bookmark" class="crp_title">Web Browsers Crushed in ‘Pwn2Own’ Contest | Wired.com</a></li><li><a href="http://danielmiessler.com/blog/google%e2%80%99s-awesomely-useful-and-obvious-%e2%80%9chighlight-to-search%e2%80%9d-chrome-extension" rel="bookmark" class="crp_title">Google’s Awesomely Useful And Obvious “Highlight To Search” Chrome Extension</a></li><li><a href="http://danielmiessler.com/blog/chrome-passes-firefox-on-techcrunch" rel="bookmark" class="crp_title">Chrome Passes Firefox on TechCrunch</a></li><li><a href="http://danielmiessler.com/blog/google-chrome-for-mac-beta-is-released" rel="bookmark" class="crp_title">Google Chrome For Mac [Beta] is Released</a></li><li><a href="http://danielmiessler.com/blog/5-chrome-features-worth-noticing" rel="bookmark" class="crp_title">5 Chrome Features Worth Noticing</a></li><li><a href="http://danielmiessler.com/blog/dear-google-why-cant-chrome-tell-me-if-a-site-has-an-rss-feed" rel="bookmark" class="crp_title">Dear Google, Why Can&#8217;t Chrome Tell Me if a Site Has an RSS Feed?</a></li><li><a href="http://danielmiessler.com/blog/youtube-downloader-chrome-web-store" rel="bookmark" class="crp_title">YouTube Downloader | Chrome Web Store</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/j-taJxoLjP9MvmnlY9bL8ouxJIY/0/da"><img src="http://feedads.g.doubleclick.net/~a/j-taJxoLjP9MvmnlY9bL8ouxJIY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/j-taJxoLjP9MvmnlY9bL8ouxJIY/1/da"><img src="http://feedads.g.doubleclick.net/~a/j-taJxoLjP9MvmnlY9bL8ouxJIY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/0QqSuQixnYQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch</feedburner:origLink></item>
		<item>
		<title>Hackers Penetrate Nasdaq’s Computers | WSJ.com</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/DKn82jOo8w8/hackers-penetrate-nasdaqs-computers-wsj-com</link>
		<comments>http://danielmiessler.com/blog/hackers-penetrate-nasdaqs-computers-wsj-com#comments</comments>
		<pubDate>Sat, 05 Feb 2011 19:38:50 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/hackers-penetrate-nasdaqs-computers-wsj-com</guid>
		<description><![CDATA[Hackers have repeatedly penetrated the computer network of the company that runs the Nasdaq Stock Market during the past year, and federal investigators are trying to identify the perpetrators and their purpose, according to people familiar with the matter. The exchange&#8217;s trading platform—the part of the system that executes trades—wasn&#8217;t compromised, these people said. However, [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>Hackers have repeatedly penetrated the computer network of the company that runs the Nasdaq Stock Market during the past year, and federal investigators are trying to identify the perpetrators and their purpose, according to people familiar with the matter.</p>  <p>The exchange&#8217;s trading platform—the part of the system that executes trades—wasn&#8217;t compromised, these people said. However, it couldn&#8217;t be determined which other parts of Nasdaq&#8217;s computer network were accessed.</p>  <p>Investigators are considering a range of possible motives, including unlawful financial gain, theft of trade secrets and a national-security threat designed to damage the exchange.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://online.wsj.com/article/SB10001424052748704709304576124502351634690.html">online.wsj.com</a></div> <p>Infrastructure, bitches.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/hackers-penetrate-nasdaqs-computers-wsjcom">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/hackers-penetrate-mid-level-bank-it-network-gds-publishing" rel="bookmark" class="crp_title">Hackers penetrate mid-level bank IT network | GDS Publishing</a></li><li><a href="http://danielmiessler.com/blog/computer-security-a-swarm-of-many-stripes-the-economist" rel="bookmark" class="crp_title">Computer security: A swarm of many stripes | The Economist</a></li><li><a href="http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security" rel="bookmark" class="crp_title">Estonia institutes volunteer cyber army | Net-Security</a></li><li><a href="http://danielmiessler.com/blog/mit-researchers-developing-borg-like-computer-defenses" rel="bookmark" class="crp_title">MIT Researchers Developing Borg-like Computer Defenses</a></li><li><a href="http://danielmiessler.com/blog/america-to-consider-online-gambling-tax-gambling-online-magazine" rel="bookmark" class="crp_title">America to consider online gambling tax | Gambling Online Magazine</a></li><li><a href="http://danielmiessler.com/blog/taosecurity-einstein-3-coming-to-a-private-network-near-you" rel="bookmark" class="crp_title">TaoSecurity: Einstein 3 Coming to a Private Network Near You?</a></li><li><a href="http://danielmiessler.com/blog/google-eager-to-find-vulnerabilities-in-chrome-techcrunch" rel="bookmark" class="crp_title">Google Eager to Find Vulnerabilities in Chrome | TechCrunch</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/rrxm1y_o47KZ7nY1ymzI2-Czdrw/0/da"><img src="http://feedads.g.doubleclick.net/~a/rrxm1y_o47KZ7nY1ymzI2-Czdrw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rrxm1y_o47KZ7nY1ymzI2-Czdrw/1/da"><img src="http://feedads.g.doubleclick.net/~a/rrxm1y_o47KZ7nY1ymzI2-Czdrw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/DKn82jOo8w8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/hackers-penetrate-nasdaqs-computers-wsj-com/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/hackers-penetrate-nasdaqs-computers-wsj-com</feedburner:origLink></item>
		<item>
		<title>danielmiessler.com | study | webappsec resources</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/3G_RxEZlrO4/danielmiessler-com-study-webappsec-resources</link>
		<comments>http://danielmiessler.com/blog/danielmiessler-com-study-webappsec-resources#comments</comments>
		<pubDate>Wed, 02 Feb 2011 21:35:08 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/danielmiessler-com-study-webappsec-resources</guid>
		<description><![CDATA[Here I&#8217;ll be attempting to capture most primary items one will need to set up a webappsec environment. I&#8217;ll be grouping by: Suites and Frameworks Standalone Scanning Tools Vulnerable Web Applications Online Download Utilities Additional Resources via danielmiessler.com A collection of web application security resources. Posted via email from danielmiessler.com &#124; posterous Related Postsdanielmiessler.com &#124; [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>Here I&#8217;ll be attempting to capture most primary items one will need to set up a webappsec environment. I&#8217;ll be grouping by:</p>    <ul>   <li>Suites and Frameworks</li>      <li>Standalone Scanning Tools</li>      <li>Vulnerable Web Applications         </li><li>Online</li>        <li>Download</li>       <li>Utilities</li>      <li>Additional Resources</li></ul></blockquote>    <div class="posterous_quote_citation">via <a href="http://danielmiessler.com/projects/webappsec_resources/">danielmiessler.com</a></div> <p>A collection of web application security resources.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/danielmiesslercom-study-webappsec-resources">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/danielmiessler-com-projects-what-i-would-have-taught-my-children" rel="bookmark" class="crp_title">danielmiessler.com | projects | What I Would Have Taught My Children</a></li><li><a href="http://danielmiessler.com/blog/i-just-created-therwebappsec-subreddit" rel="bookmark" class="crp_title">I Just Created the/r/webappsec Subreddit</a></li><li><a href="http://danielmiessler.com/blog/danielmiessler-com-projects-grammar" rel="bookmark" class="crp_title">Basic Grammatical Errors to Avoid in Business Writing</a></li><li><a href="http://danielmiessler.com/blog/mit-opencourseware-vs-khanacademy-winner-you" rel="bookmark" class="crp_title">MIT OpenCourseWare vs. KhanAcademy: Winner? You.</a></li><li><a href="http://danielmiessler.com/blog/on-loss-aversion" rel="bookmark" class="crp_title">On Loss Aversion</a></li><li><a href="http://danielmiessler.com/blog/the-posterous-bookmarklet" rel="bookmark" class="crp_title">The Posterous Bookmarklet</a></li><li><a href="http://danielmiessler.com/blog/urls-vs-uris-differences-and-examples-danielmiessler-com" rel="bookmark" class="crp_title">URLs vs. URIs: Differences and Examples</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/7MDqfB0DcgBpv7JFJX2pUueK1KM/0/da"><img src="http://feedads.g.doubleclick.net/~a/7MDqfB0DcgBpv7JFJX2pUueK1KM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7MDqfB0DcgBpv7JFJX2pUueK1KM/1/da"><img src="http://feedads.g.doubleclick.net/~a/7MDqfB0DcgBpv7JFJX2pUueK1KM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/3G_RxEZlrO4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/danielmiessler-com-study-webappsec-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/danielmiessler-com-study-webappsec-resources</feedburner:origLink></item>
		<item>
		<title>ATM skimmers don’t even have to be on the ATM | NetSecurity</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/4flxNMf0PEo/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity</link>
		<comments>http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity#comments</comments>
		<pubDate>Tue, 01 Feb 2011 03:07:29 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity</guid>
		<description><![CDATA[Careful ATM users know enough to give a hasty visual check to the machine before using it and to hide the keyboard while entering their PIN. Unfortunately, sometimes even that is not enough to prevent the fraudsters, and the worst part of it is that they continually think of new ways of stealing your credit [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><img src="http://www.net-security.org/images/articles/atm-icon.jpg" border="0" align="left" height="120" width="100" />Careful ATM users know enough to give a hasty visual check to the machine before using it and to hide the keyboard while entering their PIN.<p>    Unfortunately, sometimes even that is <a href="http://www.net-security.org/secworld.php?id=10402">not enough</a> to prevent the fraudsters, and the worst part of it is that they continually think of new ways of stealing your credit and debit card data.</p><p>    A type of attack that can&#8217;t be detected by ATM users because there&#8217;s nothing off on the machine or close enough to it to make them suspicious has been pointed out by <a href="http://krebsonsecurity.com/2011/01/atm-skimmers-that-never-touch-the-atm/" target="_new">Brian Krebs</a>. According to him, criminals have devised a very clever tactic &#8211; one that is usually employed to steal the information from users who prefer to use the ATMs located in the antechamber of a bank or building lobby.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://www.net-security.org/secworld.php?id=10513">net-security.org</a></div> <p></p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/atm-skimmers-dont-even-have-to-be-on-the-atm">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/visa-launches-online-payment-card-with-one-time-passcode" rel="bookmark" class="crp_title">Visa Launches Online Payment Card with One-Time Passcode</a></li><li><a href="http://danielmiessler.com/blog/how-black-hat-spam-seo-works" rel="bookmark" class="crp_title">How Black Hat Spam SEO Works</a></li><li><a href="http://danielmiessler.com/blog/computer-security-a-swarm-of-many-stripes-the-economist" rel="bookmark" class="crp_title">Computer security: A swarm of many stripes | The Economist</a></li><li><a href="http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security" rel="bookmark" class="crp_title">Estonia institutes volunteer cyber army | Net-Security</a></li><li><a href="http://danielmiessler.com/blog/why-your-form-buttons-should-never-say-submit-ux-movement" rel="bookmark" class="crp_title">Why Your Form Buttons Should Never Say Submit | UX Movement</a></li><li><a href="http://danielmiessler.com/blog/cookie-stealing-with-cross-site-scripting-explained-hp-application-security-blog" rel="bookmark" class="crp_title">Cookie Stealing With Cross-Site Scripting Explained | HP Application Security Blog</a></li><li><a href="http://danielmiessler.com/blog/mexico-building-wall-on-their-border-with-guatemala" rel="bookmark" class="crp_title">Mexico Building Wall on Their Border with Guatemala</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/7kNtEod_J7Jeaa1NQ5XSDi0xNcA/0/da"><img src="http://feedads.g.doubleclick.net/~a/7kNtEod_J7Jeaa1NQ5XSDi0xNcA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7kNtEod_J7Jeaa1NQ5XSDi0xNcA/1/da"><img src="http://feedads.g.doubleclick.net/~a/7kNtEod_J7Jeaa1NQ5XSDi0xNcA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/4flxNMf0PEo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity</feedburner:origLink></item>
		<item>
		<title>Bot attacks Linux and Mac but can’t lock down its booty • The Register</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/Cfcv3woeBag/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register</link>
		<comments>http://danielmiessler.com/blog/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register#comments</comments>
		<pubDate>Fri, 21 Jan 2011 03:52:27 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register</guid>
		<description><![CDATA[Known as Trojan.Jnanabot, or alternately as OSX/Koobface.A or trojan.osx.boonana.a, the bot made waves in October when researchers discovered its Java-based makeup allowed it to attack Mac and Linux machines, not just Windows PCs as is the case with most malware. Once installed, the trojan components are stored in an invisible folder and use strong encryption [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote">Known as Trojan.Jnanabot, or alternately as OSX/Koobface.A or trojan.osx.boonana.a, the bot made waves in October when researchers discovered its Java-based makeup allowed it to <a href="http://www.theregister.co.uk/2010/10/27/koobface_for_mac/">attack Mac and Linux machines</a>, not just Windows PCs as is the case with most malware. Once installed, the trojan components are stored in an invisible folder and use strong encryption to keep communications private.</blockquote>    <div class="posterous_quote_citation">via <a href="http://www.theregister.co.uk/2011/01/19/mac_linux_bot_vulnerabilities/">theregister.co.uk</a></div> <p></p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/bot-attacks-linux-and-mac-but-cant-lock-down">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/latest-on-the-torpig-banking-trojan-the-momo-blog" rel="bookmark" class="crp_title">Latest on the Torpig Banking Trojan ) | THE MOMO BLOG</a></li><li><a href="http://danielmiessler.com/blog/bugat-is-new-malware-of-choice-govinfosecurity" rel="bookmark" class="crp_title">Bugat is New Malware of Choice | GovInfoSecurity</a></li><li><a href="http://danielmiessler.com/blog/scada-worm-a-nation-state-search-and-destroy-weapon-%e2%80%a2-the-register" rel="bookmark" class="crp_title">SCADA worm a &#8216;nation state search-and-destroy weapon&#8217; • The Register</a></li><li><a href="http://danielmiessler.com/blog/plan-9-gurus-at-google-now-use-macs-and-linux" rel="bookmark" class="crp_title">Plan 9 Gurus at Google Now Use Macs and Linux</a></li><li><a href="http://danielmiessler.com/blog/trojan-horse-helped-assassins-track-hamas-victim-naked-security" rel="bookmark" class="crp_title">Trojan horse helped assassins track Hamas victim | Naked Security</a></li><li><a href="http://danielmiessler.com/blog/mit-researchers-developing-borg-like-computer-defenses" rel="bookmark" class="crp_title">MIT Researchers Developing Borg-like Computer Defenses</a></li><li><a href="http://danielmiessler.com/blog/taosecurity-einstein-3-coming-to-a-private-network-near-you" rel="bookmark" class="crp_title">TaoSecurity: Einstein 3 Coming to a Private Network Near You?</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/OYjAkdT6elfBdHCkitlCAilttb8/0/da"><img src="http://feedads.g.doubleclick.net/~a/OYjAkdT6elfBdHCkitlCAilttb8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OYjAkdT6elfBdHCkitlCAilttb8/1/da"><img src="http://feedads.g.doubleclick.net/~a/OYjAkdT6elfBdHCkitlCAilttb8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/Cfcv3woeBag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register</feedburner:origLink></item>
		<item>
		<title>Determining a Personal Data Retention Strategy</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/h-OAMC63z-w/determining-a-personal-data-retention-strategy</link>
		<comments>http://danielmiessler.com/blog/determining-a-personal-data-retention-strategy#comments</comments>
		<pubDate>Tue, 18 Jan 2011 04:32:03 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/determining-a-personal-data-retention-strategy</guid>
		<description><![CDATA[If you spent any time in the IT world you&#8217;re likely to be particularly tuned to the threat risk of losing data. Losing data sucks, and it&#8217;s one of the sneaky kind of risks, where everything is 100% ok until it is 0% so. So why is it any different for our personal data? It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>If you spent any time in the IT world you&#8217;re likely to be particularly tuned to the threat risk of losing data. Losing data sucks, and it&#8217;s one of the sneaky kind of risks, where everything is 100% ok until it is 0% so.</p>

<p>So why is it any different for our personal data? It&#8217;s rhetorical; it&#8217;s no different at all. Losing all your personal data would still be devastating. There are varying degrees of devastation, of course: one could lose anything from his porn collection gathered over ten years to scanned images of family albums that have since been lost.</p>

<blockquote><p>It all comes down to one question that I encourage everyone to ask in a serious tone of voice: How bad off would I be&#8211;in terms of data loss&#8211;if I were to lose all IT-related content in my house?</p></blockquote>

<p>So, we&#8217;re talking a fire, a flood, or a break-in where all your servers/workstations/laptops/harddrives are now gone.</p>

<p>Where are your pictures? All your recorded content from your life? Do you have any off-site backup at all, or are you completely done for? I don&#8217;t like my current answer to that question, so I am handling it.</p>

<p>Step 1 is determining what would happen if your current system died. This is basic harddrive defense 101 (which most still aren&#8217;t even doing). In other words, what would happen if you were to lose your main hard drive?</p>

<p>My solution to Step 1 is the use of a NAS, which is a four-disk redundant disk array that gives my household 6TB of very fast and highly fault-tolerant storage. But this doesn&#8217;t solve the fire/flood/theft scenario.</p>

<p>I think my solution to a Level 2 crisis is going to be cloud&#8211;specifically Amazon S3 storage. I was thinking about taking my old NAS and shipping it off-site with a current snapshot of my data on it, but that&#8217;s pretty kludgy. Plus, it&#8217;s easy to just get lazy and forget it.</p>

<p>I think sending the data to the cloud is the way to go&#8211;for me at least. The NAS gives you the 95% safety rating, and then the cloud backup gives you the rest. I&#8217;m really not too worried about Amazon losing my data; I think it&#8217;s far more likely to disappear with me than with them.</p>

<p>So that&#8217;s my solution, and I am curious as to what yours are. Most importantly, however, I&#8217;m trying to get those who don&#8217;t have a solution to realize that they have a problem waiting to happen, and to take action.</p>

<p>::</p>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/data-loss-database" rel="bookmark" class="crp_title">Data Loss Database</a></li><li><a href="http://danielmiessler.com/blog/the-cloud-reducing-security-to-way-above-where-it-is-today" rel="bookmark" class="crp_title">The Cloud: Reducing Security To Way Above Where It Is Today</a></li><li><a href="http://danielmiessler.com/blog/crowdsourcing-traffic-congestion-data" rel="bookmark" class="crp_title">Crowdsourcing Traffic Congestion Data</a></li><li><a href="http://danielmiessler.com/blog/a-thought-on-identity-theft" rel="bookmark" class="crp_title">A Thought On Identity Theft</a></li><li><a href="http://danielmiessler.com/blog/the-aesthetics-vs-features-iphone-debate" rel="bookmark" class="crp_title">The Aesthetics vs. Features iPhone Debate</a></li><li><a href="http://danielmiessler.com/blog/google-contacts-personifies-my-disdain-for-android" rel="bookmark" class="crp_title">Google Contacts Personifies My Disdain For Android</a></li><li><a href="http://danielmiessler.com/blog/healthcare-does-preventative-care-really-lower-costs" rel="bookmark" class="crp_title">Healthcare: Does Preventative Care Really Lower Costs?</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/JGWiPsohmRgeGjQVXXMmkMM1JJo/0/da"><img src="http://feedads.g.doubleclick.net/~a/JGWiPsohmRgeGjQVXXMmkMM1JJo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JGWiPsohmRgeGjQVXXMmkMM1JJo/1/da"><img src="http://feedads.g.doubleclick.net/~a/JGWiPsohmRgeGjQVXXMmkMM1JJo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/h-OAMC63z-w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/determining-a-personal-data-retention-strategy/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/determining-a-personal-data-retention-strategy</feedburner:origLink></item>
		<item>
		<title>Stuxnet Worm Used Against Iran Was Tested in Israel | NYTimes.com</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/hHFZmTWawZY/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com</link>
		<comments>http://danielmiessler.com/blog/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com#comments</comments>
		<pubDate>Sun, 16 Jan 2011 07:38:44 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com</guid>
		<description><![CDATA[The Dimona complex in the Negev desert is famous as the heavily guarded heart of Israel’s never-acknowledged nuclear arms program, where neat rows of factories make atomic fuel for the arsenal. Over the past two years, according to intelligence and military experts familiar with its operations, Dimona has taken on a new, equally secret role [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>The Dimona complex in the Negev desert is famous as the heavily guarded heart of <a href="http://topics.nytimes.com/top/news/international/countriesandterritories/israel/index.html?inline=nyt-geo" title="More news and information about Israel." class="meta-loc">Israel</a>’s never-acknowledged nuclear arms program, where neat rows of factories make atomic fuel for the arsenal.        </p><p>  Over the past two years, according to intelligence and military experts familiar with its operations, Dimona has taken on a new, equally secret role — as a critical testing ground in a joint American and Israeli effort to undermine <a href="http://topics.nytimes.com/top/news/international/countriesandterritories/iran/index.html?inline=nyt-geo" title="More news and information about Iran." class="meta-loc">Iran</a>’s efforts to make a bomb of its own.        </p><p>  Behind Dimona’s barbed wire, the experts say, Israel has spun nuclear centrifuges virtually identical to Iran’s at Natanz, where Iranian scientists are struggling to enrich uranium. They say Dimona tested the effectiveness of the <a href="http://topics.nytimes.com/top/reference/timestopics/subjects/c/computer_malware/stuxnet/index.html?inline=nyt-classifier" title="More articles about Stuxnet." class="meta-classifier">Stuxnet</a> computer worm, a destructive program that appears to have wiped out roughly a fifth of Iran’s nuclear centrifuges and helped delay, though not destroy, Tehran’s ability to make its first nuclear arms.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://www.nytimes.com/2011/01/16/world/middleeast/16stuxnet.html?_r=1">nytimes.com</a></div> <p>Stunning. </p><p>Ok, not really.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/stuxnet-worm-used-against-iran-was-tested-in">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/scada-worm-a-nation-state-search-and-destroy-weapon-%e2%80%a2-the-register" rel="bookmark" class="crp_title">SCADA worm a &#8216;nation state search-and-destroy weapon&#8217; • The Register</a></li><li><a href="http://danielmiessler.com/blog/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post" rel="bookmark" class="crp_title">Stuxnet may have destroyed 1,000 centrifuges at Natanz | Jerusalem Post</a></li><li><a href="http://danielmiessler.com/blog/apple-and-i-b-m-aren%e2%80%99t-all-that-different-nytimes-com" rel="bookmark" class="crp_title">Apple and I.B.M. Aren’t All That Different | NYTimes.com</a></li><li><a href="http://danielmiessler.com/blog/no-jobs-and-no-infrastructure-the-solution-seems-obvious-nytimes" rel="bookmark" class="crp_title">No Jobs and No Infrastructure: The Solution Seems Obvious | NYTimes</a></li><li><a href="http://danielmiessler.com/blog/iran-is-bad-pakistan-is-good" rel="bookmark" class="crp_title">Iran is Bad, Pakistan is Good</a></li><li><a href="http://danielmiessler.com/blog/why-iran-cant-be-trusted" rel="bookmark" class="crp_title">Why Iran Can&#8217;t Be Trusted</a></li><li><a href="http://danielmiessler.com/blog/test-taking-cements-knowledge-better-than-studying-nytimes-com" rel="bookmark" class="crp_title">Test-Taking Cements Knowledge Better Than Studying | NYTimes.com</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/6y1Idgcdf-oVzpjML5YJ9amQZJE/0/da"><img src="http://feedads.g.doubleclick.net/~a/6y1Idgcdf-oVzpjML5YJ9amQZJE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6y1Idgcdf-oVzpjML5YJ9amQZJE/1/da"><img src="http://feedads.g.doubleclick.net/~a/6y1Idgcdf-oVzpjML5YJ9amQZJE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/hHFZmTWawZY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com</feedburner:origLink></item>
		<item>
		<title>US fears over Wikileaks exposed in private memo | Belfasttelegraph</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/6HQDvEij9JI/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph</link>
		<comments>http://danielmiessler.com/blog/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph#comments</comments>
		<pubDate>Mon, 10 Jan 2011 19:12:59 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph</guid>
		<description><![CDATA[The White House has instructed every US government department and agency to create &#8220;insider threat&#8221; programmes that will ferret out disgruntled or untrustworthy employees who might be tempted to leak the sort of state secrets recently made public by the website WikiLeaks. A 13-page memo detailing the new policy urges senior civil servants to beef [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>The White House has instructed every US government department and agency to   create &#8220;insider threat&#8221; programmes that will ferret out   disgruntled or untrustworthy employees who might be tempted to leak the sort   of state secrets recently made public by the website WikiLeaks.  </p>  <p>  A 13-page memo detailing the new policy urges senior civil servants to beef up   cyber security and hire teams of psychiatrists and sociologists who can   &#8220;detect behavioural changes&#8221;. They will then monitor the moods and attitudes   of staff who are allowed to access classified information.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://www.belfasttelegraph.co.uk/news/world-news/us-fears-over-wikileaks-exposed-in-private-memo-15047152.html">belfasttelegraph.co.uk</a></div> <p></p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/us-fears-over-wikileaks-exposed-in-private-me">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/students-warned-read-wikileaks-and-you%e2%80%99re-out-of-a-government-job-raw-story" rel="bookmark" class="crp_title">Students warned: Read WikiLeaks and you’re out of a government job | Raw Story</a></li><li><a href="http://danielmiessler.com/blog/taosecurity-einstein-3-coming-to-a-private-network-near-you" rel="bookmark" class="crp_title">TaoSecurity: Einstein 3 Coming to a Private Network Near You?</a></li><li><a href="http://danielmiessler.com/blog/julian-assange-fired-from-it-job-at-pentagon-the-onion" rel="bookmark" class="crp_title">Julian Assange Fired From IT Job At Pentagon | The Onion</a></li><li><a href="http://danielmiessler.com/blog/fatah-asked-israel-to-attack-hamas-raw-story" rel="bookmark" class="crp_title">Fatah asked Israel to attack Hamas | Raw Story</a></li><li><a href="http://danielmiessler.com/blog/the-new-york-times-summarizes-the-recent-wikileaks-content" rel="bookmark" class="crp_title">The New York Times Summarizes the Recent Wikileaks Content</a></li><li><a href="http://danielmiessler.com/blog/republicans-are-much-better-at-politics-than-democrats-ryanwaggoner-com" rel="bookmark" class="crp_title">Republicans Are Much Better at Politics Than Democrats | ryanwaggoner.com</a></li><li><a href="http://danielmiessler.com/blog/smart-dust-aims-to-monitor-everything-cnn" rel="bookmark" class="crp_title">&#8216;Smart dust&#8217; aims to monitor everything | CNN</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/GPGWI2Y9O6q0GyoJ9ibFJf7uCY0/0/da"><img src="http://feedads.g.doubleclick.net/~a/GPGWI2Y9O6q0GyoJ9ibFJf7uCY0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GPGWI2Y9O6q0GyoJ9ibFJf7uCY0/1/da"><img src="http://feedads.g.doubleclick.net/~a/GPGWI2Y9O6q0GyoJ9ibFJf7uCY0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/6HQDvEij9JI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph</feedburner:origLink></item>
		<item>
		<title>Latest on the Torpig Banking Trojan ) | THE MOMO BLOG</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/0Qvu7zawyf0/latest-on-the-torpig-banking-trojan-the-momo-blog</link>
		<comments>http://danielmiessler.com/blog/latest-on-the-torpig-banking-trojan-the-momo-blog#comments</comments>
		<pubDate>Mon, 10 Jan 2011 05:22:19 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/latest-on-the-torpig-banking-trojan-the-momo-blog</guid>
		<description><![CDATA[Researchers frοm thе Computer Security Group οf thе University οf California аt Santa Barbara hаνе taken control οf thе Torpig botnet fοr ten days. Thеіr report reveals thаt thе Trojan stole 8,310 accounts frοm 410 different financial institutions, аѕ well аѕ thе details οf 1,660 credit cards during thе 10 day period alone. Torpig, аlѕο [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>Researchers frοm thе Computer Security Group οf thе University οf California аt Santa Barbara hаνе taken control οf thе Torpig botnet fοr ten days. Thеіr report reveals thаt thе Trojan stole 8,310 accounts frοm 410 different financial institutions, аѕ well аѕ thе details οf 1,660 credit cards during thе 10 day period alone.</p>  <p>  <br />  Torpig, аlѕο known аѕ Sinowal, іѕ a 3 year-ancient banking trojan, whісh ranks pretty high amongst thе mοѕt resilient аnd complex pieces οf malware. Thе Trojan іѕ being spread through Mebroot, a rootkit thаt installs itself аt thе low level οf a computer, inside thе Master Boot Record , mаkіng іt very resilient tο av detection.</p>  <p>  <br />  A further state-οf-thе-art malicious technique employed bу Torpig іѕ thе domain flux, whеrе a list οf domain names іѕ periodically generated bу each infection according tο аn algorithm, whісh аrе thеn queried іn order tο locate a command аnd control server. Thе researchers hijacked thе botnet bу registering ѕοmе οf thе domains іn advance, previous tο іtѕ owners succeeded іn regaining control ten days later.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://themomoblog.com/latest-on-torpig-banking-trojan.htm">themomoblog.com</a></div> <p>Sickness.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/latest-on-the-torpig-banking-trojan-the-momo">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/bot-attacks-linux-and-mac-but-cant-lock-down-its-booty-%e2%80%a2-the-register" rel="bookmark" class="crp_title">Bot attacks Linux and Mac but can&#8217;t lock down its booty • The Register</a></li><li><a href="http://danielmiessler.com/blog/88-percent-of-firms-show-zeus-botnet-activity-cnet-news" rel="bookmark" class="crp_title">88 percent of firms show Zeus botnet activity | CNET News</a></li><li><a href="http://danielmiessler.com/blog/bugat-is-new-malware-of-choice-govinfosecurity" rel="bookmark" class="crp_title">Bugat is New Malware of Choice | GovInfoSecurity</a></li><li><a href="http://danielmiessler.com/blog/trojan-horse-helped-assassins-track-hamas-victim-naked-security" rel="bookmark" class="crp_title">Trojan horse helped assassins track Hamas victim | Naked Security</a></li><li><a href="http://danielmiessler.com/blog/microsoft-security-a-tenuous-argument" rel="bookmark" class="crp_title">Microsoft Security: A Tenuous Argument</a></li><li><a href="http://danielmiessler.com/blog/bruce-schneier-on-tw0-factor-authentication" rel="bookmark" class="crp_title">Bruce On Two-Factor Authentication &#8212; And Why I Disagree</a></li><li><a href="http://danielmiessler.com/blog/microsoft-research-develops-zozzle-javascript-malware-detection-tool-threatpost" rel="bookmark" class="crp_title">Microsoft Research Develops Zozzle JavaScript Malware Detection Tool | Threatpost</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/ly8cn39zArwimZByIVRRaZyReK4/0/da"><img src="http://feedads.g.doubleclick.net/~a/ly8cn39zArwimZByIVRRaZyReK4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ly8cn39zArwimZByIVRRaZyReK4/1/da"><img src="http://feedads.g.doubleclick.net/~a/ly8cn39zArwimZByIVRRaZyReK4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/0Qvu7zawyf0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/latest-on-the-torpig-banking-trojan-the-momo-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/latest-on-the-torpig-banking-trojan-the-momo-blog</feedburner:origLink></item>
		<item>
		<title>Estonia institutes volunteer cyber army | Net-Security</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/n3oUkrAz_dA/estonia-institutes-volunteer-cyber-army-net-security</link>
		<comments>http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security#comments</comments>
		<pubDate>Fri, 07 Jan 2011 23:53:54 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security</guid>
		<description><![CDATA[In 2007, when Estonia&#8217;s government, financial and media computer networks were attacked by unknown Russian hackers following the government&#8217;s decision of relocating a Soviet war memorial, it must have been hard to believe that something good would come from it at the end. With that attack, Estonia became the first country ever to actually be [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote">In 2007, when Estonia&#8217;s government, financial and media computer networks were attacked by unknown Russian hackers following the government&#8217;s decision of relocating a Soviet war memorial, it must have been hard to believe that something good would come from it at the end. <p>    With that attack, Estonia became the first country ever to actually be engaged in a cyberwar, but that didn&#8217;t make them despair. If anything, that incident was what spurred them to institute their own  Cyber Defense League &#8211; an organization that gathers computer scientists, programmers, software engineers and cybersecurity specialists and would, in time of war, be under the direct command of the military.</p><p>    So far, all the members are part of the organization because they volunteered, and they spend part of their weekends carrying out simulated exercises of cyber attacks in order to keep their skills honed and ready. But, Estonia&#8217;s Defense Minister Jaak Aaviksoo and the authorities are thinking about the possibility of instituting a draft for all skilled cyber experts and instituting a real cyber army.</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://www.net-security.org/secworld.php?id=10404">net-security.org</a></div> <p>L33t.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/estonia-institutes-volunteer-cyber-army-net-s">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/cyber-command-chief-we-cannot-prevent-attacks-on-military-networks-hostexploit-news" rel="bookmark" class="crp_title">Cyber Command Chief: We Cannot Prevent Attacks on Military Networks | HostExploit News</a></li><li><a href="http://danielmiessler.com/blog/us-fears-over-wikileaks-exposed-in-private-memo-belfasttelegraph" rel="bookmark" class="crp_title">US fears over Wikileaks exposed in private memo | Belfasttelegraph</a></li><li><a href="http://danielmiessler.com/blog/microsoft-investigating-css-based-internet-explorer-vulnerability-hostexploit-news" rel="bookmark" class="crp_title">Microsoft investigating CSS-based Internet Explorer vulnerability | HostExploit News</a></li><li><a href="http://danielmiessler.com/blog/bugat-is-new-malware-of-choice-govinfosecurity" rel="bookmark" class="crp_title">Bugat is New Malware of Choice | GovInfoSecurity</a></li><li><a href="http://danielmiessler.com/blog/stanford-is-army-mit-is-marines" rel="bookmark" class="crp_title">Stanford is Army, MIT is Marines ?</a></li><li><a href="http://danielmiessler.com/blog/hackers-penetrate-nasdaqs-computers-wsj-com" rel="bookmark" class="crp_title">Hackers Penetrate Nasdaq&#8217;s Computers | WSJ.com</a></li><li><a href="http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity" rel="bookmark" class="crp_title">ATM skimmers don&#8217;t even have to be on the ATM | NetSecurity</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/tkr3gDfYfAZWqJOB4Ed77P4AgtY/0/da"><img src="http://feedads.g.doubleclick.net/~a/tkr3gDfYfAZWqJOB4Ed77P4AgtY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tkr3gDfYfAZWqJOB4Ed77P4AgtY/1/da"><img src="http://feedads.g.doubleclick.net/~a/tkr3gDfYfAZWqJOB4Ed77P4AgtY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/n3oUkrAz_dA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security</feedburner:origLink></item>
		<item>
		<title>Stuxnet may have destroyed 1,000 centrifuges at Natanz | Jerusalem Post</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/NVrNM5-PjwQ/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post</link>
		<comments>http://danielmiessler.com/blog/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post#comments</comments>
		<pubDate>Mon, 27 Dec 2010 18:21:47 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post</guid>
		<description><![CDATA[David Albright, president of the Institute for Science and International Security, told the Post that during a study of the Stuxnet code, he discovered that the virus caused the engines in Iran’s IR-1 centrifuges to increase and decrease their speed. The report cited an unnamed government official who claimed that Iran usually ran its motors [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote">David Albright, president of the Institute for Science and International Security, told the <span style="font-style: italic;">Post</span> that during a study of the Stuxnet code, he discovered that the virus caused the engines in Iran’s IR-1 centrifuges to increase and decrease their speed. The report cited an unnamed government official who claimed that Iran usually ran its motors at 1,007 cycles per second to prevent damage, while Stuxnet seemed to increase the motor speed to 1,064 cycles per second.</blockquote>    <div class="posterous_quote_citation">via <a href="http://www.jpost.com/Defense/Article.aspx?id=200843">jpost.com</a></div> <p>True information warfare: An infosec attack that crippled a foreign country&#8217;s ability to make war.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/stuxnet-may-have-destroyed-1000-centrifuges-a">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/stuxnet-worm-used-against-iran-was-tested-in-israel-nytimes-com" rel="bookmark" class="crp_title">Stuxnet Worm Used Against Iran Was Tested in Israel | NYTimes.com</a></li><li><a href="http://danielmiessler.com/blog/scada-worm-a-nation-state-search-and-destroy-weapon-%e2%80%a2-the-register" rel="bookmark" class="crp_title">SCADA worm a &#8216;nation state search-and-destroy weapon&#8217; • The Register</a></li><li><a href="http://danielmiessler.com/blog/regex-dos-attacks-abemiester-com" rel="bookmark" class="crp_title">Regex DOS Attacks | AbeMiester.com</a></li><li><a href="http://danielmiessler.com/blog/the-posterous-bookmarklet" rel="bookmark" class="crp_title">The Posterous Bookmarklet</a></li><li><a href="http://danielmiessler.com/blog/estonia-institutes-volunteer-cyber-army-net-security" rel="bookmark" class="crp_title">Estonia institutes volunteer cyber army | Net-Security</a></li><li><a href="http://danielmiessler.com/blog/i-want-to-go-where-you-go" rel="bookmark" class="crp_title">I Want to Go Where You Go</a></li><li><a href="http://danielmiessler.com/blog/a-disturbing-sentence" rel="bookmark" class="crp_title">A Disturbing Sentence</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/KXbFiDGgjz9BgwtPXRRDl1T2OuY/0/da"><img src="http://feedads.g.doubleclick.net/~a/KXbFiDGgjz9BgwtPXRRDl1T2OuY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KXbFiDGgjz9BgwtPXRRDl1T2OuY/1/da"><img src="http://feedads.g.doubleclick.net/~a/KXbFiDGgjz9BgwtPXRRDl1T2OuY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/NVrNM5-PjwQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/stuxnet-may-have-destroyed-1000-centrifuges-at-natanz-jerusalem-post</feedburner:origLink></item>
		<item>
		<title>OWASP AppSensor</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/2ld1qpyXNfc/owasp-appsensor</link>
		<comments>http://danielmiessler.com/blog/owasp-appsensor#comments</comments>
		<pubDate>Mon, 22 Nov 2010 16:43:34 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/owasp-appsensor</guid>
		<description><![CDATA[via youtube.com Wicked cool. Posted via email from danielmiessler.com &#124; posterous Related PostsThe Noisebridge Hackerspace in SFEuler&#8217;s DiskThe Parrot AR.DroneThe GiftI&#8217;m Playing a Bit of SC2Zagat&#8217;s Windows Phone 7 AppThe Merits of Reading]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <object height="417" width="500"><param name="movie" value="http://www.youtube.com/v/8ItfuwvLxRk&#038;hl=en&#038;fs=1" /><param name="wmode" value="window" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed allowfullscreen="true" src="http://www.youtube.com/v/8ItfuwvLxRk&#038;hl=en&#038;fs=1" wmode="window" allowscriptaccess="always" type="application/x-shockwave-flash" height="417" width="500"></embed></object>    <div class="posterous_quote_citation">via <a href="http://www.youtube.com/watch?v=8ItfuwvLxRk">youtube.com</a></div> <p>Wicked cool.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/owasp-appsensor">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/the-noisebridge-hackerspace-in-sf" rel="bookmark" class="crp_title">The Noisebridge Hackerspace in SF</a></li><li><a href="http://danielmiessler.com/blog/eulers-disk" rel="bookmark" class="crp_title">Euler&#8217;s Disk</a></li><li><a href="http://danielmiessler.com/blog/the-parrot-ar-drone" rel="bookmark" class="crp_title">The Parrot AR.Drone</a></li><li><a href="http://danielmiessler.com/blog/the-gift" rel="bookmark" class="crp_title">The Gift</a></li><li><a href="http://danielmiessler.com/blog/im-playing-a-bit-of-sc2" rel="bookmark" class="crp_title">I&#8217;m Playing a Bit of SC2</a></li><li><a href="http://danielmiessler.com/blog/zagats-windows-phone-7-app" rel="bookmark" class="crp_title">Zagat&#8217;s Windows Phone 7 App</a></li><li><a href="http://danielmiessler.com/blog/the-merits-of-reading" rel="bookmark" class="crp_title">The Merits of Reading</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/MJpi6wbNggJUs_OSl-DY639TUDI/0/da"><img src="http://feedads.g.doubleclick.net/~a/MJpi6wbNggJUs_OSl-DY639TUDI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MJpi6wbNggJUs_OSl-DY639TUDI/1/da"><img src="http://feedads.g.doubleclick.net/~a/MJpi6wbNggJUs_OSl-DY639TUDI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/2ld1qpyXNfc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/owasp-appsensor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/owasp-appsensor</feedburner:origLink></item>
		<item>
		<title>New Silicon Valley security conference – BayThreat</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/eaTYf8WXet8/new-silicon-valley-security-conference-baythreat</link>
		<comments>http://danielmiessler.com/blog/new-silicon-valley-security-conference-baythreat#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:04:14 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Bay Area]]></category>
		<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/new-silicon-valley-security-conference-baythreat</guid>
		<description><![CDATA[&#8220;A new Information Security conference has come to the Bay Area. BayThreat is a two day event at the Hacker Dojo in Mountain View, CA on December 10th and 11th. The theme for BayThreat is as simple as black &#38; white: &#8220;Building &#38; Breaking Security.&#8221; There will be two tracks, each tackling opposite sides of [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>&#8220;A new Information Security conference has come to the Bay Area. BayThreat is a two day event at the Hacker Dojo in Mountain View, CA on December 10th and 11th. The theme for BayThreat is as simple as black &amp; white: &#8220;Building &amp; Breaking Security.&#8221; There will be two tracks, each tackling opposite sides of the security fence. As Security Professionals, it is up to us to take that dichotomy and mold it into =the shades of gray we use to protect our environment.</p>  <p>The speaker line-up includes new material and also brings some of the big speeches that were well received earlier in the year to a west coast venue. Jeremiah Grossman will be talking about Website Security Statistics over 3 years, Dan Kaminsky will be talking about DNSSEC and the coming Domain Key Infrastructure, Dino Dai Zovi will be giving his Mach RPC talk, Anton Chuvakin will be discussing lessons learned while implementing SIEM, and Allen Gittelson will demonstrate mindhacking.</p>  <p>There&#8217;s also several activities planned for BayThreat, such as a lockpicking village and an Escalation of Privileges card tournament. Check out the website for the full list of speakers and activities planned for this exciting event at <a href="http://www.baythreat.org" target="_blank">www.baythreat.org</a>.</p>  <p>-Marisa Fagan&#8221;</p></blockquote>    <div class="posterous_quote_citation">via <a href="http://www.cgisecurity.com/2010/11/new-silicon-valley-conference-baythreat.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+typepad%2F1216429516s8517%2Fnews+%28CGISecurity+-+Website+and+Application+Security+News%29">cgisecurity.com</a></div> <p>I&#8217;m there. Who else?</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/new-silicon-valley-security-conference-baythr">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/google-buys-security-analytics-software-developer-zynamics" rel="bookmark" class="crp_title">Google Buys Security Analytics Software Developer Zynamics</a></li><li><a href="http://danielmiessler.com/blog/israeli-airport-security-u-s-airport-security" rel="bookmark" class="crp_title">Israeli Airport Security > U.S. Airport Security</a></li><li><a href="http://danielmiessler.com/blog/posterous-adds-dead-simple-custom-domain-registration" rel="bookmark" class="crp_title">Posterous Adds Dead-Simple Custom Domain Registration</a></li><li><a href="http://danielmiessler.com/blog/atm-skimmers-dont-even-have-to-be-on-the-atm-netsecurity" rel="bookmark" class="crp_title">ATM skimmers don&#8217;t even have to be on the ATM | NetSecurity</a></li><li><a href="http://danielmiessler.com/blog/the-best-summary-of-apples-iphone-4-antenna-press-conference" rel="bookmark" class="crp_title">The Best Summary of Apple&#8217;s iPhone 4 Antenna Press Conference</a></li><li><a href="http://danielmiessler.com/blog/how-black-hat-spam-seo-works" rel="bookmark" class="crp_title">How Black Hat Spam SEO Works</a></li><li><a href="http://danielmiessler.com/blog/facebook-may-be-getting-skype-video-chatting" rel="bookmark" class="crp_title">Facebook May Be Getting Skype Video Chatting</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/yGO7HpVLkjCcnAJJ-UVVHmtSzkY/0/da"><img src="http://feedads.g.doubleclick.net/~a/yGO7HpVLkjCcnAJJ-UVVHmtSzkY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yGO7HpVLkjCcnAJJ-UVVHmtSzkY/1/da"><img src="http://feedads.g.doubleclick.net/~a/yGO7HpVLkjCcnAJJ-UVVHmtSzkY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/eaTYf8WXet8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/new-silicon-valley-security-conference-baythreat/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/new-silicon-valley-security-conference-baythreat</feedburner:origLink></item>
		<item>
		<title>Decoupling the ‘False Positive’ | HP AppSec Blog</title>
		<link>http://feedproxy.google.com/~r/blog_informationsecurity/~3/oKc1EQf-nvQ/decoupling-the-false-positive-hp-appsec-blog</link>
		<comments>http://danielmiessler.com/blog/decoupling-the-false-positive-hp-appsec-blog#comments</comments>
		<pubDate>Fri, 19 Nov 2010 17:41:36 +0000</pubDate>
		<dc:creator>Daniel Miessler</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://danielmiessler.com/blog/decoupling-the-false-positive-hp-appsec-blog</guid>
		<description><![CDATA[There’s often a significant amount of debate between internal appsec groups and developer groups around the topic of false positives. What exactly determines whether something is or is not a true false positive? And how can appsec groups synchronize so as to reduce confusion on the topic?Semantics lie at the center of many arguments, and [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote class="posterous_long_quote"><p>There’s often a significant amount of debate between internal appsec groups and developer groups around the topic of false positives. What exactly determines whether something is or is not a true false positive? And how can appsec groups synchronize so as to reduce confusion on the topic?</p><p>Semantics lie at the center of many arguments, and the debate around “false positives” offers no exception. What I’ve found is that there are often two different meanings that are being used in a single discussion about false positives, and if each side doesn’t realize which definition the other is using, chaos will ensue. Here are the two definitions I most commonly encounter:</p><p>&nbsp;</p><ol><li><strong>The tool is claiming something that isn’t true</strong>, i.e. the vulnerability that it says it found actually was not found. One example of this might be the presence of a secretfile.aspx.bak file. The tool says it found the contents of this .aspx file, but when you look at the response you see that it’s no more than a custom 404 page.</li><li><strong>The finding is technically correct, but nobody cares</strong>, i.e. a finding comes back saying that a password value is being passed via GET request to a given application, and the issue has been fully explained to the development team and management; they’ve simply decided not to change it.</li></ol></blockquote>    <div class="posterous_quote_citation">via <a href="http://h30501.www3.hp.com/t5/The-HP-Security-Laboratory-Blog/Decoupling-the-False-Positive/ba-p/13319">h30501.www3.hp.com</a></div> <p>This is a post of mine over at the HP AppSec blog. Check it out.</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://posterous.danielmiessler.com/decoupling-the-false-positive-hp-appsec-blog">danielmiessler.com | posterous</a>  </p>  </div>
<div id="crp_related"><h3>Related Posts</h3><ul><li><a href="http://danielmiessler.com/blog/cookie-stealing-with-cross-site-scripting-explained-hp-application-security-blog" rel="bookmark" class="crp_title">Cookie Stealing With Cross-Site Scripting Explained | HP Application Security Blog</a></li><li><a href="http://danielmiessler.com/blog/abemiester-com-proper-input-length-validation" rel="bookmark" class="crp_title">AbeMiester.com | Proper input length validation.</a></li><li><a href="http://danielmiessler.com/blog/the-joy-of-stats-bbc" rel="bookmark" class="crp_title">The Joy of Stats | BBC</a></li><li><a href="http://danielmiessler.com/blog/powerful-ideas-scott-adams" rel="bookmark" class="crp_title">Powerful Ideas | Scott Adams</a></li><li><a href="http://danielmiessler.com/blog/false-flag" rel="bookmark" class="crp_title">False Flag</a></li><li><a href="http://danielmiessler.com/blog/the-maze-of-free-will-nytimes-com" rel="bookmark" class="crp_title">The Maze of Free Will &#8211; NYTimes.com</a></li><li><a href="http://danielmiessler.com/blog/flattr-now-open-for-everyone" rel="bookmark" class="crp_title">Flattr Now Open for Everyone</a></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/Mv3RhR6uQmlgrEIIKvileSmR9Lw/0/da"><img src="http://feedads.g.doubleclick.net/~a/Mv3RhR6uQmlgrEIIKvileSmR9Lw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Mv3RhR6uQmlgrEIIKvileSmR9Lw/1/da"><img src="http://feedads.g.doubleclick.net/~a/Mv3RhR6uQmlgrEIIKvileSmR9Lw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/blog_informationsecurity/~4/oKc1EQf-nvQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielmiessler.com/blog/decoupling-the-false-positive-hp-appsec-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://danielmiessler.com/blog/decoupling-the-false-positive-hp-appsec-blog</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached
Object Caching 3330/3833 objects using apc

Served from: danielmiessler.com @ 2011-03-13 01:27:51 -->

