<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Security Bloggers Network</title>
	
	<link>http://</link>
	<description>The Security Blog Network powered by Lijit</description>
	<pubDate>Sun, 15 Nov 2009 08:44:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SecurityBloggersNetwork" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Reverse SSH Tunnel Watchdog</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/91YQNdNEHSQ/reverse-ssh-tunnel-watchdog.html</link>
		<comments>http://feedproxy.google.com/~r/HiR/~3/Z8zvG1NIUCw/reverse-ssh-tunnel-watchdog.html#comments</comments>
		<pubDate>Sun, 15 Nov 2009 08:44:00 +0000</pubDate>
		<dc:creator>Ax0n</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[baz]]></category>

		<category><![CDATA[ssh]]></category>

		<category><![CDATA[tunneling]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-5554915078212081470.post-2170635023121689655</guid>
		<description><![CDATA[We've covered <a href="http://www.h-i-r.net/search/label/tunneling">tunneling</a> before on HiR. I even wrote a little about reverse tunneling in my <a href="http://www.h-i-r.net/2008/02/sysadmin-sunday-quick-dirty-ssh.html">quick-and-dirty tunneling howto</a>. This time, I'm building a setup to make an always-on reverse tunnel with a cron-powered watchdog script.<br /><br />Here's what's needed to make it work:<br /><ul><li>A Linux/BSD/Unix system on the inside of your target network that's capable of SSH-ing out to the Internet (even if via strange ports)<br /></li><li>An SSH server you control on the Internet. This can be at home, or elsewhere</li></ul><br />The reverse tunnel can handle pretty much any protocol. To a squid proxy, for example. I'll be using SSH to reverse-tunnel SSH, though, to allow SSH access to a server behind a firewall that I do not control. Here's how it'll work:<br /><br />Cron will run a script on the server on the inside. This script will check to see if the SSH tunnel is working properly. If it's not (or if it hasn't been started yet), it will start the reverse tunnel.<br /><br />Here's the script, which I put in /usr/local/bin/rtunnel.sh. Obviously, you need to edit the first 4 variables to reflect your environment.<br /><blockquote><span style="font-size:85%"><pre>#!/bin/sh<br />USERHOST=axon@somewhere.labs.h-i-r.net # Login and External system<br />RPORT=22 # SSH Listener port on your external system<br />FPORT=1337 # Port that will be opened locally to tunnel SSH<br />CONN=localhost:22   # SSH Listener on the system behind the firewall<br /><br />COMMAND="ssh -q -N -R $FPORT:$CONN $USERHOST -p $RPORT"<br />pgrep -f -x "$COMMAND" &#62; /dev/null 2&#62;&#38;1 &#124;&#124; $COMMAND<br />ssh $USERHOST -p $RPORT netstat -an &#124; egrep \<br />"tcp.*:$FPORT.*LISTEN"&#62;/dev/null 2&#62;&#38;1<br />if [ $? -ne 0 ] ; then<br />pkill -f -x "$COMMAND"<br />$COMMAND<br />fi</pre></span></blockquote>And then I put the entry in root's crontab, to run every 5 minutes:<br /><blockquote><pre><span style="color: rgb(51, 102, 255);font-size:85%">*/5     *       *       *       *       /usr/local/bin/rtunnel.sh</span><br /></pre></blockquote>In my implementation, the firewalled host (An OpenBSD box) is connecting to a Ubuntu desktop system at my home.  I can just log into it, then use the tunnel on port 1337, using the -p [port] option.<br /><pre><blockquote><span style="font-size:85%"><span style="color: rgb(0, 153, 0)">axon@somewhere:~$</span> <span style="color: rgb(51, 255, 51);font-weight: bold">ssh localhost -p 1337</span><br /><span style="color: rgb(0, 153, 0)">axon@localhost's password:</span><br /><span style="color: rgb(0, 153, 0)">Last login: Sat Nov 14 00:01:04 2009 from localhost.labs.h-i-r.net</span><br /><span style="color: rgb(0, 153, 0)">OpenBSD 4.5 (GENERIC) #1749: Sat Feb 28 14:51:18 MST 2009</span><br /><br /><span style="color: rgb(0, 153, 0)">Welcome to OpenBSD: The proactively secure Unix-like operating system.</span><br /><br /><span style="color: rgb(0, 153, 0)">Please use the sendbug(1) utility to report bugs in the system.</span><br /><span style="color: rgb(0, 153, 0)">Before reporting a bug, please try to reproduce it with the latest</span><br /><span style="color: rgb(0, 153, 0)">version of the code.  With bug reports, please try to ensure that</span><br /><span style="color: rgb(0, 153, 0)">enough information to reproduce the problem is enclosed, and if a</span><br /><span style="color: rgb(0, 153, 0)">known fix for it exists, include that as well.</span><br /><br /><span style="color: rgb(0, 153, 0)">-bash-3.2$</span></span></blockquote></pre><br />If the connection times out or fails for any other reason, the remote end should re-spawn the connection in the next 5 minutes.  If you've waited, and don't get a response, something else might be amiss. DNS rules, a network admin that's blocked you, etc...<br /><br />The one problem I've had is that occasionally the session will be alive, the port will be forwarded, but I can't get it to log in.  It just hangs then times out.  If this happens, I use lsof on my workstation to find and kill off the process that's listening on the TCP port I am using for forwarding.<br /><pre><span style="font-size:85%"><blockquote><span style="color: rgb(0, 153, 0)">axon@somewhere:~$</span> <span style="color: rgb(51, 255, 51);font-weight: bold">sudo lsof -n &#124; grep TCP.*:1337</span><br /><span style="color: rgb(0, 153, 0)">sshd   20386   axon    9u   IPv6    2862057  TCP [::1]:1337 (LISTEN)</span><br /><span style="color: rgb(0, 153, 0)">sshd   20386   axon   10u   IPv4    2862058  TCP 127.0.0.1:1337 (LISTEN)</span><br /><span style="color: rgb(0, 153, 0)">axon@somewhere:~$</span> <span style="font-weight: bold;color: rgb(51, 255, 51)">kill 20386</span></blockquote></span></pre>Of course, you can also tunnel stuff over this reverse tunnel.  The possibilities are endless!<div class="blogger-post-footer"><P>HiR Information Report is brought you you by <A HREF="http://edgeos.com">Edgeos</A>, Your Network Security Platform. We are proud members of the <A HREF="http://securitybloggers.net/">Security Bloggers Network</A>.</P>
<P>This content originally posted on <A HREF="http://www.h-i-r.net/">HiR Information Report</A>. Copyright © 1997-2009, HiR</P><img width='1' height='1'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/0/da"><img src="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/1/da"><img src="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/1/di" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/HiR?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/HiR?i=Z8zvG1NIUCw:DnsUdNFp73o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/HiR?i=Z8zvG1NIUCw:DnsUdNFp73o:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HiR/~4/Z8zvG1NIUCw" height="1">]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/5554915078212081470-2170635023121689655?l=www.h-i-r.net and new=http://www.h-i-r.net/https://blogger.googleusercontent.com/tracker/5554915078212081470-2170635023121689655?l=www.h-i-r.net --><p>We&#8217;ve covered <a href="http://www.h-i-r.net/search/label/tunneling">tunneling</a> before on HiR. I even wrote a little about reverse tunneling in my <a href="http://www.h-i-r.net/2008/02/sysadmin-sunday-quick-dirty-ssh.html">quick-and-dirty tunneling howto</a>. This time, I&#8217;m building a setup to make an always-on reverse tunnel with a cron-powered watchdog script.</p>
<p>Here&#8217;s what&#8217;s needed to make it work:
<ul>
<li>A Linux/BSD/Unix system on the inside of your target network that&#8217;s capable of SSH-ing out to the Internet (even if via strange ports)</li>
<li>An SSH server you control on the Internet. This can be at home, or elsewhere</li>
</ul>
<p>The reverse tunnel can handle pretty much any protocol. To a squid proxy, for example. I&#8217;ll be using SSH to reverse-tunnel SSH, though, to allow SSH access to a server behind a firewall that I do not control. Here&#8217;s how it&#8217;ll work:</p>
<p>Cron will run a script on the server on the inside. This script will check to see if the SSH tunnel is working properly. If it&#8217;s not (or if it hasn&#8217;t been started yet), it will start the reverse tunnel.</p>
<p>Here&#8217;s the script, which I put in /usr/local/bin/rtunnel.sh. Obviously, you need to edit the first 4 variables to reflect your environment.<br />
<blockquote ><span >
<pre>#!/bin/shUSERHOST=axon@somewhere.labs.h-i-r.net # Login and External systemRPORT=22 # SSH Listener port on your external systemFPORT=1337 # Port that will be opened locally to tunnel SSHCONN=localhost:22   # SSH Listener on the system behind the firewall

COMMAND="ssh -q -N -R $FPORT:$CONN $USERHOST -p $RPORT"pgrep -f -x "$COMMAND" > /dev/null 2>&amp;1 || $COMMANDssh $USERHOST -p $RPORT netstat -an | egrep \"tcp.*:$FPORT.*LISTEN">/dev/null 2>&amp;1if [ $? -ne 0 ] ; thenpkill -f -x "$COMMAND"$COMMANDfi</pre>
<p></span></p></blockquote>
<p>And then I put the entry in root&#8217;s crontab, to run every 5 minutes:<br />
<blockquote>
<pre><span  >*/5     *       *       *       *       /usr/local/bin/rtunnel.sh</span></pre>
</blockquote>
<p>In my implementation, the firewalled host (An OpenBSD box) is connecting to a Ubuntu desktop system at my home.  I can just log into it, then use the tunnel on port 1337, using the -p [port] option.
<pre>
<blockquote><span ><span >axon@somewhere:~$</span> <span >ssh localhost -p 1337</span><span >axon@localhost's password:</span><span >Last login: Sat Nov 14 00:01:04 2009 from localhost.labs.h-i-r.net</span><span >OpenBSD 4.5 (GENERIC) #1749: Sat Feb 28 14:51:18 MST 2009</span>

<span >Welcome to OpenBSD: The proactively secure Unix-like operating system.</span>

<span >Please use the sendbug(1) utility to report bugs in the system.</span><span >Before reporting a bug, please try to reproduce it with the latest</span><span >version of the code.  With bug reports, please try to ensure that</span><span >enough information to reproduce the problem is enclosed, and if a</span><span >known fix for it exists, include that as well.</span>

<span >-bash-3.2$</span></span></blockquote>
</pre>
<p>If the connection times out or fails for any other reason, the remote end should re-spawn the connection in the next 5 minutes.  If you&#8217;ve waited, and don&#8217;t get a response, something else might be amiss. DNS rules, a network admin that&#8217;s blocked you, etc&#8230;</p>
<p>The one problem I&#8217;ve had is that occasionally the session will be alive, the port will be forwarded, but I can&#8217;t get it to log in.  It just hangs then times out.  If this happens, I use lsof on my workstation to find and kill off the process that&#8217;s listening on the TCP port I am using for forwarding.
<pre><span >
<blockquote><span >axon@somewhere:~$</span> <span >sudo lsof -n | grep TCP.*:1337</span><span >sshd   20386   axon    9u   IPv6    2862057  TCP [::1]:1337 (LISTEN)</span><span >sshd   20386   axon   10u   IPv4    2862058  TCP 127.0.0.1:1337 (LISTEN)</span><span >axon@somewhere:~$</span> <span >kill 20386</span></blockquote>

</span></pre>
<p>Of course, you can also tunnel stuff over this reverse tunnel.  The possibilities are endless!
<div class="blogger-post-footer"><P>HiR Information Report is brought you you by <A HREF="http://edgeos.com">Edgeos</A>, Your Network Security Platform. We are proud members of the <A HREF="http://securitybloggers.net/">Security Bloggers Network</A>.</P><br />
<P>This content originally posted on <A HREF="http://www.h-i-r.net/">HiR Information Report</A>. Copyright © 1997-2009, HiR</P><img width='1' height='1' src='http://www.h-i-r.net/https://blogger.googleusercontent.com/tracker/5554915078212081470-2170635023121689655?l=www.h-i-r.net'/></div>
<p><a href="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/0/da"><img src="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/1/da"><img src="http://feedads.g.doubleclick.net/~a/IZpg81XcOwTo_dNsuSI4cz6FTAM/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/HiR?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/HiR?i=Z8zvG1NIUCw:DnsUdNFp73o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HiR?a=Z8zvG1NIUCw:DnsUdNFp73o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/HiR?i=Z8zvG1NIUCw:DnsUdNFp73o:F7zBnMyn0Lo" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/HiR/~4/Z8zvG1NIUCw" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/-1TjPORWYWoiBXM8qPyQI3-kKlw/0/da"><img src="http://feedads.g.doubleclick.net/~a/-1TjPORWYWoiBXM8qPyQI3-kKlw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-1TjPORWYWoiBXM8qPyQI3-kKlw/1/da"><img src="http://feedads.g.doubleclick.net/~a/-1TjPORWYWoiBXM8qPyQI3-kKlw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/91YQNdNEHSQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/HiR/~3/Z8zvG1NIUCw/reverse-ssh-tunnel-watchdog.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/HiR/~3/Z8zvG1NIUCw/reverse-ssh-tunnel-watchdog.html</feedburner:origLink></item>
		<item>
		<title>Cyber Defense News Daily Digest 2009-11-14</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/WKQDBdd28fg/</link>
		<comments>http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 04:59:59 +0000</pubDate>
		<dc:creator>Richard Stiennon</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[cyber war]]></category>

		<category><![CDATA[Cyberwar]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[stiennon]]></category>

		<category><![CDATA[threatchaos]]></category>

		<guid isPermaLink="false">http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/</guid>
		<description><![CDATA[<div style="float: right;width: 42px;padding-right: 10px;margin: 0 0 0 10px">



</div>

National Journal on use of &#8220;cyber attacks&#8221; against Iraqi insurgents by Bush . http://bit.ly/H851n #
Shadowserver analysis of July 4th attacks: http://tinyurl.com/nhbfrk #
Finished putting together DDoS preso for Thursday&#8217;s Webinar with Verisign: Sign up here!   http://tinyurl.com/yl7xt4m #

Post from: ThreatChaos
Cyber Defense News Daily Digest 2009-11-14
]]></description>
			<content:encoded><![CDATA[<div ><script type="text/javascript">
<!--
digg_url = 'http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = '';
digg_title = 'Cyber Defense News Daily Digest 2009-11-14';
digg_bodytext = '';
digg_media = 'news';
digg_topic = 'security';
//-->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<ul class="aktt_tweet_digest">
<li>National Journal on use of &#8220;cyber attacks&#8221; against Iraqi insurgents by Bush . <a href="http://bit.ly/H851n" rel="nofollow">http://bit.ly/H851n</a> <a href="http://twitter.com/cyberwar/statuses/5692022597">#</a></li>
<li>Shadowserver analysis of July 4th attacks: <a href="http://tinyurl.com/nhbfrk" rel="nofollow">http://tinyurl.com/nhbfrk</a> <a href="http://twitter.com/cyberwar/statuses/5710481901">#</a></li>
<li>Finished putting together DDoS preso for Thursday&#8217;s Webinar with Verisign: Sign up here!   <a href="http://tinyurl.com/yl7xt4m" rel="nofollow">http://tinyurl.com/yl7xt4m</a> <a href="http://twitter.com/cyberwar/statuses/5710686084">#</a></li>
</ul>
<p>Post from: <a href="http://threatchaos.com">ThreatChaos</a></p>
<p><a href="http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/">Cyber Defense News Daily Digest 2009-11-14</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/NjCB7bMdVhaV0H4AtBUh2zuxBqU/0/da"><img src="http://feedads.g.doubleclick.net/~a/NjCB7bMdVhaV0H4AtBUh2zuxBqU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NjCB7bMdVhaV0H4AtBUh2zuxBqU/1/da"><img src="http://feedads.g.doubleclick.net/~a/NjCB7bMdVhaV0H4AtBUh2zuxBqU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/WKQDBdd28fg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/feed/</wfw:commentRss>
		<feedburner:origLink>http://threatchaos.com/2009/11/cyber-defense-news-daily-digest-2009-11-14/</feedburner:origLink></item>
		<item>
		<title>All Posts on AES</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/zmCNODWl2Rk/all-posts-on-aes.html</link>
		<comments>http://lukenotricks.blogspot.com/2009/11/all-posts-on-aes.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 23:36:00 +0000</pubDate>
		<dc:creator>Dr. Luke O'Connor</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[aes]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-2659416969867866171.post-4019808012847620186</guid>
		<description><![CDATA[I have collected all my AES posts here for convenient reference from my blog homepage.           The Luxembourg Attacks and AES-256AES-256 and Reputational Risk    The spin on passwords for AES     Are AES 256-bit keys too large?  ]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/2659416969867866171-4019808012847620186?l=lukenotricks.blogspot.com and new=http://lukenotricks.blogspot.com/https://blogger.googleusercontent.com/tracker/2659416969867866171-4019808012847620186?l=lukenotricks.blogspot.com --><p align="justify">I have collected all my AES posts here for convenient reference from my blog homepage.  </p>
<ul>
<li><a href="http://lukenotricks.blogspot.com/2009/09/luxembourg-attacks-and-aes-256.html">The Luxembourg Attacks and AES-256</a></li>
<li><a href="http://lukenotricks.blogspot.com/2009/05/aes-256-and-reputational-risk.html">AES-256 and Reputational Risk</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/12/spin-on-passwords-and-aes.html">The spin on passwords for AES</a> </li>
<li><a href="http://lukenotricks.blogspot.com/2008/07/are-aes-256-bit-keys-too-large.html">Are AES 256-bit keys too large?</a> </li>
</ul>
<div class="blogger-post-footer"><img width='1' height='1' src='http://lukenotricks.blogspot.com/https://blogger.googleusercontent.com/tracker/2659416969867866171-4019808012847620186?l=lukenotricks.blogspot.com'/></div>

<p><a href="http://feedads.g.doubleclick.net/~a/Zr00caymY3a1fpSjk9pmfFIe33Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/Zr00caymY3a1fpSjk9pmfFIe33Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Zr00caymY3a1fpSjk9pmfFIe33Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/Zr00caymY3a1fpSjk9pmfFIe33Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/zmCNODWl2Rk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lukenotricks.blogspot.com/2009/11/all-posts-on-aes.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://lukenotricks.blogspot.com/2009/11/all-posts-on-aes.html</feedburner:origLink></item>
		<item>
		<title>All Posts on Passwords</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/HL-BU3cF-b8/all-posts-on-passwords.html</link>
		<comments>http://lukenotricks.blogspot.com/2009/11/all-posts-on-passwords.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 23:24:00 +0000</pubDate>
		<dc:creator>Dr. Luke O'Connor</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[passwords]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-2659416969867866171.post-1811267282317633624</guid>
		<description><![CDATA[I have collected all my passwords posts here for convenient reference from my blog homepage.           Outline of a book on Passwords            How will my loved ones break my password?             Enterprise Password Management Guidelines from NIST  ...]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/2659416969867866171-1811267282317633624?l=lukenotricks.blogspot.com and new=http://lukenotricks.blogspot.com/https://blogger.googleusercontent.com/tracker/2659416969867866171-1811267282317633624?l=lukenotricks.blogspot.com --><p align="justify">I have collected all my passwords posts here for convenient reference from my blog homepage. </p>
<ul>
<li>
<div align="justify"><a href="http://lukenotricks.blogspot.com/2009/11/outline-of-book-on-passwords.html">Outline of a book on Passwords</a></div>
</li>
<li>
<div align="justify"><a href="http://lukenotricks.blogspot.com/2009/07/how-will-my-loved-ones-break-my.html">How will my loved ones break my password?</a> </div>
</li>
<li>
<div align="justify"><a href="http://lukenotricks.blogspot.com/2009/06/enterprise-password-management.html">Enterprise Password Management Guidelines from NIST</a></div>
</li>
<li><a href="http://lukenotricks.blogspot.com/2009/06/boys-are-back-in-town-return-of.html">The Boys are Back in Town – the return of L0PHT</a></li>
<li><a href="http://lukenotricks.blogspot.com/2009/05/rethinking-thresholds-for-account.html">Rethinking Thresholds for Account Lockouts</a></li>
<li><a href="http://lukenotricks.blogspot.com/2009/05/password-roundup-2.html">Password Roundup #2</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/03/nist-passwords-and-entropy.html">NIST, Passwords and Entropy</a></li>
<li><a href="http://lukenotricks.blogspot.com/2009/04/password-roundup-1.html">Password Roundup #1</a></li>
<li><a href="http://lukenotricks.blogspot.com/2009/01/downadups-password-cracking-list.html">Downadup&#8217;s Password Cracking List</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/12/spin-on-passwords-and-aes.html">The spin on passwords for AES</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/07/some-black-swans-in-it-security.html">Some Black Swans in IT Security</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/07/are-aes-256-bit-keys-too-large.html">Are AES 256-bit keys too large?</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/03/more-on-counting-restrictive-password.html">More on Counting Restrictive Password Spaces</a></li>
<li><a href="http://lukenotricks.blogspot.com/2008/03/counting-restricted-password-spaces.html">Counting Restricted Password Spaces</a></li>
</ul>
<div class="blogger-post-footer"><img width='1' height='1' src='http://lukenotricks.blogspot.com/https://blogger.googleusercontent.com/tracker/2659416969867866171-1811267282317633624?l=lukenotricks.blogspot.com'/></div>

<p><a href="http://feedads.g.doubleclick.net/~a/uxYgo04ffWXMGeclVn46SuizrWs/0/da"><img src="http://feedads.g.doubleclick.net/~a/uxYgo04ffWXMGeclVn46SuizrWs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uxYgo04ffWXMGeclVn46SuizrWs/1/da"><img src="http://feedads.g.doubleclick.net/~a/uxYgo04ffWXMGeclVn46SuizrWs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/HL-BU3cF-b8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lukenotricks.blogspot.com/2009/11/all-posts-on-passwords.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://lukenotricks.blogspot.com/2009/11/all-posts-on-passwords.html</feedburner:origLink></item>
		<item>
		<title>Researcher busts into Twitter via SSL reneg hole</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/8S7D1J3_-9k/Researcher-busts-into-Twitter-via-SSL-reneg</link>
		<comments>http://raistlin.soup.io/post/34693930/Researcher-busts-into-Twitter-via-SSL-reneg#comments</comments>
		<pubDate>Sat, 14 Nov 2009 19:59:53 +0000</pubDate>
		<dc:creator>Security Circus</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[link]]></category>

		<guid isPermaLink="false">urn:www-soup-io:1:34693930</guid>
		<description><![CDATA[<p>So much for "it's a theoretical issue"...</p> <p><a href="http://www.theregister.co.uk/2009/11/14/ssl_renegotiation_bug_exploited/">http://www.theregister.co.uk/2009/11/14/ssl_renegotiation_bug_exploited/</a></p>]]></description>
			<content:encoded><![CDATA[<p>So much for &#8220;it&#8217;s a theoretical issue&#8221;&#8230;</p>
<p><a href="http://www.theregister.co.uk/2009/11/14/ssl_renegotiation_bug_exploited/">http://www.theregister.co.uk/2009/11/14/ssl_renegotiation_bug_exploited/</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Cj1l6nCXoUOfEa7qhvzI-VUklhs/0/da"><img src="http://feedads.g.doubleclick.net/~a/Cj1l6nCXoUOfEa7qhvzI-VUklhs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Cj1l6nCXoUOfEa7qhvzI-VUklhs/1/da"><img src="http://feedads.g.doubleclick.net/~a/Cj1l6nCXoUOfEa7qhvzI-VUklhs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/8S7D1J3_-9k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://raistlin.soup.io/post/34693930/Researcher-busts-into-Twitter-via-SSL-reneg/feed/</wfw:commentRss>
		<feedburner:origLink>http://raistlin.soup.io/post/34693930/Researcher-busts-into-Twitter-via-SSL-reneg</feedburner:origLink></item>
		<item>
		<title>Creative Server Installs - WAN Boot on Solaris (SPARC)</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/7umjGf2hxWw/creative-server-installs-wan-boot-on.html</link>
		<comments>http://feedproxy.google.com/~r/LastInFirstOut/~3/OXzqmW0_ARM/creative-server-installs-wan-boot-on.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 19:30:00 +0000</pubDate>
		<dc:creator>Michael Janke</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-4806502804647119766.post-4383877830075011511</guid>
		<description><![CDATA[Sun's SPARC servers have the ability to boot a kernel and run  an installer across a routed network using only HTTP or HTTPS. On SPARC platforms, the 
(BIOS&#124;Firmware&#124;Boot PROM) can download a bootable kernel and mini root file 
system via HTTP/HTTPS, b...]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/4806502804647119766-4383877830075011511?l=lastinfirstout.blogspot.com and new=http://lastinfirstout.blogspot.com/https://blogger.googleusercontent.com/tracker/4806502804647119766-4383877830075011511?l=lastinfirstout.blogspot.com --><p>Sun&#8217;s SPARC servers have the ability to <a href="http://draft.blogger.com/%20http://docs.sun.com/app/docs/doc/817-5504/6mkv4nh5m?a=view">boot a kernel and run  an installer</a> across a routed network using only HTTP or HTTPS. On SPARC platforms, the<br />
(BIOS|Firmware|Boot PROM) can download a bootable kernel and mini root file<br />
system via HTTP/HTTPS, boot from the mini root, and then download and install Solaris. This allows booting a server across a local or wide area network without having <i>any</i><br />
 bootable media attached to the chassis. All you need is a serial console, a network connection, an<br />
IP address, a default gateway and a web server that&#8217;s accessible from the bare SPARC server. You set a few variables, then tell it to boot. Yep, it&#8217;s cool. </p>
<p>From the Boot PROM prompt (the SPARC equivalent of the<br />
BIOS)</p>
<blockquote><p>
<kbd>OK&gt;</kbd><b><kbd> setenv </kbd></b><kbd>network-boot-arguments</kbd><b><kbd>  host-ip=</kbd></b><kbd><var>client-IP</var></kbd><b><kbd>,</kbd></b><br />
<b><kbd>router-ip=</kbd></b><kbd><var>router-ip</var></kbd><b><kbd>,subnet-mask=</kbd></b><kbd><var>mask-value</var></kbd><b><kbd>,</kbd></b><br />
<b><kbd>hostname=</kbd></b><kbd><var>client-name</var></kbd><b><kbd>,http-proxy=</kbd></b><kbd><var>proxy-ip:port</var></kbd><b><kbd>,</kbd></b><br />
<b><kbd>file=</kbd></b><kbd><var>wanbootCGI-URL</var></kbd><kbd><var></var></kbd><br />
<kbd><var></var></kbd>
</p></blockquote>
<blockquote><p>
<kbd>OK&gt; <b>boot<kbd><var></var></kbd></b><b><kbd><var> net -v install</var></kbd></b><br />
</kbd>
</p></blockquote>
<p>Our base Solaris install is fairly small - on the order of a<br />
 few hundred megabytes - so booting across a WAN through a proxy or<br />
an SSH tunnel works pretty well. We usually build a temporary SSH tunnel from our management&nbsp; infrastructure out to another server in the same security container and point the new server at the tunnel end point.</p>
<p>PXE is an attempt to provide similar functionality. It&#8217;s got a<br />
dependency on having DHCP available on the deployed subnet, something<br />
which I&#8217;m absolutely do not want to enable on non-desktop networks, and<br />
it&#8217;s based on UDP, which makes it slightly less suitable for booting<br />
across WAN&#8217;s where packet loss might be an issue. In any case, we&#8217;ve had<br />
 enough issues with network boots on x86/x64 platforms that we&#8217;ve pretty<br />
 much defaulted to using bootable USB&#8217;s or CD/DVD&#8217;s for remote installs. That makes an x86/x64 deploy significantly more work effort, as we have to arrange for a bootable USB or CD/DVD&#8217;s to be delivered on site, or we need to leave bootable media installed in production servers.</p>
<p>Linux<br />
 has &#8216;<a href="http://www.howtoforge.com/boot-linux-over-http-with-boot.kernel.org-bko">BKO</a>&#8216;, but as far as I can tell, it&#8217;s still dependent on having<br />
either bootable media or PXE.</p>
<p>SPARC&#8217;s Wan boot is pretty slick, but not as slick as Cisco&#8217;s <a href="http://www.cisco.com/warp/public/417/12.html">AutoInstall</a>. AutoInstall allows you to drop ship an unconfigured router to a remote site. The router will learn it&#8217;s IP address from it&#8217;s upstream router via either SLARP or BootP,&nbsp; automatically download a configuration file, and re-boot with a valid configuration. </p>
<p>A couple of closing thoughts: </p>
<ul>
<li>If the SPARC platform ever goes away, I&#8217;ll miss it. </li>
<li>If router engineers ever decide to build application servers, they&#8217;d probably come up with radically new ways of solving old problems.&nbsp;</li>
</ul>
<div class="blogger-post-footer">
<p>
&#8212;
</p>
<p><img width='1' height='1' src='http://lastinfirstout.blogspot.com/https://blogger.googleusercontent.com/tracker/4806502804647119766-4383877830075011511?l=lastinfirstout.blogspot.com'/></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LastInFirstOut?a=OXzqmW0_ARM:DwU0xcmAawg:4cEx4HpKnUU"><img src="http://feeds.feedburner.com/~ff/LastInFirstOut?i=OXzqmW0_ARM:DwU0xcmAawg:4cEx4HpKnUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LastInFirstOut?a=OXzqmW0_ARM:DwU0xcmAawg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LastInFirstOut?i=OXzqmW0_ARM:DwU0xcmAawg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LastInFirstOut?a=OXzqmW0_ARM:DwU0xcmAawg:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/LastInFirstOut?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LastInFirstOut?a=OXzqmW0_ARM:DwU0xcmAawg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/LastInFirstOut?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LastInFirstOut?a=OXzqmW0_ARM:DwU0xcmAawg:3QFJfmc7Om4"><img src="http://feeds.feedburner.com/~ff/LastInFirstOut?i=OXzqmW0_ARM:DwU0xcmAawg:3QFJfmc7Om4" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/LastInFirstOut/~4/OXzqmW0_ARM" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/sYZGVlSMEliyGUoSMgJEZWGXSaA/0/da"><img src="http://feedads.g.doubleclick.net/~a/sYZGVlSMEliyGUoSMgJEZWGXSaA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sYZGVlSMEliyGUoSMgJEZWGXSaA/1/da"><img src="http://feedads.g.doubleclick.net/~a/sYZGVlSMEliyGUoSMgJEZWGXSaA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/7umjGf2hxWw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/LastInFirstOut/~3/OXzqmW0_ARM/creative-server-installs-wan-boot-on.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/LastInFirstOut/~3/OXzqmW0_ARM/creative-server-installs-wan-boot-on.html</feedburner:origLink></item>
		<item>
		<title>Win7 vs. FDCC</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/AS2fBYqw77k/eb347408a62db23ae9248858.html</link>
		<comments>http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 17:37:00 +0000</pubDate>
		<dc:creator>secway</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[CyberSecurity]]></category>

		<guid isPermaLink="false">http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html</guid>
		<description><![CDATA[
		
		<p>纯转贴:</p>
<p>Government Use Of Windows 7 Hinges On Security Spec</p>
<p>The Federal Desktop Core Configuration, which defines 300 PC settings for improved security, has yet to be finalized for Windows 7.</p>
<p><font size="2" face="geneva,arial,helvetica">By J. Nicholas Hoover,  <a href="http://www.informationweek.com/;jsessionid=FOGPRL22RV0ALQE1GHOSKH4ATMY32JVN" target="_blank">InformationWeek </a><br />
Nov. 12, 2009 <br />
URL: <a href="http://www.informationweek.com/story/showArticle.jhtml?articleID=221601528">http://www.informationweek.com/story/showArticle.jhtml?articleID=221601528 </a><br />
<br />
</font></p>
<p>More than a dozen federal agencies, including the White House and all branches of the military, are testing Windows 7, according to Microsoft. But<font color="#ff0000"> it may be another six months before agencies can move ahead with Windows 7 deployment because a government-mandated security standard hasn't been finalized. </font></p>
<p>The Federal Desktop Core Configuration spells out 300 settings for Windows PCs and laptops, with a goal of making them less vulnerable to hackers and data breaches. FDCC settings exist for Windows XP and Windows Vista, but not yet for Windows 7.</p>
<p>&#34;It will take until spring 2010, at least,&#34; said Ken Page, Microsoft's FDCC program manager, in a presentation today at Microsoft's Washington, D.C., office. &#34;This process does not happen fast.&#34;</p>
<p>A number of agencies are pilot testing Windows 7, including all branches of the military, the FDIC, White House, Internal Revenue Service, National Archives, and the Departments of Agriculture, Interior, Homeland Security, Justice, said Page.</p>
<p>The Department of Defense, with input from Microsoft, is taking the lead in defining the FDCC for Windows 7 and drafted initial settings in June at Microsoft's Redmond, Wash., headquarters. The next step is for DOD deputy CIO Dave Wennergren to sign off on the specs, which Microsoft program manager Page expects to happen within days. After that, the configuration will be vetted by the Federal CIO Council and by the National Institute of Standards and Technology.</p>
<p>NIST will post the government's FDCC proposal for public comment. NIST has already built a lab for creating and testing operating system images and has begun exploring the feasibility of a &#34;cloud solution&#34; that would let agencies do FDCC compatibility and compliance testing remotely.</p>
<p>FDCC started as an Air Force project to cut down on the array of OS images it managed, and was later mandated government-wide by the Office of Management and Budget. Over the past five years, the <font color="#0000ff">Air Force has saved $140 million through FDCC and bulk purchasing, taken security patch times down from 57 days to 3 days, and cut back on help desk calls to Microsoft by 40%,</font> says Nate Morin, Microsoft's team architect for the Air Force.</p>
<p><font color="#ff0000">The Air Force recently completed its migration to Windows Vista. Microsoft expects that within six to seven months of the release of the Windows 7 FDCC, the Air Force will roll out Windows 7 to<strong> almost all</strong> of its 525,000 desktops. </font></p>
<p> </p> <a href="http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html">阅读全文</a>
		
		<br /><b>类别：</b><a href="http://hi.baidu.com/secway/blog/category/Cybersecurity">Cybersecurity</a>&#160;<a href="http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html#comment">查看评论</a>]]></description>
			<content:encoded><![CDATA[
<p>纯转贴:</p>
<p>Government Use Of Windows 7 Hinges On Security Spec</p>
<p>The Federal Desktop Core Configuration, which defines 300 PC settings for improved security, has yet to be finalized for Windows 7.</p>
<p><font size="2" face="geneva,arial,helvetica">By J. Nicholas Hoover,  <a href="http://www.informationweek.com/;jsessionid=FOGPRL22RV0ALQE1GHOSKH4ATMY32JVN" >InformationWeek </a><br />
Nov. 12, 2009 <br />
URL: <a href="http://www.informationweek.com/story/showArticle.jhtml?articleID=221601528">http://www.informationweek.com/story/showArticle.jhtml?articleID=221601528 </a></p>
<p></font></p>
<p>More than a dozen federal agencies, including the White House and all branches of the military, are testing Windows 7, according to Microsoft. But<font color="#ff0000"> it may be another six months before agencies can move ahead with Windows 7 deployment because a government-mandated security standard hasn&#8217;t been finalized. </font></p>
<p>The Federal Desktop Core Configuration spells out 300 settings for Windows PCs and laptops, with a goal of making them less vulnerable to hackers and data breaches. FDCC settings exist for Windows XP and Windows Vista, but not yet for Windows 7.</p>
<p>&quot;It will take until spring 2010, at least,&quot; said Ken Page, Microsoft&#8217;s FDCC program manager, in a presentation today at Microsoft&#8217;s Washington, D.C., office. &quot;This process does not happen fast.&quot;</p>
<p>A number of agencies are pilot testing Windows 7, including all branches of the military, the FDIC, White House, Internal Revenue Service, National Archives, and the Departments of Agriculture, Interior, Homeland Security, Justice, said Page.</p>
<p>The Department of Defense, with input from Microsoft, is taking the lead in defining the FDCC for Windows 7 and drafted initial settings in June at Microsoft&#8217;s Redmond, Wash., headquarters. The next step is for DOD deputy CIO Dave Wennergren to sign off on the specs, which Microsoft program manager Page expects to happen within days. After that, the configuration will be vetted by the Federal CIO Council and by the National Institute of Standards and Technology.</p>
<p>NIST will post the government&#8217;s FDCC proposal for public comment. NIST has already built a lab for creating and testing operating system images and has begun exploring the feasibility of a &quot;cloud solution&quot; that would let agencies do FDCC compatibility and compliance testing remotely.</p>
<p>FDCC started as an Air Force project to cut down on the array of OS images it managed, and was later mandated government-wide by the Office of Management and Budget. Over the past five years, the <font color="#0000ff">Air Force has saved $140 million through FDCC and bulk purchasing, taken security patch times down from 57 days to 3 days, and cut back on help desk calls to Microsoft by 40%,</font> says Nate Morin, Microsoft&#8217;s team architect for the Air Force.</p>
<p><font color="#ff0000">The Air Force recently completed its migration to Windows Vista. Microsoft expects that within six to seven months of the release of the Windows 7 FDCC, the Air Force will roll out Windows 7 to<strong> almost all</strong> of its 525,000 desktops. </font></p>
</p>
<p> <a href="http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html">阅读全文</a></p>
<p>		<br/><b>类别：</b><a href="http://hi.baidu.com/secway/blog/category/Cybersecurity">Cybersecurity</a>&nbsp;<a href="http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html#comment">查看评论</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/_y083gxzimZtJlBKOJ16L5Vophk/0/da"><img src="http://feedads.g.doubleclick.net/~a/_y083gxzimZtJlBKOJ16L5Vophk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_y083gxzimZtJlBKOJ16L5Vophk/1/da"><img src="http://feedads.g.doubleclick.net/~a/_y083gxzimZtJlBKOJ16L5Vophk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/AS2fBYqw77k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://hi.baidu.com/secway/blog/item/eb347408a62db23ae9248858.html</feedburner:origLink></item>
		<item>
		<title>In the Proudest Traditions of the Royal Navy</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/aBR_1Tw5LZk/in_the_proudest_tradition.html</link>
		<comments>http://www.emergentchaos.com/archives/2009/11/in_the_proudest_tradition.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 17:21:59 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Current Events]]></category>

		<guid isPermaLink="false">tag:feeds.feedburner.com://7a700bfd1f9df350e6eb61e73a2e7d0a</guid>
		<description><![CDATA[The Royal Fleet Auxiliary ship Wave Knight <a href="http://news.bbc.co.uk/2/hi/uk_news/8359575.stm">watched a yacht be hijacked</a> for fear of harming its passengers.
<p>
All stand for a rousing round of "Ain't gonna study war no more."
<p>]]></description>
			<content:encoded><![CDATA[<p>The Royal Fleet Auxiliary ship Wave Knight <a href="http://news.bbc.co.uk/2/hi/uk_news/8359575.stm">watched a yacht be hijacked</a> for fear of harming its passengers.</p>
<p>
All stand for a rousing round of &#8220;Ain&#8217;t gonna study war no more.&#8221;</p>
<p>

<p><a href="http://feedads.g.doubleclick.net/~a/LN8_oQy7ay6EDjYLlj1f-TBjt58/0/da"><img src="http://feedads.g.doubleclick.net/~a/LN8_oQy7ay6EDjYLlj1f-TBjt58/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LN8_oQy7ay6EDjYLlj1f-TBjt58/1/da"><img src="http://feedads.g.doubleclick.net/~a/LN8_oQy7ay6EDjYLlj1f-TBjt58/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/aBR_1Tw5LZk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.emergentchaos.com/archives/2009/11/in_the_proudest_tradition.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.emergentchaos.com/archives/2009/11/in_the_proudest_tradition.html</feedburner:origLink></item>
		<item>
		<title>Government Officials To Search Private Accounts Without Warrants</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/3FFlmpHRlN8/</link>
		<comments>http://blog.brickhousesecurity.com/2009/11/14/global-anti-piracy-treaty/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 13:43:47 +0000</pubDate>
		<dc:creator>Stan Shyshkin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[anti-piracy]]></category>

		<category><![CDATA[Cyber law]]></category>

		<category><![CDATA[Internet Security]]></category>

		<category><![CDATA[Security news]]></category>

		<guid isPermaLink="false">http://blog.brickhousesecurity.com/?p=5507</guid>
		<description><![CDATA[ A secret global treaty, the Anti-Counterfeiting Trade Agreement was leaked on the &#8220;total transparency&#8221; site Wikileaks. This treaty can have a huge affect on the way the Internet is used, and how people that download copyrighted material will get punished. Under the ACTA, Internet providers (I.S.P.s)  in the U.S., Europe, Japan, Korea, and other [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Generated by Digg Digg plugin,<br />
    Author : Yong Mook Kim<br />
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/<br />
	-->
<div >
<table border=0 bgcolor=#ffffff>
<td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fblog.brickhousesecurity.com%2F2009%2F11%2F14%2Fglobal-anti-piracy-treaty%2F&amp;source=brickhousesecur&amp; ' height='61' width='50' frameborder='0' scrolling='no'></iframe></td>
</table>
</div>
<p><img class="alignleft size-thumbnail wp-image-5508" title="anti-piracyseal" src="http://blog.brickhousesecurity.com/wp-content/uploads/2009/11/anti-piracyseal-150x150.jpg" alt="anti piracyseal 150x150 Government Officials To Search Private Accounts Without Warrants" width="150" height="150" />A secret global treaty, the <a href="http://en.wikipedia.org/wiki/Anti-Counterfeiting_Trade_Agreement">Anti-Counterfeiting Trade Agreement</a> was leaked on the &#8220;total transparency&#8221; site <a href="http://wikileaks.org/wiki/Wikileaks"><span class="misspell">Wikileaks</span></a>. This treaty can have a huge affect on the way the Internet is used, and how people that download copyrighted material will get punished. Under the <span class="misspell">ACTA</span>, Internet providers (I.S.P.s)  in the U.S., Europe, Japan, Korea, and other signatory markets will be required to monitor their users activity online, or face huge lawsuits themselves. Any material that will be considered copyrighted will have to be removed as soon as found, even without proof of infringement of copyright. Even casual violators will be threatened with losing Internet access and facing criminal charges. The worst part is that service providers, customs agents, and law enforcement officials will have the power to search private accounts and personal devices such as laptops, MP3 players, and even cellphones all without the need of warrants or probable cause.</p>
<div >However, this treaty will not work out well in Asia since no one respects the concept of intellectual property is considered to be free to the public domain.</div>
<blockquote>
<div >&#8220;It&#8217;s almost like there&#8217;s an institutional disrespect for copyright in Asia&#8230; People feel like, &#8216;If I can&#8217;t touch it, why should I have to pay for it?&#8217;&#8221; says <span class="misspell">Seung</span> <span class="misspell">Bak</span>, <span class="misspell">co founder</span> of the video streaming <span class="misspell">startup</span> <a href="http://www.dramafever.com/"><span class="misspell">DramaFever</span></a>, which brings free, English-subtitled Asian television to U.S. audiences.</div>
</blockquote>
<div ><img class="alignleft size-thumbnail wp-image-5509" title="iphone-knockoff" src="http://blog.brickhousesecurity.com/wp-content/uploads/2009/11/iphone-knockoff-150x150.jpg" alt="iphone knockoff 150x150 Government Officials To Search Private Accounts Without Warrants" width="150" height="150" />In places like China and Korea, the disrespect of copyright laws actually leads to innovation and better products. Even before the official release of new models of technology like the <a id="uius" title="IPhone" href="http://www.shanzai.com/index.php/bandit-gadgets/phones/307-iphone-clone-sports-a-full-keyboard">iPhone</a>, <a id="z33n" title="BlackBerry" href="http://blackberryrocks.com/2009/06/18/obama-unofficially-endorses-blockberry-9500/"><span class="misspell">BlackBerry</span></a>, or the <a id="e3o:" title="Sony Vaio-P laptops" href="http://www.shanzai.com/index.php/bandit-gadgets/notebooks-a-netbooks/7-whos-the-fairest-netbook-of-them-all">Sony <span class="misspell">Vaio</span>-P laptops</a>, these nations had better running and and improved versions on sale, and all for cheaper prices then they went for officially (links point to the knock-off versions).</div>
<p>With Korea&#8217;s extremely fast Internet connection, most of the companies who own copyrighted material actually try to work with the <span class="misspell">Internet</span> companies and the people who &#8220;break&#8221; copyright laws. The way they see it is that if more people that use their content, even in some ways that seem to be wrong, (such as streaming them online for free or altering them for different story lines, sometimes pornographic) the more customers and the more sales that will occur. The mentality there is to try to help and work with the customers and see them as allies, even if it means blurring the lines of copyright infringement sometimes, instead of viewing them as potential pirates and criminals.</p>
<blockquote>
<div >&#8220;They realize these unauthorized spin-offs help to build the <span class="misspell">fandom</span>, and ultimately drive sales of the original&#8221;, says <a href="http://twitter.com/vitamingc">Kai-Ming <span class="misspell">Cha</span></a>, <span class="misspell">manga</span> editor of Publishers Weekly.</div>
</blockquote>
<p>(<em>Via <a id="iyyw" title="SFGate" href="http://www.sfgate.com/cgi-bin/article.cgi?f=/g/a/2009/11/11/apop111109.DTL&amp;tsp=1"><span class="misspell">SFGate</span></a></em>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=3FFlmpHRlN8:MJ5XuG5NQQ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=3FFlmpHRlN8:MJ5XuG5NQQ0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=3FFlmpHRlN8:MJ5XuG5NQQ0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=3FFlmpHRlN8:MJ5XuG5NQQ0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=3FFlmpHRlN8:MJ5XuG5NQQ0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=3FFlmpHRlN8:MJ5XuG5NQQ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=3FFlmpHRlN8:MJ5XuG5NQQ0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=3FFlmpHRlN8:MJ5XuG5NQQ0:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/gQY5KeVILnFshuCyU9PMxlzoKvo/0/da"><img src="http://feedads.g.doubleclick.net/~a/gQY5KeVILnFshuCyU9PMxlzoKvo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gQY5KeVILnFshuCyU9PMxlzoKvo/1/da"><img src="http://feedads.g.doubleclick.net/~a/gQY5KeVILnFshuCyU9PMxlzoKvo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/3FFlmpHRlN8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.brickhousesecurity.com/2009/11/14/global-anti-piracy-treaty/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.brickhousesecurity.com/2009/11/14/global-anti-piracy-treaty/</feedburner:origLink></item>
		<item>
		<title>Cramer is a fan of Fortinet</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/yGK0wdJWFTM/cramer-is-a-fan-of-fortinet.html</link>
		<comments>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/929KxxAmwzo/cramer-is-a-fan-of-fortinet.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 05:00:50 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[General Background]]></category>

		<category><![CDATA[other security companies]]></category>

		<category><![CDATA[the security industry]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d83451e4d369e20120a69ce983970b</guid>
		<description><![CDATA[Read the Cramer Mad Money blog tonight on Fortinet being the top pick next week as it debuts with its IPO. While it is always amusing to hear the mainstream media try to describe what security is about, I don’t...]]></description>
			<content:encoded><![CDATA[<div class="wlWriterHeaderFooter" ><script type="text/javascript">digg_url = "http://www.ashimmy.com/2009/11/cramer-is-a-fan-of-fortinet.html";digg_title = "Cramer is a fan of Fortinet";digg_bgcolor = "#FFFFFF";digg_skin = "normal";</script><script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script><script type="text/javascript">digg_url = undefined;digg_title = undefined;digg_bgcolor = undefined;digg_skin = undefined;</script></div>
<p>Read the <a href="http://www.cnbc.com/id/33910922">Cramer Mad Money blog tonight on Fortinet</a> being the top pick next week as it debuts with its IPO. While it is always amusing to hear the mainstream media try to describe what security is about, I don’t necessarily disagree with his view that at 9 to 11 dollars a share, the stock is undervalued.</p>
<p>Cramer thinks the secret is Fortinet’s subscription business which he describes as “100 professionals in eight locations worldwide who monitor security outbreak in real time – for a fee, of course. Pay subscribers get the white-glove treatment, and Fortinet gets some seriously sticky revenues, as few people ever opt out. The service accounts for 60% of total revenues and carries a higher margin than Fortinet’s hardware. </p>
<p>Hey I wonder if that is not true of most security appliance vendors who all sell the subscription to rule updates and such.  However, I don’t think the stock is a bargain because of their CFO. Nothing against the Fortinet CFO, but is that what should drive this stock up?  Cramer is right though that when you look at their revenue and bottom line the stock is underpriced and looks like a good buy.</p>
<p>Good luck to Fortinet! Also remember that sometimes a rising tide lifts all ships. Maybe other public security companies will feel the love.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/jCIy-0YkSpmOaBCGqyk9oHgOncc/0/da"><img src="http://feedads.g.doubleclick.net/~a/jCIy-0YkSpmOaBCGqyk9oHgOncc/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/jCIy-0YkSpmOaBCGqyk9oHgOncc/1/da"><img src="http://feedads.g.doubleclick.net/~a/jCIy-0YkSpmOaBCGqyk9oHgOncc/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:dMcygGhlNJA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=dMcygGhlNJA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=929KxxAmwzo:FxEq_un5mQg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=929KxxAmwzo:FxEq_un5mQg:aZ45XMlo8-Q"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=929KxxAmwzo:FxEq_un5mQg:aZ45XMlo8-Q" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/929KxxAmwzo" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/pLisPUVKsq7zsUVjIf9-Le20o4Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/pLisPUVKsq7zsUVjIf9-Le20o4Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pLisPUVKsq7zsUVjIf9-Le20o4Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/pLisPUVKsq7zsUVjIf9-Le20o4Y/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/yGK0wdJWFTM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/929KxxAmwzo/cramer-is-a-fan-of-fortinet.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/929KxxAmwzo/cramer-is-a-fan-of-fortinet.html</feedburner:origLink></item>
		<item>
		<title>Microsoft: Kernel Smash vulnerability being investigated (Update)</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/vxMZ4kYuNhI/Microsoft-Kernel-Smash-vulnerability-being-investigated-Update</link>
		<comments>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated-Update#comments</comments>
		<pubDate>Sat, 14 Nov 2009 02:25:00 +0000</pubDate>
		<dc:creator>Steve Ragan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:feeds.feedburner.com://80bd42871eea3f8f0fb48b0152218a75</guid>
		<description><![CDATA[Update: 

Microsoft has issued a statement and published an advisory about the problems in the SMB protocol. 
"Microsoft is aware of public, detailed exploit code that would cause a system to stop functioning or become unreliable. If exploited, this DoS vulnerability would not allow an attacker to take control of, or install malware on, the customers system but could cause the affected system to stop responding until manually restarted.]]></description>
			<content:encoded><![CDATA[<p>Update: </p>
<p>Microsoft has issued a statement and published an advisory about the problems in the SMB protocol.<br />
&#8220;Microsoft is aware of public, detailed exploit code that would cause a system to stop functioning or become unreliable. If exploited, this DoS vulnerability would not allow an attacker to take control of, or install malware on, the customers system but could cause the affected system to stop responding until manually restarted.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vBVIBs9pW-pj-iG1k5xEbDW5FKI/0/da"><img src="http://feedads.g.doubleclick.net/~a/vBVIBs9pW-pj-iG1k5xEbDW5FKI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vBVIBs9pW-pj-iG1k5xEbDW5FKI/1/da"><img src="http://feedads.g.doubleclick.net/~a/vBVIBs9pW-pj-iG1k5xEbDW5FKI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/vxMZ4kYuNhI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated-Update/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated-Update</feedburner:origLink></item>
		<item>
		<title>Fliqz.com</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/n85jnz_mHeE/fliqzcom.html</link>
		<comments>http://feedproxy.google.com/~r/SunbeltBlog/~3/UuOCujLujkw/fliqzcom.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 23:10:00 +0000</pubDate>
		<dc:creator>Sunbelt Software Blog</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-10854312.post-8141001459943759789</guid>
		<description><![CDATA[A recent blog post referenced the following URLs as being potentially involved in &#8220;scams&#8221;:67.221.34.2021. Fliqz.com2. M0v1.biz3. Realsimplemedia.comFurther research indicates that these sites are not directly involved in scam activity and a...]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/10854312-8141001459943759789?l=sunbeltblog.blogspot.com and new=http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-8141001459943759789?l=sunbeltblog.blogspot.com --><p>A <a href="http://sunbeltblog.blogspot.com/2009/11/flurry-of-schemes-scams-spams-and.html">recent blog post</a> referenced the following URLs as being potentially involved in &ldquo;scams&rdquo;:</p>
<p>
<p>67.221.34.202<br />1. Fliqz.com<br />2. M0v1.biz<br />3. Realsimplemedia.com</p>
<p>Further research indicates that these sites are not directly involved in scam activity and are clean. </p>
<p>We will continue our research and if anything changes our view, will post an update. </p>
<div class="blogger-post-footer"><img width='1' height='1' src='http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-8141001459943759789?l=sunbeltblog.blogspot.com'/></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=UuOCujLujkw:fqyXBEH22sc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=UuOCujLujkw:fqyXBEH22sc:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=UuOCujLujkw:fqyXBEH22sc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=UuOCujLujkw:fqyXBEH22sc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=UuOCujLujkw:fqyXBEH22sc:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/brC81W46XUnlscs8ED4LQ81q6bY/0/da"><img src="http://feedads.g.doubleclick.net/~a/brC81W46XUnlscs8ED4LQ81q6bY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/brC81W46XUnlscs8ED4LQ81q6bY/1/da"><img src="http://feedads.g.doubleclick.net/~a/brC81W46XUnlscs8ED4LQ81q6bY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/n85jnz_mHeE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/SunbeltBlog/~3/UuOCujLujkw/fliqzcom.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/SunbeltBlog/~3/UuOCujLujkw/fliqzcom.html</feedburner:origLink></item>
		<item>
		<title>Hacking Privileged Database User Access</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/LJmFP2MAqhg/showArticle.jhtml</link>
		<comments>http://www.darkreading.com/security/app-security/showArticle.jhtml?articleID=221700110&amp;cid=RSSfeed#comments</comments>
		<pubDate>Fri, 13 Nov 2009 22:21:00 +0000</pubDate>
		<dc:creator>DarkReading - All Stories</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:www.darkreading.com://23918d0b4bf8fff48b8b4a76694488cb</guid>
		<description><![CDATA[How to provide least user privilege to your privileged database users
			
				
					
				  
			  
			]]></description>
			<content:encoded><![CDATA[<p>How to provide least user privilege to your privileged database users</p>

<p><a href="http://feedads.g.doubleclick.net/~a/UgtqsUfEXlfcQdxZIxJ0b3_0PUQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/UgtqsUfEXlfcQdxZIxJ0b3_0PUQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/UgtqsUfEXlfcQdxZIxJ0b3_0PUQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/UgtqsUfEXlfcQdxZIxJ0b3_0PUQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/LJmFP2MAqhg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.darkreading.com/security/app-security/showArticle.jhtml?articleID=221700110&amp;cid=RSSfeed/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.darkreading.com/security/app-security/showArticle.jhtml?articleID=221700110&amp;cid=RSSfeed</feedburner:origLink></item>
		<item>
		<title>How NOT To Build a Security Program</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/aU_-Bnpg88A/how_not_to_build_a_security_pr_1.html</link>
		<comments>http://feedproxy.google.com/~r/secureconsulting/ujTc/~3/IZIsgJyAzho/how_not_to_build_a_security_pr_1.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 22:12:39 +0000</pubDate>
		<dc:creator>Ben Tomhave</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[261]]></category>

		<category><![CDATA[575]]></category>

		<category><![CDATA[577]]></category>

		<category><![CDATA[infosec]]></category>

		<guid isPermaLink="false">tag:www.secureconsulting.net,2009://12.2186</guid>
		<description><![CDATA[Andy Willingham (Andy ITGuy, @andywillingham) had a post up early this week titled "Building a security program from the ground up". It's an interesting read, though a bit on the naive side. Having just come out of an environment where...]]></description>
			<content:encoded><![CDATA[<p>Andy Willingham (Andy ITGuy, @andywillingham) had a post up early this week titled <a href="http://www.andyitguy.com/blog/?p=822">&#8220;Building a security program from the ground up&#8221;</a>. It&#8217;s an interesting read, though a bit on the naive side. Having just come out of an environment where my role was to build a security program from the ground up, I have a little bit of insight into this challenge. Despite my own failure and eventual inexplicable job loss, there is still much to learn, and much that I can add to this discussion.</p>
<p>Of course, it wouldn&#8217;t be right to talk about this topic without first acknowledging one of my major biases; that is, my strong preference toward the model I developed specifically toward how to structure an information assurance program (see my earlier posts <a href="http://www.secureconsulting.net/2009/07/do_you_need_a_security_departm.html">&#8220;Do You Need a Security Department?&#8221;</a> and the slightly older <a href="http://www.secureconsulting.net/2008/03/my_philosophy_of_security.html">&#8220;My Philosophy of Security&#8221;</a>). Below is a snapshot of the TEAM Model, which I&#8217;ll most likely mention in my responses.<br />
<center><a href="http://www.secureconsulting.net/2009/07/16/TEAMv2.png"><img src="http://www.secureconsulting.net/2009/07/16/TEAMv2.png" border="0" vspace="5" hspace="5" width="50%" height="50%"></a></center>
</p>
<p>With that said, let me tackle some of Andy&#8217;s comments and my gripe with them. Please note that I am working from the assumption of &#8220;building a security program from the ground up&#8221; and all that this implies (such as that there isn&#8217;t already a program in place).</p>
<blockquote><p>&#8220;Here are a couple of assumptions: They already have a firewall and host based security suite installed and up to date. Beyond that, it’s a crap shoot.&#8221;</p></blockquote>
<p>These are rather unfortunate assumptions. What is meant by &#8220;host based security suite&#8221;? AV? Something else? If you&#8217;re coming into an existing organization to build a security program from the ground up, then you shouldn&#8217;t come in with any assumptions. I&#8217;ve been in more than one organization that hasn&#8217;t had a firewall, let along ANY host-based security (no AV, no HIDS, no logging, no monitoring, etc). Assumptions - especially bad assumptions - can be very bad things (see what <a href="http://securosis.com/blog/always-assume">a certain analyst says on this topic</a>).</p>
<p>If you&#8217;re going to assume anything going into a new &#8220;green field&#8221; opportunity like this, it should be that nothing exists, nothing is being done, and that you will be met with inordinate amounts of resistance and organizational inertia. You should assume that you will have been given the &#8220;happy&#8221; story during the interview process, and that reality is far more stark. You should also assume that, despite the lip service paid in the interviews, there will be no way to know the commitment of executive management until you are actually onboard and asking them to put some skin in the game.</p>
<blockquote><p>&#8220;If I were coming into a company and had a free hand to do what I wanted I would first look at what I could do to get the biggest bang for my buck quickly and then focus on the long-term strategic planning.&#8221;</p></blockquote>
<p>Here we have another bad implicit assumption. There&#8217;s no such thing as having a &#8220;free hand to do what I wanted&#8221; in an existing organization. To think otherwise is to be somewhat deluded. The reality is that the business existed before you got there, and it&#8217;s likely to exist without you being there in the future, or so they&#8217;ll all be thinking in the back of their minds.</p>
<p>In the comments of Andy&#8217;s post Kevin Riggins makes the excellent observation that one of the first things you&#8217;re going to need to do is go back to executive management AFTER the interview (and after you&#8217;ve started, presumably) to truly test their commitment and support. Without it, your life will be much more difficult. If you&#8217;re thinking &#8220;not true, you can always do bottom-up&#8221;, then sure, that&#8217;s ok for certain operational concerns, but don&#8217;t you dare bring up strategy or risk. <img src='http://www.securitybloggers.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>&#8220;I’d say the first thing I’d do is implement a monitoring system so I can have some insight into what is going on.&#8221;</p></blockquote>
<p>This comment isn&#8217;t wrong, per se, it just fast-forwards through a number of steps. Monitor what? Logs? IDS? Firewall logs? Do you have a log server? Are you talking about *shudder* a SIEM solution? At the same time, what about policies and practices? So you&#8217;re monitoring and seeing bad things&#8230; then what? Do you have the policies and executive support necessary to actually do something when you start seeing badness (and it definitely is <em>when</em> and not if).</p>
<p>Your goal from the outset should be to quickly assess the state of the environment and start architecting a path to a defensible and recoverable posture (see my posts <a href="http://www.secureconsulting.net/2009/08/defensibility_and_recoverabili.html">&#8220;Defensibility and Recoverability&#8221;</a> and <a href="http://www.secureconsulting.net/2009/10/surviving_in_degraded_conditio.html">&#8220;Surviving in Degraded Conditions: A Human Analogy&#8221;</a> for more on what this means). Note that I say &#8220;quickly assess&#8221;. Depending on the size of the organization, this could be done fairly quickly. Walk through a facility or two, talk to as many people as people, from execs to tech to the manager in between, and then start building that roadmap.</p>
<p>More important that anything here is that you need to learn what is critical to the business. If X blows up, then Y really bad consequence will occur. That sort of thing.</p>
<p>Also, note here that I&#8217;m not even talking about &#8220;risk&#8221; at all. Forget about risk for a moment and just think about basic prioritization. It very simply comes down to a) identifying what&#8217;s critical to the business, b) defending what&#8217;s critical to the business, and c) building contingency plans for adequate recovery of what&#8217;s critical to the business <strong>when</strong> something bad happens.</p>
<blockquote><p>&#8220;Once that was in place I’d probably implement a Vulnerability Management program that starts with Application and OS patching and then focus on the scanning, testing, exploiting etc&#8230;&#8221;</p></blockquote>
<p>I have to be honest, my jaw dropped a bit when I read this one. That&#8217;s quite the leap in logic. Don&#8217;t get me wrong, patching is very important, but the way he says it here, almost nonchalantly, gives one the false impression that this is somehow easy or trivial. There is, in fact, so much more that needs to be done than simply going out and implementing such a program. Change management, configuration management, access control and management, etc. Sure, none of these are mandatory for patching, but they absolutely have ties into a Vulnerability Management program. As for scanning, testing, and exploiting&#8230; well, let&#8217;s just say that this is somewhat jumping the gun, and an area where one needs to be very cautious, too.</p>
<p>Specifically, as you shift from the &#8220;push and pray&#8221; patch model to a formal Vulnerability Management program, don&#8217;t forget that you are going to need to know what changes are being in your environment, when they&#8217;re going in, what they&#8217;re doing (impact), who made the change, and who authorized them, among other things. Yes, get the patching going (if it&#8217;s not already), but hold off on the Vulnerability Management project until you have a better handle on processes.</p>
<p>&#8212;<br />
After the last quote he talks about awareness training, governance, and policies &#038; procedures being all run in parallel as much as possible. Gack. He talks earlier about long-term strategic planning, which is good in theory, but in practice not so much. He ends with &#8220;This is just a starting point.&#8221; Fair enough, but the approach is far too technical without really knowing or understanding anything about the business, the environment, and - far more importantly - the people.</p>
<p>Allow me to offer alternative advice:
<ol>
<li><strong>Garner Strong Executive Support:</strong> You must have strong executive support. None of this <a href="http://www.secureconsulting.net/2009/07/on_responsibility_without_auth.html">&#8220;responsibility without authority&#8221;</a> nonsense. The minute you walk through the door, you will have to seek out and build support for everything you want to do. Unless you&#8217;re given the authority to go make changes directly (extremely unlikely) then you will have to get various levels of management onboard for everything you want to do. Passive resistance can be deadly.</li>
<p></p>
<li><strong>Lightning Assessment:</strong> You must understand what is important to the business, as well as begin to get a picture of why things are the way they are today (tech decisions, etc.). I&#8217;m not advocating here any sort of formal assessment, and I&#8217;m certainly not talking about &#8220;risk&#8221; anything. This is quite literally a very rapid organizational walk-through, if you will, to see who&#8217;s around, what people do, and, more important than anything else, what is absolutely critical to the business. If you&#8217;re unable to find this out, then I suggest looking for a new job, because what you&#8217;re facing will be a situation not dissimilar to the one I was in. If the business doesn&#8217;t have a solid direction (&#8221;making money&#8221; is not a solid direction), then you&#8217;re not going to have much luck contributing to the success of the business. By the way, in addition to identifying what is critical to the business, you should also keep your eyes peeled for major gaping holes that need immediate redress.</li>
<p></p>
<li><strong>Share Responsibility, Gain Accountability:</strong> Security needs to be a responsibility shared by everybody in the organization. Hence the role of basic awareness training. What I&#8217;m talking about here is something more radical. It&#8217;s not enough to try to make people aware of security. Instead, you need them to have a vested interest in making sure critical assets are defended and can be recovered rapidly when something bad happens. From the investment comes a lever for establishing accountability. And, sad to say, it&#8217;s then time to help move the business back from the squishy touchy-feely approach and get HR engaged so that when people do dumb, stupid, or patently bad things, they are disciplined accordingly, up to and including termination of employment. We seem to have lost the edge in the business world, and this is one area where we can start getting it back.</li>
<p></p>
<li><strong>Not All Low-Hanging Fruit Are Equal:</strong> It&#8217;s very tempting to walk into a new situation and immediately chase after the things that you personally know how to handle quickly and easily. Unfortunately, those things may be completely worthless in the grand scheme of things (well, not <em>completely</em>, I suppose). Based on the outcome of your Lightning Assessment above, you should know what&#8217;s truly important to the business. From this, you should then be able to start focusing on how well protected those critical assets are. This is where you should start tackling low-hanging fruit. Now, obviously at the same time you need to keep an eye out for gaping holes that are so egregious that they cannot be allowed to stand.</li>
<p></p>
<li><strong>Fight to Simplify:</strong> One of the biggest challenges in a ground-up opportunity is keeping yourself grounded. It&#8217;s too easy - as I can attest from first-hand experience - to get completely overwhelmed by everything that needs to be done. This is why I recommend the previous steps, forcing yourself to find the truly important systems and then focus almost exclusively on them. It could be argued that this approach could be dangerous, and that is absolutely true. A long-term focus on just a narrow slice of the enterprise is fool-hardy. It will lead you to an outcome akin to all the major breaches we&#8217;ve read about recently. Now, in fact, this whole stripped-down approach is meant as a starter, not as a long-term strategy. At some point, you will have to look at the big picture. BUT&#8230; you can&#8217;t really do any of that until you first establish the basics, building some political capital that will then free you to move onto bigger, better things.</li>
<p></p>
<li><strong>Documentation and Processes:</strong> The one thing you will definitely have in your control is the ability to generate documentation. Whether it goes anywhere is, of course, a different story, but it is at least one thing you can - and definitely should - make use of. You&#8217;ll want to document your findings, your short-term plans, your ideas, your low-hanging fruit, your critical business findings, etc. The other piece of documentation that is very useful relates to processes. It&#8217;s great to start by documenting what people are doing today, and then offering incremental improvements to better formalize and standards those practices. Similarly, if nothing formal is being done (e.g. change management), you can develop basic processes to get the fundamentals in place (a formal write-up, a formal approval, a paper trail) and then you can go about iterating through incremental improvements over time as necessary. The key take-aways here are that a) you can write documentation from Day 1, b) make sure to bear in mind the difference between writing a process and having it followed.</li>
<p></p>
<li><strong>Strategy:</strong> Everybody wants one, but how many actually use them? Seriously. Security has historically been reactive in nature. There are many proactive things we can do to help reduce some threats, but in the grand scheme of things it can be very difficult to make a case for proactive efforts until you have a baseline against which to measure success. Nonetheless, you will need a big picture at some point - though preferably after the first 6 months. The important role of a strategy is that it will look at the full breadth of the organization, rather than the short-term focus you&#8217;ve maintained just on critical resources. You NEED to look at everything at some point, because it is the weak links that will lead to the deepest attacks. Your strategy should also establish levels of tolerance for downtime, interruption, and loss of data. What we&#8217;re talking about here is taking the critical resources initial assessment and expanding that into a broader conversation with executive management about how much pain they can tolerate in certain areas. This will help you set overarching priorities for the long-term. It will help you determine what your minimal level of defensibility and recoverability will need to be.</li>
<p>
</ol>
</p>
<p>It would be easy to go on and on and on here, but I think the main points are covered. Certainly, there are other ways to tackle this challenge, but the above represents a significant chunk of what I learned in my 7 months facing such a challenge.</p>
<p><em>(Please Note: This is cross-posted from the <a href="http://www.t2pa.com/cores/security-and-privacy/practical-security">T2PA Practical Security Core</a>.)</em>
</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?i=IZIsgJyAzho:Q_7LELD-AY4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?i=IZIsgJyAzho:Q_7LELD-AY4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?a=IZIsgJyAzho:Q_7LELD-AY4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/secureconsulting/ujTc?i=IZIsgJyAzho:Q_7LELD-AY4:F7zBnMyn0Lo" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/secureconsulting/ujTc/~4/IZIsgJyAzho" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/I6jPft6JmCUoNii_PgwFSA_H3XM/0/da"><img src="http://feedads.g.doubleclick.net/~a/I6jPft6JmCUoNii_PgwFSA_H3XM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/I6jPft6JmCUoNii_PgwFSA_H3XM/1/da"><img src="http://feedads.g.doubleclick.net/~a/I6jPft6JmCUoNii_PgwFSA_H3XM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/aU_-Bnpg88A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/secureconsulting/ujTc/~3/IZIsgJyAzho/how_not_to_build_a_security_pr_1.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/secureconsulting/ujTc/~3/IZIsgJyAzho/how_not_to_build_a_security_pr_1.html</feedburner:origLink></item>
		<item>
		<title>Product Watch: IBM Unveils New Virtual Server Security Offering</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/gHUPBoIczXM/showArticle.jhtml</link>
		<comments>http://www.darkreading.com/security/storage/showArticle.jhtml?articleID=221700108&amp;cid=RSSfeed#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:55:00 +0000</pubDate>
		<dc:creator>DarkReading - All Stories</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:www.darkreading.com://2e94bf5d0033ef0430f5c9489a5eff52</guid>
		<description><![CDATA[IBM launches tools for securing VMware virtual server environments
			
			]]></description>
			<content:encoded><![CDATA[<p>IBM launches tools for securing VMware virtual server environments</p>

<p><a href="http://feedads.g.doubleclick.net/~a/NKp0IqpUFzRodjd0ScHgieNDLfg/0/da"><img src="http://feedads.g.doubleclick.net/~a/NKp0IqpUFzRodjd0ScHgieNDLfg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NKp0IqpUFzRodjd0ScHgieNDLfg/1/da"><img src="http://feedads.g.doubleclick.net/~a/NKp0IqpUFzRodjd0ScHgieNDLfg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/gHUPBoIczXM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.darkreading.com/security/storage/showArticle.jhtml?articleID=221700108&amp;cid=RSSfeed/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.darkreading.com/security/storage/showArticle.jhtml?articleID=221700108&amp;cid=RSSfeed</feedburner:origLink></item>
		<item>
		<title>Doing the copyright limbo</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/JAVifgOs264/</link>
		<comments>http://secforall.info/2009/11/13/doing-the-copyright-limbo/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:40:59 +0000</pubDate>
		<dc:creator>Joseph Webster</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[copyright Gestapo]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[MPAA]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Piracy]]></category>

		<category><![CDATA[ToR]]></category>

		<guid isPermaLink="false">http://secforall.info/?p=1063</guid>
		<description><![CDATA[Just when you think that the self-appointed copyright Gestapo can&#8217;t sink any lower they kick the old limbo stick down another notch. Now before you jump to the conclusion that I&#8217;m one of those &#8220;content wants to be free&#8221; activists, rest assured that I am not. All of my career has been spent as a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=secforall.info&#38;blog=4666223&#38;post=1063&#38;subd=webjoseph425&#38;ref=&#38;feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'>
<p><img class="alignleft" title="No MPAA" src="http://t3.gstatic.com/images?q=tbn:CXyHqFWwTNeWsM:http://www.digital-digest.com/blog/DVDGuy/wp-content/uploads/2008/06/no-mpaa.gif" alt="" width="104" height="104" />Just when you think that the self-appointed copyright Gestapo can&#8217;t sink any lower they kick the old limbo stick down another notch. Now before you jump to the conclusion that I&#8217;m one of those &#8220;content wants to be free&#8221; activists, rest assured that I am not. All of my career has been spent as a code monkey writing software for somebody else (as a &#8220;work made for hire&#8221; in copyright lingo). And trust me, I&#8217;m all about getting paid. Which doesn&#8217;t happen if my employer goes broke because their products were pirated. I&#8217;m also a musician who composes and records original material. Now my attitude towards copyright protection is quite a bit different with my music because, as <a title="Cory Doctorow’s craphound.com" href="http://craphound.com/" >Cory Doctorow</a> says in the forward material to his latest book <a title="Makers" href="http://craphound.com/makers/about/" >Makers</a> [<a title="Makers: Download for Free" href="http://craphound.com/makers/download/" >you can download the e-book  here for free</a>] my problem isn&#8217;t piracy, it&#8217;s obscurity. But what about that piracy notion? I just said that I won&#8217;t get paid if my employer goes broke because their products were pirated. Well guess what? That has never happened. Not to me. Not to anyone. In short, I&#8217;m not opposed to copyright or copyright enforcement.</p>
<p>What I am opposed to, and baffled by, is a business model that comes down to &#8220;<em>we aren&#8217;t selling as much of our stuff as we want, so we will go after people who are pirating it.</em>&#8221; The most <a title="MPAA shuts down entire town's muni WiFi over a single download" href="http://www.boingboing.net/2009/11/12/mpaa-shuts-down-enti.html" >recent episode in this ridiculous jihad against customers</a> is reported by Cory Doctorow in boingboing.</p>
<blockquote><p><em>The MPAA has successfully shut down </em><em>an <strong>entire town&#8217;s municipal WiFi</strong> because <strong>a </strong></em><em><strong>single user</strong> was found to be downloading a copyrighted movie. Rather than being embarrassed by this gross example of collective punishment (a practice outlawed in the Geneva conventions) against Coshocton, OH, the MPAA&#8217;s spokeslizard took the opportunity to cry poor (even though the studios are bringing in record box-office and aftermarket receipts).</em></p>
</blockquote>
<p>That&#8217;s right, the entire public WiFi net of Coshocton, OH. The same net that is used by Coshocton County Sheriff&#8217;s deputies to complete a traffic or incident report without leaving their vehicle. The same net that out-of-town business people can park and use their laptops to make connections. The very same net that during festival times, vendors use to check the status of credit cards being used to make purchases. And the same net that has a single address used by many people, so it&#8217;s difficult to tell who made the illegal download (although the county plans to investigate the matter).</p>
<p>Great job MPAA! Way to look out for your own financial interests in blatant disregard for the interests of everyone else. So what exactly have the MPAA clowns (I love Cory&#8217;s reference to <em>the MPAA&#8217;s spokeslizard</em>) accomplished here. Several things come to mind:</p>
<ol>
<li>Users of Coshocton public WiFi will likely never download another pirated movie again&#8230; without going through <a title="The Onion Router" href="http://www.torproject.org/" >TOR</a>.</li>
<li>Users of Coshocton public WiFi will likely never purchase any movie ever again.</li>
</ol>
<p>As I said before, I&#8217;m not a fan of pirating movies. Quite frankly there is so much stuff legitimately available for free or incredibly cheap that I can&#8217;t begin to consume everything I might be interested in. But in addition, I can&#8217;t for the life of me see how alienating your customers because somebody downloaded a movie and allegedly deprived you of $10 or less (assuming of course that the perp would have actually paid for it anyway) makes any sense at all. What I can say is that cheesy stunts like this almost make me want to fire up bit torrent and snag some episodes of Desperate Housewives. Just on principle. That and I&#8217;ve never seen Desperate Housewives. But I can get it from Netflix way easier. And I don&#8217;t have to use TOR. But believe me, I&#8217;m not going to purchase any movie or TV show. Not now. Not ever.</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webjoseph425.wordpress.com/1063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webjoseph425.wordpress.com/1063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webjoseph425.wordpress.com/1063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webjoseph425.wordpress.com/1063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webjoseph425.wordpress.com/1063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webjoseph425.wordpress.com/1063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webjoseph425.wordpress.com/1063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webjoseph425.wordpress.com/1063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webjoseph425.wordpress.com/1063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webjoseph425.wordpress.com/1063/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=secforall.info&#038;blog=4666223&#038;post=1063&#038;subd=webjoseph425&#038;ref=&#038;feed=1" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/sfL8RMvKVkdC64h_W0QKDj-2f74/0/da"><img src="http://feedads.g.doubleclick.net/~a/sfL8RMvKVkdC64h_W0QKDj-2f74/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sfL8RMvKVkdC64h_W0QKDj-2f74/1/da"><img src="http://feedads.g.doubleclick.net/~a/sfL8RMvKVkdC64h_W0QKDj-2f74/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/JAVifgOs264" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://secforall.info/2009/11/13/doing-the-copyright-limbo/feed/</wfw:commentRss>
		<feedburner:origLink>http://secforall.info/2009/11/13/doing-the-copyright-limbo/</feedburner:origLink></item>
		<item>
		<title>Something new in your inbox: Google Reader Spam</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/vlUk9F5JALc/something-new-in-your-inbox-google.html</link>
		<comments>http://feedproxy.google.com/~r/SunbeltBlog/~3/vKJ38uTnRhY/something-new-in-your-inbox-google.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:34:00 +0000</pubDate>
		<dc:creator>Tom Kelchner</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-10854312.post-8627729966964920316</guid>
		<description><![CDATA[This:Takes you to this:Thanks Anupam, Stu and AlexTom Kelchner
       
]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/10854312-8627729966964920316?l=sunbeltblog.blogspot.com and new=http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-8627729966964920316?l=sunbeltblog.blogspot.com --><p><span ><span >This:</span></span></p>
<p><img alt="Google Reader Spam 1" src="http://www.sunbeltsoftware.com/alex/gblog/Google_20Reader_20Spam_201.png" border="0" /></p>
<p><span ><span >Takes you to this:</span></span></p>
<p><img  alt="Google Reader Spam 2" src="http://www.sunbeltsoftware.com/alex/gblog/Google_20Reader_20Spam_202.png" border="0" /></p>
<p>Thanks Anupam, Stu and Alex</p>
<p>Tom Kelchner</p>
<div class="blogger-post-footer"><img width='1' height='1' src='http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-8627729966964920316?l=sunbeltblog.blogspot.com'/></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=vKJ38uTnRhY:ae9v1bh0QTQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=vKJ38uTnRhY:ae9v1bh0QTQ:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=vKJ38uTnRhY:ae9v1bh0QTQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=vKJ38uTnRhY:ae9v1bh0QTQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=vKJ38uTnRhY:ae9v1bh0QTQ:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/9lUcMhci0nsNl6jXK9-IojHtL0I/0/da"><img src="http://feedads.g.doubleclick.net/~a/9lUcMhci0nsNl6jXK9-IojHtL0I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9lUcMhci0nsNl6jXK9-IojHtL0I/1/da"><img src="http://feedads.g.doubleclick.net/~a/9lUcMhci0nsNl6jXK9-IojHtL0I/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/vlUk9F5JALc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/SunbeltBlog/~3/vKJ38uTnRhY/something-new-in-your-inbox-google.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/SunbeltBlog/~3/vKJ38uTnRhY/something-new-in-your-inbox-google.html</feedburner:origLink></item>
		<item>
		<title>Is vendor lock-in really a bad thing? Yes!</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/CVgHdWX4CZU/is-vendor-lock-in-a-really-a-bad-thing-yes.html</link>
		<comments>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/grBEKpETryw/is-vendor-lock-in-a-really-a-bad-thing-yes.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:31:43 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[network convergence]]></category>

		<category><![CDATA[networking IT]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d83451e4d369e20120a69818ea970b</guid>
		<description><![CDATA[Lori MacVittie over on the F5 DevCentral blog has a post today asking if vendor lock-in really a bad thing. I say absolutely! Anytime you are given less choice sooner or later it limits your options. Lori draws a clear...]]></description>
			<content:encoded><![CDATA[<p><a href="http://devcentral.f5.com/weblogs/macvittie/Default.aspx">Lori MacVittie</a> over on the <a href="http://devcentral.f5.com/weblogs/macvittie/archive/2009/11/13/is-vendor-lock-in-really-a-bad-thing.aspx">F5 DevCentral blog has a post today</a> asking if vendor lock-in really a bad thing. I say absolutely! Anytime you are given less choice sooner or later it limits your options.  Lori draws a clear distinction in her article between consumer lock-in as with the iPhone for example versus data center lock-in (which in my mind is Cisco, but could be F5, HP or any number of others.) Putting aside the issue one commenter made about closed platform versus actual lock-in with the iPhone out of it, lets not even bother with consumer stuff for purposes of this response. Lets look at the data center as Lori does.</p>
<p>Lori says its not lock-in if the vendor:  (a) does what it says it does, (b) solves all their problems and (c) the company isn’t going anywhere. I agree monolithic vendor solutions can be quite efficient. Hey Mussolini was loved by the Italian people early on because he made the trains run on time.  That didn’t mean that a fascist form of government was best for Italy and that it was not a bad thing. But a single party dictatorship is more efficient than a democracy usually.  Doesn’t make it beter.</p>
<p>What does this have to do with data center vendor lock-in.  I think where Lori’s wheels fall of the tracks on this one is when the vendor uses that monopolistic lock-in to ensure that customers now have to use vendors products for ancillary products.  Imagine if you will (well you don’t have to imagine, it used to be like this) that if you want to use VOIP and your a Cisco shop, unless you use Cisco VOIP phones they just done work so well on your Cisco network. Take wireless as another example. Aruba gear in a Cisco shop is a real nightmare.  Now does Cisco purposely make it harder for another vendors gear to work on with their switches? I will leave it to you to decide. The real problem as I see it is when does lock-in become so prohibitive that it crosses over to monopolistic. When it does we don’t live in a world of corporate saints, so you can’t expect them to do what is best for customers and not for themselves.</p>
<p>Lori also points out that standards are so supposed to alleviate some of that angst. But as Lori says that ain’t a panacea either.  Even within standards there is too much “embracing and extending” that renders them greatly diminished.  Try making 802.1x switches from different vendors work together as a great example.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/_mIBH5188WSA7mXu4tbwoXy62Co/0/da"><img src="http://feedads.g.doubleclick.net/~a/_mIBH5188WSA7mXu4tbwoXy62Co/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/_mIBH5188WSA7mXu4tbwoXy62Co/1/da"><img src="http://feedads.g.doubleclick.net/~a/_mIBH5188WSA7mXu4tbwoXy62Co/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:dMcygGhlNJA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=dMcygGhlNJA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=grBEKpETryw:Gs5dQWBnAu8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=grBEKpETryw:Gs5dQWBnAu8:aZ45XMlo8-Q"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=grBEKpETryw:Gs5dQWBnAu8:aZ45XMlo8-Q" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/grBEKpETryw" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/GdfdB_ZTiuudWeEbvthT-SipQzY/0/da"><img src="http://feedads.g.doubleclick.net/~a/GdfdB_ZTiuudWeEbvthT-SipQzY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GdfdB_ZTiuudWeEbvthT-SipQzY/1/da"><img src="http://feedads.g.doubleclick.net/~a/GdfdB_ZTiuudWeEbvthT-SipQzY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/CVgHdWX4CZU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/grBEKpETryw/is-vendor-lock-in-a-really-a-bad-thing-yes.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/grBEKpETryw/is-vendor-lock-in-a-really-a-bad-thing-yes.html</feedburner:origLink></item>
		<item>
		<title>Microsoft: Kernel Smash vulnerability being investigated</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/ThbKMTHC_G4/Microsoft-Kernel-Smash-vulnerability-being-investigated</link>
		<comments>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:12:00 +0000</pubDate>
		<dc:creator>Steve Ragan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:feeds.feedburner.com://41e2f5afa0899c8fc73f018accd5e104</guid>
		<description><![CDATA[Not 24-hours after Microsoft released their monthly security patches, none of which affected Windows 7. One researcher has discovered a vulnerability in the newest member of the Microsoft family that if exploited will lead to Denial-of-Service. If that wasnt bad enough, the vulnerability will work on Server 2008 R2 as well. 

Calling the discovered flaw noob, researcher Laurent Graffie said in blog post that it should have been spotted years ago.]]></description>
			<content:encoded><![CDATA[<p>Not 24-hours after Microsoft released their monthly security patches, none of which affected Windows 7. One researcher has discovered a vulnerability in the newest member of the Microsoft family that if exploited will lead to Denial-of-Service. If that wasnt bad enough, the vulnerability will work on Server 2008 R2 as well. </p>
<p>Calling the discovered flaw noob, researcher Laurent Graffie said in blog post that it should have been spotted years ago.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/_meRm-jDETFU-9zpmHSGX8mbAjQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/_meRm-jDETFU-9zpmHSGX8mbAjQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_meRm-jDETFU-9zpmHSGX8mbAjQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/_meRm-jDETFU-9zpmHSGX8mbAjQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/ThbKMTHC_G4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.thetechherald.com/article.php/200946/4784/Microsoft-Kernel-Smash-vulnerability-being-investigated</feedburner:origLink></item>
		<item>
		<title>Refocusing my professional career</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/NgRRrXDCP7g/refocusing-my-professional-car.html</link>
		<comments>http://feedproxy.google.com/~r/kees/~3/U_y81ot6wWY/refocusing-my-professional-car.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:39:16 +0000</pubDate>
		<dc:creator>Kees</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[/career]]></category>

		<guid isPermaLink="false">tag:www.leune.org,2009:/blog/kees//4.651</guid>
		<description><![CDATA[It has been almost three weeks since my last post and because my goal is to provide one or two posts a week, that is simply too long. My silence can partially be explained by simple mundane things like a...]]></description>
			<content:encoded><![CDATA[<p>It has been almost three weeks since my last post and because my goal is to provide one or two posts a week, that is simply too long. </p>
<p>My silence can partially be explained by simple mundane things like a high workload and the desire to spend time with my family when I am at home, but there has been a secondary cause also. </p>
<p>I believe that it is important to reflect about who I am professionally and how I want to portray myself. After having collected a bunch of security certifications (in chronological order: CISSP, GCIH, CISM, OSCP, CISA), I think I&#8217;m done with that for a while. All certifications have contributed to my understanding of the field, and they reconfirmed that I am exactly where I want to be. </p>
<p>While up to recently, I advertised myself as a information security <i>generalist</i>, I believe that I am currently in the process of shifting focus towards becoming an information security <i>strategist</i>. </p>
<p>My day to day work, and my general thinking, has been impacted by the fact that I have few operational responsibilities. For one, it means that the only &#8216;real&#8217; reasons that I am touching security technology are out of curiosity, to prove a point, or to evaluate a product&#8217;s potential. Actual implementation and operation is not something that I have done in quite a while. </p>
<p>Likewise, while I am fairly proficient with vulnerability scanning and penetration testing techniques, I have not done full tests recently. It doesn&#8217;t mean that I don&#8217;t like to tinker around in my own lab to try out new tools, or that I don&#8217;t assess new vulnerabilities and exploits, but the pressing need to be current to the minute is something that it slowly fading. </p>
<p>I feel a little sad about this realization. Being on the bleeding edge of technology, developing and performing assessments, and being in the loop on what&#8217;s going <i>now </i>on is incredibly rewarding. But, setting strategy, determining direction and ensuring that an organization moves forward in its level of professionalism and its quality of service is something that also has its rewards.</p>
<p>At the very least, not being on call 24/7 for operational emergencies has its benefits.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/qhxpHkCmp-3aO_kPtSeB1mXXNNM/0/da"><img src="http://feedads.g.doubleclick.net/~a/qhxpHkCmp-3aO_kPtSeB1mXXNNM/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/qhxpHkCmp-3aO_kPtSeB1mXXNNM/1/da"><img src="http://feedads.g.doubleclick.net/~a/qhxpHkCmp-3aO_kPtSeB1mXXNNM/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kees?i=U_y81ot6wWY:CG2TTFURoxI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kees?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/kees?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/kees?i=U_y81ot6wWY:CG2TTFURoxI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kees?i=U_y81ot6wWY:CG2TTFURoxI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kees?a=U_y81ot6wWY:CG2TTFURoxI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kees?d=l6gmwiTKsz0" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/kees/~4/U_y81ot6wWY" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/U9YP0J3Xv2qNNLTmm70LJ75luAU/0/da"><img src="http://feedads.g.doubleclick.net/~a/U9YP0J3Xv2qNNLTmm70LJ75luAU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/U9YP0J3Xv2qNNLTmm70LJ75luAU/1/da"><img src="http://feedads.g.doubleclick.net/~a/U9YP0J3Xv2qNNLTmm70LJ75luAU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/NgRRrXDCP7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/kees/~3/U_y81ot6wWY/refocusing-my-professional-car.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/kees/~3/U_y81ot6wWY/refocusing-my-professional-car.html</feedburner:origLink></item>
		<item>
		<title>The Anonymization of Losses: A Market Forces Failure</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/DGDIqbRgRV0/</link>
		<comments>http://feedproxy.google.com/~r/securosis/~3/tI8G71M6zKQ/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:33:33 +0000</pubDate>
		<dc:creator>rmogull@securosis.com</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://securosis.com/blog/the-anonymization-of-losses-a-market-forces-failure/</guid>
		<description><![CDATA[<p>We talk a lot about the role of anonymization on the Internet. On one hand, it's a powerful tool for freedom of speech. On the other, it creates massive security challenges by greatly reducing attackers' risk of apprehension.</p>

<p>The more time I spend in security, the more I realize that economics plays a far larger role than technology in what we do.</p>

<p>Anonymization, combined with internationalization, shifts the economics of online criminal activity. In the old days to rob or hurt someone you needed a degree of physical access. The postal and phone systems reduced the need for this access, but also contain rate-limiters that reduce scalability of attacks. Physical access corresponds to physical risk -- particularly the risk of apprehension. A lack of sufficient international cooperation (or even consistent international laws), combined with anonymity, and the scope and speed of the Internet, skew the economics in favor of the bad guys. There is a lower risk of capture, a lower risk of prosecution, limited costs of entry, and a large (global) scope for potential operations.</p>

<p>Heck, with economics like that, I feel like an idiot for <em>not</em> being a cybercriminal.</p>

<p>In security circles we spend a lot of time talking about the security issues of anonymity and internationalization, but these really aren't the problem. The real problem isn't the <em>anonymity of users</em>, but the <em>anonymity of losses</em>.</p>

<p>When someone breaks into your house, you know it. When a retailer loses inventory to shrinkage, the losses are directly attributable to that part of the supply chain, and someone's responsible. But our computer security losses aren't so clear, and in fact are typically completely hidden from the asset owner. Banking losses due to hacking are spread throughout the system, with users rarely paying the price.</p>

<p>Actually, that statement is completely wrong. We all pay for this kind of fraud, but it's hidden from us by being spread throughout the system, rather than tied to specific events. We all pay higher fees to cover these losses. Thus we don't notice the pain, don't cry out for change, and don't change our practices. We don't even pick our banks or credit cards based on security any more, since they all appear the same.</p>

<p>Losses are also anonymized on the corporate side. When an organization suffers a data breach, does the business unit involved suffer any losses? Do they pay for the remediation out of their departmental budget? Not in any company I've ever worked with -- the losses are absorbed by IT/security.</p>

<p>Our system is constructed in a manner that completely disrupts the natural impact of market forces. Those most responsible for their assets suffer minimal or no direct pain when they experience losses. Damages are either spread through the system, or absorbed by another cost center.</p>

<p>Now imagine a world where we reverse this situation. Where consumers are responsible for the financial losses associated with illicit activity in their accounts. Where business unit managers have to pay for remediation efforts when they are hacked. I guarantee that behavior would quickly change.</p>

<p>The economics of security fail because the losses are invisibly transfered away from those with the most responsibility. They don't suffer the pain of losses, but they <em>do</em> suffer the pain/inconvenience of security. On top of that, many of the losses are nearly impossible to measure, even if you detect them (non-regulated data loss). No wonder they don't like us.</p>

<p>Security professionals ask me all the time when users will "get it", and management will "pay attention". We don't have a hope of things changing until those in charge of the purse strings start suffering the pain associated with security failures.</p>

<p>It's just simple economics.</p>

			- Rich
			(0) <a href="http://securosis.com/blog/the-anonymization-of-losses-a-market-forces-failure/">Comments</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/securosis?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/securosis?i=tI8G71M6zKQ:NTANkd-youw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/securosis?i=tI8G71M6zKQ:NTANkd-youw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/securosis?d=63t7Ie-LG7Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/securosis/~4/tI8G71M6zKQ" height="1">]]></description>
			<content:encoded><![CDATA[<p>We talk a lot about the role of anonymization on the Internet. On one hand, it&#8217;s a powerful tool for freedom of speech. On the other, it creates massive security challenges by greatly reducing attackers&#8217; risk of apprehension.</p>
<p>The more time I spend in security, the more I realize that economics plays a far larger role than technology in what we do.</p>
<p>Anonymization, combined with internationalization, shifts the economics of online criminal activity. In the old days to rob or hurt someone you needed a degree of physical access. The postal and phone systems reduced the need for this access, but also contain rate-limiters that reduce scalability of attacks. Physical access corresponds to physical risk &#8212; particularly the risk of apprehension. A lack of sufficient international cooperation (or even consistent international laws), combined with anonymity, and the scope and speed of the Internet, skew the economics in favor of the bad guys. There is a lower risk of capture, a lower risk of prosecution, limited costs of entry, and a large (global) scope for potential operations.</p>
<p>Heck, with economics like that, I feel like an idiot for <em>not</em> being a cybercriminal.</p>
<p>In security circles we spend a lot of time talking about the security issues of anonymity and internationalization, but these really aren&#8217;t the problem. The real problem isn&#8217;t the <em>anonymity of users</em>, but the <em>anonymity of losses</em>.</p>
<p>When someone breaks into your house, you know it. When a retailer loses inventory to shrinkage, the losses are directly attributable to that part of the supply chain, and someone&#8217;s responsible. But our computer security losses aren&#8217;t so clear, and in fact are typically completely hidden from the asset owner. Banking losses due to hacking are spread throughout the system, with users rarely paying the price.</p>
<p>Actually, that statement is completely wrong. We all pay for this kind of fraud, but it&#8217;s hidden from us by being spread throughout the system, rather than tied to specific events. We all pay higher fees to cover these losses. Thus we don&#8217;t notice the pain, don&#8217;t cry out for change, and don&#8217;t change our practices. We don&#8217;t even pick our banks or credit cards based on security any more, since they all appear the same.</p>
<p>Losses are also anonymized on the corporate side. When an organization suffers a data breach, does the business unit involved suffer any losses? Do they pay for the remediation out of their departmental budget? Not in any company I&#8217;ve ever worked with &#8212; the losses are absorbed by IT/security.</p>
<p>Our system is constructed in a manner that completely disrupts the natural impact of market forces. Those most responsible for their assets suffer minimal or no direct pain when they experience losses. Damages are either spread through the system, or absorbed by another cost center.</p>
<p>Now imagine a world where we reverse this situation. Where consumers are responsible for the financial losses associated with illicit activity in their accounts. Where business unit managers have to pay for remediation efforts when they are hacked. I guarantee that behavior would quickly change.</p>
<p>The economics of security fail because the losses are invisibly transfered away from those with the most responsibility. They don&#8217;t suffer the pain of losses, but they <em>do</em> suffer the pain/inconvenience of security. On top of that, many of the losses are nearly impossible to measure, even if you detect them (non-regulated data loss). No wonder they don&#8217;t like us.</p>
<p>Security professionals ask me all the time when users will &#8220;get it&#8221;, and management will &#8220;pay attention&#8221;. We don&#8217;t have a hope of things changing until those in charge of the purse strings start suffering the pain associated with security failures.</p>
<p>It&#8217;s just simple economics.</p>
<p>			- Rich<br />
			(0) <a href="http://securosis.com/blog/the-anonymization-of-losses-a-market-forces-failure/">Comments</a>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/securosis?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/securosis?i=tI8G71M6zKQ:NTANkd-youw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/securosis?i=tI8G71M6zKQ:NTANkd-youw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/securosis?a=tI8G71M6zKQ:NTANkd-youw:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/securosis?d=63t7Ie-LG7Y" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/securosis/~4/tI8G71M6zKQ" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/cfMOhjOGLcsfGmpDqFOBGJhgWKU/0/da"><img src="http://feedads.g.doubleclick.net/~a/cfMOhjOGLcsfGmpDqFOBGJhgWKU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cfMOhjOGLcsfGmpDqFOBGJhgWKU/1/da"><img src="http://feedads.g.doubleclick.net/~a/cfMOhjOGLcsfGmpDqFOBGJhgWKU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/DGDIqbRgRV0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/securosis/~3/tI8G71M6zKQ/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/securosis/~3/tI8G71M6zKQ/</feedburner:origLink></item>
		<item>
		<title>OWASP Issues New Top 10 Web Application Security Risks List</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/P6kRS44zy6M/showArticle.jhtml</link>
		<comments>http://www.darkreading.com/security/vulnerabilities/showArticle.jhtml?articleID=221700095&amp;cid=RSSfeed#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:59:00 +0000</pubDate>
		<dc:creator>DarkReading - All Stories</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:www.darkreading.com://5bb0fa26a75fb20be9f294b4a32a507a</guid>
		<description><![CDATA[List now focuses on actual risk, not weaknesses and flaws in Websites
			
			]]></description>
			<content:encoded><![CDATA[<p>List now focuses on actual risk, not weaknesses and flaws in Websites</p>

<p><a href="http://feedads.g.doubleclick.net/~a/mIJE6Jpe0BTjInF3Du5jYaxQMYM/0/da"><img src="http://feedads.g.doubleclick.net/~a/mIJE6Jpe0BTjInF3Du5jYaxQMYM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mIJE6Jpe0BTjInF3Du5jYaxQMYM/1/da"><img src="http://feedads.g.doubleclick.net/~a/mIJE6Jpe0BTjInF3Du5jYaxQMYM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/P6kRS44zy6M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.darkreading.com/security/vulnerabilities/showArticle.jhtml?articleID=221700095&amp;cid=RSSfeed/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.darkreading.com/security/vulnerabilities/showArticle.jhtml?articleID=221700095&amp;cid=RSSfeed</feedburner:origLink></item>
		<item>
		<title>Windows 7: One Window You May Want to Jump Through</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/i8VGN2RSCVY/</link>
		<comments>http://blog.lumension.com/?p=2338#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:54:21 +0000</pubDate>
		<dc:creator>Chris Merritt</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[Application Security]]></category>

		<category><![CDATA[data protection]]></category>

		<category><![CDATA[ecryption]]></category>

		<category><![CDATA[Featured Posts]]></category>

		<category><![CDATA[information security]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[network security]]></category>

		<category><![CDATA[Patch Tuesday]]></category>

		<category><![CDATA[vulnerability management]]></category>

		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.lumension.com/?p=2338</guid>
		<description><![CDATA[Windows 7 has arrived on the scene with much hoopla. Understandably, many IT folks have greeted it with some trepidation. Here are my thoughts on what you should consider before migrating to this new platform.
No. 1: Windows 7 is better than XP, which is now already eight years old. While Windows 7 may not be [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 7 has arrived on the scene with much hoopla. Understandably, many IT folks have greeted it with some trepidation. Here are my thoughts on what you should consider before migrating to this new platform.</p>
<p><strong>No. 1: Windows 7 is better than XP, </strong>which is now already eight years old. While Windows 7 may not be the <em>perfect </em>OS, it&#8217;s certainly better than almost decade-old technology. And in our knowledge-based economy, forcing knowledge workers to stay on old technology may be difficult. If people feel that their technological evolution is being thwarted by the organization, they&#8217;ll find ways around it – as we’ve <a href="http://blog.lumension.com/?p=408" >talked about before</a> – because they&#8217;re thinking, &#8220;How do I stay current with the latest technology and tools? How do I remain effective and efficient? How do I keep my skill set relevant? How will that impact my career?&#8221; It&#8217;s better to be in charge of an organized plan to provide employees with what they need, rather than have to react to employees going behind your back.</p>
<p><strong>No. 2: Third-party tools will augment Windows 7 </strong>to provide enterprise-level security. Windows 7 is the most secure Windows OS out there for desktops, laptops, etc., and is definitely better than previous versions. In fact, in its report entitled &#8220;<a href="http://www.gartner.com/DisplayDocument?id=1210543" >Planning for the Security Features of Windows 7</a>,&#8221; Gartner points out that Windows 7 includes &#8220;free&#8221; security features such as Data Execution Prevention (DEP), Address Stack Layout Randomization (ASLR) and Safe Unlinking.</p>
<p>The problem is that people may get lulled into thinking they&#8217;re completely secure when, in fact, lots of the lessons learned over the last decade or so still apply. Third-party tools will still be necessary to ensure enterprise-level security. For example, Microsoft has dialed back user account control (UAC), which most people disabled on their Vista boxes because they found it annoying. Yet Sophos – one of our colleagues in the antivirus/malware space – suggests that <a href="http://blogs.zdnet.com/security/?p=4825" >Windows 7 doesn&#8217;t block 8 out of 10 viruses that Vista would have blocked</a>. [Of course, <a href="http://www.eweek.com/c/a/Security/Microsoft-Windows-7-Security-Concerns-Sensationalized-by-Sophos-860454/" >Microsoft disagrees with this assessment</a>.] Another example: BitLocker – an encryption tool included with Windows 7 – is pretty much all or nothing. And as far as I&#8217;m aware, it doesn&#8217;t have limits on file types, limits by amount (per user, per day), or provide shadowing. Many of the capabilities that third-party tools have incorporated over the years will be better than what you get with Windows 7.</p>
<p>In addition, Gartner recommends using group policy object (GPO)-based management to support Windows 7 deployments. Group policy is a method by which the network admin can configure boxes on the network. Unfortunately a user running as admin can change the configuration (Gartner also recommends &#8220;running as a standard user wherever possible.&#8221; For more on this issue, check out <a href="http://blog.lumension.com/?p=510" >our previous discussion</a>). This brings to mind a common complaint heard by those running XP: &#8220;Gee, you offer this great tool but I have no way of knowing whether those changes I&#8217;ve made have taken effect or whether any users have changed them.&#8221; Microsoft has changed that a bit in Windows 7 but, in general, third-party tools do a much better job of providing the overview of your network and can actually enforce the rules in ways that GPO doesn&#8217;t.</p>
<p>Plus, &#8220;free&#8221; doesn&#8217;t mean without cost. If you run a very small organization, free tools make sense. But they don&#8217;t make sense as your organization grows. Why? First because Microsoft takes care of Microsoft-related issues only. For instance, <a href="http://lastwatchdog.com/adobe-surpasses-microsoft-favorite-hackers-target/" >Adobe is considered by some to be the #1 threat vector</a> into your network and endpoints (laptops, desktops, and so on) at the moment. Microsoft tools are not going to fix these issues. Second, these free tools don&#8217;t give you central management control. You can set things but you don&#8217;t necessarily get the reporting and ability to lock down that you get with third-party tools. That lack of visibility means you&#8217;re never quite sure what&#8217;s happening in your environment.</p>
<p>In addition, if you&#8217;re a large organization that needs to prove compliance with statutes and regulations – whether state, federal, industry, and/or pan-national laws – you&#8217;ll be better off with third-party tools that provide better reporting and lock-down capabilities. Third-party tools can also be the best way to provide best-in-class capabilities because third-party vendors are laser-focused on those issues – Microsoft has a lot of other things to think about.</p>
<p><strong>No. 3: Consider the overall costs of migrating. </strong>There are always challenges when moving enterprises to a new OS. How do you migrate people, how do you time it, how do you train them, what productivity losses will you incur, how will we handle increased calls to the help desk, and so on. If you&#8217;re running XP, you need to make sure everything will migrate, especially if you&#8217;re running custom software. I read somewhere that a typical large organization has 600 custom-developed software programs running on their boxes. You&#8217;ll have to do a lot of work to make sure everything tests out.</p>
<p>In addition, Gartner points out that many of the Windows 7 security features are only available for those who are enterprise agreement / software assurance (EA / SA) subscribers, or in the consumer-focused Ultimate version. Oh, and by the way, it looks like you’ll need Windows Server 2008 R2 to take advantage of several of the new security capabilities in Windows 7, such as the integrated Network Access Control (NAC, which they call Network Access Protection or NAP) and DirectAccess (an integrated VPN solution).</p>
<p>So you need to factor in all these costs too, which might impact you differently depending on your needs, your organization’s size and your current licensing status – all while bearing in mind which of the security points I discussed above apply, or don&#8217;t.</p>
<p><strong>No. 4: Don&#8217;t be afraid of the change that&#8217;s coming.</strong> You don&#8217;t need to be at the cutting edge, but you needn&#8217;t be afraid of it and wait for the 1st or 2nd service release. Windows 7 technology, especially when coupled with the new underlying hardware, should improve your workplace productivity and effectiveness. Sure, there will continue to be patches and security bulletins – that’s the nature of the beast. But combine the undeniable strides Microsoft has made with Windows 7 in the security arena with some good third-party tools to round out your defense-in-depth strategy, and you’ll be doing quite well. And the latter are especially important if you also need centralized control and visibility.</p>
<p>So, in the end, here are the key points as I see it:</p>
<ol>
<li>Don&#8217;t get fooled by built-in security features.</li>
<li>Make sure your third-party vendors are going to support Windows 7 as you migrate.</li>
<li>Keep your eye on the security ball – Microsoft can&#8217;t do it all by itself.</li>
<li>Microsoft Windows 7 plus third-party tools adds up to much better security than what you had before.</li>
<li>By migrating in an organized, thoughtful manner, you&#8217;ll be able to manage the change and maximize the utility.</li>
</ol>

<p><a href="http://feedads.g.doubleclick.net/~a/Sn0cxx5kSVhGFfIyCwEfg4Ni8o4/0/da"><img src="http://feedads.g.doubleclick.net/~a/Sn0cxx5kSVhGFfIyCwEfg4Ni8o4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Sn0cxx5kSVhGFfIyCwEfg4Ni8o4/1/da"><img src="http://feedads.g.doubleclick.net/~a/Sn0cxx5kSVhGFfIyCwEfg4Ni8o4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/i8VGN2RSCVY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lumension.com/?p=2338/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.lumension.com/?p=2338</feedburner:origLink></item>
		<item>
		<title>Technical  Logical Vulnerabilities == Design  Implementation Vulnerabilities</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/wWnvacXyxBs/technical-logical-vulnerabilities-design-implementation-vulnerabilities.html</link>
		<comments>http://blog.watchfire.com/wfblog/2009/11/technical-logical-vulnerabilities-design-implementation-vulnerabilities.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:06:44 +0000</pubDate>
		<dc:creator>Ory Segal</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d835130c5153ef0120a6957641970b</guid>
		<description><![CDATA[Hi, While at the OWASP DC conference, an interesting thought came to me, which I’d like to hear people’s opinion about. So you all probably know about technical vs. logical vulnerabilities, right? I think it was Jeremiah Grossman who came...]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>While at the OWASP DC conference, an interesting thought came to me, which I’d like to hear people’s opinion about. So you all probably know about technical vs. logical vulnerabilities, right? I think it was <a href="http://www.whitehatsec.com/home/resources/articles/files/c91b8015260b2e3cf572a95033d4a9b8-5.html" >Jeremiah Grossman who came up with this classification</a>. Anyway, while thinking about this classification, I noticed that (almost) all technical vulnerabilities stem from insecure software implementation and (almost) all logical vulnerabilities, stem from insecure software design and/or architecture. If you think about it some more, most technical vulnerabilities, are fixed by repairing your code, and most logical vulnerabilities, are fixed by applying secure design patterns (fixing your design), or modifying your architecture to be more secure.</p>
<p>So, IMHO:</p>
<p>Technical vulnerabilities == Implementation vulnerabilities</p>
<p>Logical vulnerabilities == Design &amp; Architecture vulnerabilities</p>
<p>What do you think? I’d love to hear your comments.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?a=wWnvacXyxBs:nQtEVl03rnE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?a=wWnvacXyxBs:nQtEVl03rnE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?a=wWnvacXyxBs:nQtEVl03rnE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WatchfireApplicationSecurityInsider?i=wWnvacXyxBs:nQtEVl03rnE:V_sGLiPBpWU" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/WatchfireApplicationSecurityInsider/~4/wWnvacXyxBs" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/YIfXO9S0Z1zEnPFHayhDkLlmdGo/0/da"><img src="http://feedads.g.doubleclick.net/~a/YIfXO9S0Z1zEnPFHayhDkLlmdGo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YIfXO9S0Z1zEnPFHayhDkLlmdGo/1/da"><img src="http://feedads.g.doubleclick.net/~a/YIfXO9S0Z1zEnPFHayhDkLlmdGo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/wWnvacXyxBs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.watchfire.com/wfblog/2009/11/technical-logical-vulnerabilities-design-implementation-vulnerabilities.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.watchfire.com/wfblog/2009/11/technical-logical-vulnerabilities-design-implementation-vulnerabilities.html</feedburner:origLink></item>
		<item>
		<title>Panda Cloud Antivirus 1.0 Review</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/bGrJIhoWbak/Panda-Cloud-Antivirus-1-0-Review</link>
		<comments>http://www.thetechherald.com/article.php/200946/4783/Panda-Cloud-Antivirus-1-0-Review#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:00:00 +0000</pubDate>
		<dc:creator>Steve Ragan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:feeds.feedburner.com://529acc98890c7f07740279f387c218e4</guid>
		<description><![CDATA[Panda Security has officially stripped the beta tag from their cloud protection offering, aptly named Cloud Antivirus. Version 1.0 of Cloud Antivirus offers several things, including a retooling of the interface, better detection, and scores of bug fixes from the previous three beta offerings. The Tech Herald reviewed the first beta, and now that the software is official, were testing it again.]]></description>
			<content:encoded><![CDATA[<p>Panda Security has officially stripped the beta tag from their cloud protection offering, aptly named Cloud Antivirus. Version 1.0 of Cloud Antivirus offers several things, including a retooling of the interface, better detection, and scores of bug fixes from the previous three beta offerings. The Tech Herald reviewed the first beta, and now that the software is official, were testing it again.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/4XNY7S4ZW4uOFshPuGsoLGbUqU4/0/da"><img src="http://feedads.g.doubleclick.net/~a/4XNY7S4ZW4uOFshPuGsoLGbUqU4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4XNY7S4ZW4uOFshPuGsoLGbUqU4/1/da"><img src="http://feedads.g.doubleclick.net/~a/4XNY7S4ZW4uOFshPuGsoLGbUqU4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/bGrJIhoWbak" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thetechherald.com/article.php/200946/4783/Panda-Cloud-Antivirus-1-0-Review/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.thetechherald.com/article.php/200946/4783/Panda-Cloud-Antivirus-1-0-Review</feedburner:origLink></item>
		<item>
		<title>Grecs’ Weekly Infosec Ramblings for 2009-11-12</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/BPOYhMuLMGA/</link>
		<comments>http://feedproxy.google.com/~r/novainfosecportalblog/~3/TbeIHH0HjIg/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:00:00 +0000</pubDate>
		<dc:creator>grecs</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[digest]]></category>

		<category><![CDATA[grecs]]></category>

		<category><![CDATA[NoVA Email Lists/Networking]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.novainfosecportal.com/2009/11/12/grecs-weekly-infosec-ramblings-for-2009-11-12/</guid>
		<description><![CDATA[If you’re not already following the NovaInfosec Twits and are wondering where to get the best tweets about security in the NoVA, DC, and MD area, look no further than this post.
Posted every Friday, our “Infosec Ramblings” post takes the best security tweets from the past week and puts them into one easy to digest [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re not already following the <a href="http://www.novainfosecportal.com/resources/nova-email-lists-networking/novainfosec-twits/" >NovaInfosec Twits</a> and are wondering where to get the best tweets about security in the <a href="http://www.novainfosecportal.com/events/nova-meetups/#events-in-nova" >NoVA</a>, <a href="http://www.novainfosecportal.com/events/nova-meetups/#events-in-dc" >DC</a>, and <a href="http://www.novainfosecportal.com/events/nova-meetups/#events-in-md" >MD</a> area, look no further than this post.</p>
<p><span id="contentArea">Posted every Friday, our “Infosec Ramblings” post takes the best security tweets from the past week and puts them into one easy to digest post.</span></p>
<p>If you don’t want to wait an entire week to read the best security tweets, be sure to stop by <a href="http://twitter.com/grecs">@grecs</a> or learn more about the <a href="http://www.novainfosecportal.com/resources/nova-email-lists-networking/novainfosec-twits/" >NovaInfosec Twits</a>.</p>
<p>There seemed to be quite a few meetups this past week. Did you get to attend any of them?</p>
<ul>
<li>RT @<a href="http://twitter.com/IBMFedCyber">IBMFedCyber</a> Also hitting the TechAmerica Cloud Security Round table Thursday:   <a rel="nofollow" href="http://bit.ly/10rLIn">http://bit.ly/10rLIn</a> &#8211; full week of fun! #<a href="http://search.twitter.com/search?q=%23mtg">mtg</a> <a href="http://twitter.com/grecs/statuses/5576366780">#</a></li>
</ul>
<p>There’s also some upcoming meetups for those of you who are interested.</p>
<ul>
<li>RT @<a href="http://twitter.com/CharmSec">CharmSec</a> 19 has been booked @<a href="http://twitter.com/slaintepub">slaintepub</a> for Nov 19th instead of the usual last-Thursday-of-the-month for numerology reasons #<a href="http://search.twitter.com/search?q=%23mtg">mtg</a> <a href="http://twitter.com/grecs/statuses/5575986603">#</a></li>
<li>New grp #<a href="http://search.twitter.com/search?q=%23mtg">mtg</a>? RT @<a href="http://twitter.com/securitytwits">securitytwits</a> @mwollenweber: DC Org of Hackers (DoH!), Wash&#8217;s vs of AHA. 11/25. 7PM GWU Campus off Foggy Bottom Metro ^Q <a href="http://twitter.com/grecs/statuses/5647818307">#</a></li>
</ul>
<p>If you don&#8217;t have time to make it to any of the weekly security meetups, why not try attending one of these upcoming conferences?</p>
<ul>
<li>RT @<a href="http://twitter.com/evejou">evejou</a> RT @[everyone in the whole world, except those still unaware] Dojocon Videos are online now: <a rel="nofollow" href="http://bit.ly/3qkmSD">http://bit.ly/3qkmSD</a> #<a href="http://search.twitter.com/search?q=%23con">con</a> <a href="http://twitter.com/grecs/statuses/5588881525">#</a></li>
<li>RT @<a href="http://twitter.com/signalmag">signalmag</a> Reg is open for next #<a href="http://search.twitter.com/search?q=%23AFCEA">AFCEA</a> SOLUTIONS event on cyberspace &amp; cyberthreats! Great speakers. <a rel="nofollow" href="http://bit.ly/2Dmajv">http://bit.ly/2Dmajv</a> #<a href="http://search.twitter.com/search?q=%23con">con</a> <a href="http://twitter.com/grecs/statuses/5609527602">#</a></li>
<li>RT @<a href="http://twitter.com/AppSecDC09">AppSecDC09</a> Remember, the #<a href="http://search.twitter.com/search?q=%23OWASP">OWASP</a> Summit is tomorrow! Use the #<a href="http://search.twitter.com/search?q=%23AppSecDC">AppSecDC</a> hash tag for Summit and Conference tweets! #<a href="http://search.twitter.com/search?q=%23con">con</a> <a href="http://twitter.com/grecs/statuses/5609861464">#</a></li>
</ul>
<p>For those of you that don’t know, we have some pretty awesome infosec bloggers in the local area. You can check out some of their articles below.</p>
<ul>
<li>TRIAL &amp; ERROR: @<a href="http://twitter.com/falconsview">falconsview</a> &#8217;s experience in trying out the Arizona thing. <a rel="nofollow" href="http://ow.ly/zJko">http://ow.ly/zJko</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5468951659">#</a></li>
<li>RT @<a href="http://twitter.com/rybolov">rybolov</a> I put up my DojoCon presentation, slides, and compliancy panel on my blog: <a rel="nofollow" href="http://bit.ly/4nty3U">http://bit.ly/4nty3U</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5521856399">#</a></li>
<li>SECURITY JUSTICE PODCAST: And @<a href="http://twitter.com/taosecurity">taosecurity</a> made it on this post cast too. <a rel="nofollow" href="http://ow.ly/BK9K">http://ow.ly/BK9K</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661179062">#</a></li>
<li>HAYDEN NOTES: @<a href="http://twitter.com/taosecurity">taosecurity</a> got chance to attend 1 of Gen Hayden&#8217;s talks &amp; wrote up sum of it. Pic too! <a rel="nofollow" href="http://ow.ly/BKd8">http://ow.ly/BKd8</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661303854">#</a></li>
<li>60 MINUTES STORY: @<a href="http://twitter.com/taosecurity">taosecurity</a> &#8217;s reaction. Says real issue is APT. Of course t/i whole Brazil thingy. <a rel="nofollow" href="http://ow.ly/BKjE">http://ow.ly/BKjE</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661525802">#</a></li>
<li>BRAZIL POWER OUTAGES: @<a href="http://twitter.com/moranned">moranned</a> put this up pre-60 Mins. Bet there will b lots of discussn around this. <a rel="nofollow" href="http://ow.ly/BKpR">http://ow.ly/BKpR</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661726853">#</a></li>
<li>60 MINUTES: See a theme this week. Anyway, @<a href="http://twitter.com/moranned">moranned</a> posts the episode up for his class. <a rel="nofollow" href="http://ow.ly/BKsG">http://ow.ly/BKsG</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661807716">#</a></li>
<li>FOOD 4 THOUGHT: @<a href="http://twitter.com/moranned">moranned</a> posts snipits fr Errata&#8217;s 60 Min counterpoint. Brazil thing keeps coming up. <a rel="nofollow" href="http://ow.ly/BKu4">http://ow.ly/BKu4</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661910766">#</a></li>
<li>CRIMINAL SOPHISTICATION: @<a href="http://twitter.com/moranned">moranned</a> points out good Wired article on how the bad guys getting better. <a rel="nofollow" href="http://ow.ly/BKw5">http://ow.ly/BKw5</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5661991172">#</a></li>
<li>WASH POST REHASH: @<a href="http://twitter.com/moranned">moranned</a> points out China story with nothing new. May be worth a read though. <a rel="nofollow" href="http://ow.ly/BKxv">http://ow.ly/BKxv</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5662053118">#</a></li>
<li>ITS FULL OF COLOR: @<a href="http://twitter.com/carnal0wnage">carnal0wnage</a> shows screenshot of new Metasploit interface. Guess what&#8217;s new. <a rel="nofollow" href="http://ow.ly/BKyF">http://ow.ly/BKyF</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5662117568">#</a></li>
<li>EFF QOTD: @<a href="http://twitter.com/falconsview">falconsview</a> points out interesting quote. What was suppose 2 b bad is now being embraced. <a rel="nofollow" href="http://ow.ly/BKzZ">http://ow.ly/BKzZ</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5662187950">#</a></li>
<li>MORE FLASH PROBLEMS: Guess this just came out this afternoon and @<a href="http://twitter.com/falconsview">falconsview</a> did quick post on it. <a rel="nofollow" href="http://ow.ly/BKBv">http://ow.ly/BKBv</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5662235604">#</a></li>
<li>ROOM 362 ORIGINS: In case U were wondering here is @<a href="http://twitter.com/mubix">mubix</a> &#8217;s repost. Apparently got lost but now is back. <a rel="nofollow" href="http://ow.ly/BKDp">http://ow.ly/BKDp</a> #<a href="http://search.twitter.com/search?q=%23novablogger">novablogger</a> <a href="http://twitter.com/grecs/statuses/5662330289">#</a></li>
</ul>
<p>In case you missed them, here were some of our blog posts from this week.</p>
<ul>
<li>BLOGGED: Grecs’ Weekly Infosec Ramblings for 2009-11-05 <a rel="nofollow" href="http://ow.ly/15ZM9s">http://ow.ly/15ZM9s</a> <a href="http://twitter.com/grecs/statuses/5467687969">#</a></li>
<li>BLOGGED: Top 3 NoVA Infosec Blog Posts of the Week <a rel="nofollow" href="http://ow.ly/15ZTLA">http://ow.ly/15ZTLA</a> <a href="http://twitter.com/grecs/statuses/5482302738">#</a></li>
<li>BLOGGED: Where You Want to Be This Week (11-09) <a rel="nofollow" href="http://ow.ly/160tcv">http://ow.ly/160tcv</a> <a href="http://twitter.com/grecs/statuses/5562391651">#</a></li>
</ul>
<p>You can also keep yourself busy with these interesting newsbites:</p>
<ul>
<li>NEW CERT ALERT: RT @<a href="http://twitter.com/IBMFedCyber">IBMFedCyber</a> CAP Certified?  DoD Approves new credentials for Security Pro&#8217;s:  <a rel="nofollow" href="http://bit.ly/4i1zHR">http://bit.ly/4i1zHR</a> <a href="http://twitter.com/grecs/statuses/5482295487">#</a></li>
<li>Good first step but need more control of actual info. RT @<a href="http://twitter.com/briankrebs">briankrebs</a> Poking at Google&#8217;s new privacy Dashboard <a rel="nofollow" href="http://bit.ly/fTxJT">http://bit.ly/fTxJT</a> <a href="http://twitter.com/grecs/statuses/5490949797">#</a></li>
<li>Dashboard is all privacy theatre. RT @<a href="http://twitter.com/regsecurity">regsecurity</a> Vint Cerf: &#8216;Google doesn&#8217;t know who you are&#8217; <a rel="nofollow" href="http://bit.ly/1zyYpf">http://bit.ly/1zyYpf</a> <a href="http://twitter.com/grecs/statuses/5495814775">#</a></li>
<li>Like the graphic though. RT @<a href="http://twitter.com/danphilpott">danphilpott</a> When people ask who I work for maybe I&#8217;ll say I&#8217;m a messenger fr CIA Triad. <a rel="nofollow" href="http://bit.ly/5lNv2">http://bit.ly/5lNv2</a> <a href="http://twitter.com/grecs/statuses/5511548124">#</a></li>
<li>Always good to gave handy. RT @<a href="http://twitter.com/DrInfoSec">DrInfoSec</a> Default Passwords List (via @<a href="http://twitter.com/proactivedefend">proactivedefend</a> | @<a href="http://twitter.com/opexx">opexx</a>) <a rel="nofollow" href="http://ow.ly/1606db">http://ow.ly/1606db</a> <a href="http://twitter.com/grecs/statuses/5511654352">#</a></li>
<li>Lots of articles on this today. You&#8217;re ok unless U jailbreak. RT @<a href="http://twitter.com/sans_isc">sans_isc</a> [Diary] iPhone worm in the wild <a rel="nofollow" href="http://bit.ly/3fJwAD">http://bit.ly/3fJwAD</a> <a href="http://twitter.com/grecs/statuses/5542939773">#</a></li>
<li>Good ?. RT @<a href="http://twitter.com/mckeay">mckeay</a> Cofee law enforce tool leaked 2 bitorrent, <a rel="nofollow" href="http://bit.ly/2vN2YO">http://bit.ly/2vN2YO</a> What R ethical implications of download &amp; trying? <a href="http://twitter.com/grecs/statuses/5542969785">#</a></li>
<li>I knew it. RT @<a href="http://twitter.com/angelinaward">angelinaward</a> RT @PCSecurityNews: Google Dashboard Creates Security and Privacy Concerns. <a rel="nofollow" href="http://bit.ly/1NwxKw">http://bit.ly/1NwxKw</a> <a href="http://twitter.com/grecs/statuses/5569954898">#</a></li>
<li>Watched. Nothing big. Good for awareness though. RT @<a href="http://twitter.com/RodBeckstrom">RodBeckstrom</a> 60 Minutes CBS Cybersecurity piece: <a rel="nofollow" href="http://bit.ly/3mOfbG">http://bit.ly/3mOfbG</a> <a href="http://twitter.com/grecs/statuses/5570117687">#</a></li>
<li>Interesting. RT @<a href="http://twitter.com/moranned">moranned</a> really interesting counterpoint to the 60 Minutes hackers piece by Errata Security &#8211; <a rel="nofollow" href="http://bit.ly/DKAhw">http://bit.ly/DKAhw</a> <a href="http://twitter.com/grecs/statuses/5575798755">#</a></li>
<li>Awesome article. #<a href="http://search.twitter.com/search?q=%23todo">todo</a> RT @<a href="http://twitter.com/Shpantzer">Shpantzer</a> @<a href="http://twitter.com/vcuinfosec">vcuinfosec</a> Consider hiding ur bday on Facebook/MySpace. Better yet.. <a rel="nofollow" href="http://bit.ly/10YKde">http://bit.ly/10YKde</a> <a href="http://twitter.com/grecs/statuses/5576150536">#</a></li>
<li>RT @<a href="http://twitter.com/GovInfoSecurity">GovInfoSecurity</a> Will 60 Minute cybersecurity segment force Obama to name sooner than later a cyber czar? <a rel="nofollow" href="http://bit.ly/3ilgeV">http://bit.ly/3ilgeV</a> <a href="http://twitter.com/grecs/statuses/5576394127">#</a></li>
<li>RT @<a href="http://twitter.com/danphilpott">danphilpott</a> Cybersecurity Comparison Matrix: Nice summation of cybersecurity activity <a rel="nofollow" href="http://bit.ly/1URZov">http://bit.ly/1URZov</a> <a href="http://twitter.com/grecs/statuses/5588498898">#</a></li>
<li>RT @<a href="http://twitter.com/danphilpott">danphilpott</a> RT @fedcomputerweek: New contractor db draws fire: Industry and good-gov grps criticize <a rel="nofollow" href="http://bit.ly/OtHxN">http://bit.ly/OtHxN</a> <a href="http://twitter.com/grecs/statuses/5589012989">#</a></li>
<li>RT @<a href="http://twitter.com/sans_isc">sans_isc</a> [Diary] Microsoft Nov Black Tues Overview: Overview of Nov 2009 Microsoft patches &#8230; <a rel="nofollow" href="http://bit.ly/3pFDzc">http://bit.ly/3pFDzc</a> <a href="http://twitter.com/grecs/statuses/5609707303">#</a></li>
</ul>
<p>If newsbites aren&#8217;t your thing, you can keep yourself busy with these reports:</p>
<ul>
<li>Always a good watch. RT @<a href="http://twitter.com/VRT_Sourcefire">VRT_Sourcefire</a> November 2009 Vulnerability Report <a rel="nofollow" href="http://bit.ly/3JXVLJ">http://bit.ly/3JXVLJ</a> <a href="http://twitter.com/grecs/statuses/5636865889">#</a></li>
</ul>
<p><span id="contentArea"> </span><span id="contentArea">Here are some job openings in the security field:</span></p>
<ul>
<li>Hope people get this in time. It&#8217;s on Sat! RT @<a href="http://twitter.com/GovInfoSecurity">GovInfoSecurity</a> DISA Job Fair Targets Cybersecurity Students <a rel="nofollow" href="http://bit.ly/5ATCH">http://bit.ly/5ATCH</a> #<a href="http://search.twitter.com/search?q=%23job">job</a> <a href="http://twitter.com/grecs/statuses/5495381027">#</a></li>
<li>#job RT @<a href="http://twitter.com/bobgourley">bobgourley</a> Just posted job opening Disruptive Tech Analyst: <a rel="nofollow" href="http://j.mp/rASq">http://j.mp/rASq</a> Please check out write up and help connect <a href="http://twitter.com/grecs/statuses/5589201700">#</a></li>
</ul>
<p><span id="contentArea">And in closing, who could forget the tweet of the week?</span></p>
<ul>
<li>RT @rik_ferguson: &#8220;iPhone worm&#8221; like smashing yr car win 4 yer keys, not getting it fixed, then wondering where yr CD player went. #<a href="http://search.twitter.com/search?q=%23totw">totw</a> <a href="http://twitter.com/grecs/statuses/5588916261">#</a></li>
</ul>
<p>Well, that&#8217;s all for this week. Be sure to follow us <a title="@grecs" href="http://twitter.com/grecs">@grecs</a> for more great tweets during the week!</p>
<p><img src="http://feeds.feedburner.com/~r/novainfosecportalblog/~4/TbeIHH0HjIg" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Ya5Q3n64G-nbbucrw_A9o6CfovQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/Ya5Q3n64G-nbbucrw_A9o6CfovQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Ya5Q3n64G-nbbucrw_A9o6CfovQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/Ya5Q3n64G-nbbucrw_A9o6CfovQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/BPOYhMuLMGA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/novainfosecportalblog/~3/TbeIHH0HjIg/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/novainfosecportalblog/~3/TbeIHH0HjIg/</feedburner:origLink></item>
		<item>
		<title>Best of Application Security (Friday, Nov. 13)</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/RnJgDLAUtik/best-of-application-security-friday-nov_13.html</link>
		<comments>http://feedproxy.google.com/~r/JeremiahGrossman/~3/HymXiXiArJM/best-of-application-security-friday-nov_13.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:20:00 +0000</pubDate>
		<dc:creator>Jeremiah Grossman</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-13756280.post-8428198891916674108</guid>
		<description><![CDATA[Ten of Application Security industry's coolest, most interesting, important, and entertaining links from the past week -- in no particular order. Regularly released until year end. Then the Best of Application Security 2009 will be selected!OWASP Top 1...]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/13756280-8428198891916674108?l=jeremiahgrossman.blogspot.com and new=http://jeremiahgrossman.blogspot.com/https://blogger.googleusercontent.com/tracker/13756280-8428198891916674108?l=jeremiahgrossman.blogspot.com --><p>Ten of Application Security industry&#8217;s coolest, most interesting, important, and entertaining links from the past week &#8212; in no particular order. Regularly released until year end. Then the Best of Application Security 2009 will be selected!
<ul>
<li><a href="http://jeremiahgrossman.blogspot.com/2009/11/owasp-top-10-2010-release-candidate-1.html">OWASP Top 10 (2010 release candidate 1) </a></li>
<li><a href="http://www.foregroundsecurity.com/MyBlog/flash-origin-policy-issues.html">Flash Origin Policy Issues </a>and <a href="http://skeptikal.org/2009/11/flash-origin-attack-faq.html">FAQ</a></li>
<li><a href="http://www.computerworld.com/s/article/9140543/Microsoft_to_release_security_guidelines_for_Agile?taxonomyId=17">Microsoft to release security guidelines for Agile</a></li>
<li><a href="http://www.slideshare.net/jeremiahgrossman/whitehat-security-8th-website-security-statistics-report-2494163">WhiteHat Security 8th Website Security Statistics Report Edit Presentation</a></li>
<li><a href="http://blogs.adobe.com/asset/2009/11/securely_deploying_cross-domai.html">Securely deploying cross-domain policy files</a></li>
<li><a href="http://www.scmagazineus.com/Vulnerability-assessment-integration-with-web-application-firewalls/article/157371/">Vulnerability assessment integration with web application firewalls</a></li>
<li><a href="http://www.modsecurity.org/demo/">ModSecurity Core Rule Set (CRS) <-> PHPIDS Smoketest</a></li>
<li><a href="http://www.enterprisemanagement.com/research/asset.php?id=1611">Website Vulnerability Assessment Q4 2009 (EMA Radar Report™ Summary)</a></li>
<li><a href="http://www.net-security.org/secworld.php?id=8490">Facebook groups hacked through design flaw</a></li>
<li><a href="http://yro.slashdot.org/story/09/11/09/2319233/Microsoft-Tries-To-Censor-Bing-Vulnerability">Microsoft Tries To Censor Bing Vulnerability</a></li>
</ul>
<div class="blogger-post-footer">
<hr />
<p><a href="http://www.whitehatsec.com/">WhiteHat Security</a> is a leading provider of website security services.</p>
<p>
<hr /><img width='1' height='1' src='http://jeremiahgrossman.blogspot.com/https://blogger.googleusercontent.com/tracker/13756280-8428198891916674108?l=jeremiahgrossman.blogspot.com'/></div>

<p><a href="http://feedads.g.doubleclick.net/~a/07K4Wjvs0dNBTkUDoKFEze7c170/0/da"><img src="http://feedads.g.doubleclick.net/~a/07K4Wjvs0dNBTkUDoKFEze7c170/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/07K4Wjvs0dNBTkUDoKFEze7c170/1/da"><img src="http://feedads.g.doubleclick.net/~a/07K4Wjvs0dNBTkUDoKFEze7c170/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/RnJgDLAUtik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/JeremiahGrossman/~3/HymXiXiArJM/best-of-application-security-friday-nov_13.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/JeremiahGrossman/~3/HymXiXiArJM/best-of-application-security-friday-nov_13.html</feedburner:origLink></item>
		<item>
		<title>SecurityOrb.com Interviews Glen of HackersforCharity  at DoJoCon 2009</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/DXV0p616eDo/securityorbcom-interviews-glen-of.html</link>
		<comments>http://kellepcharles.blogspot.com/2009/11/securityorbcom-interviews-glen-of.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:15:00 +0000</pubDate>
		<dc:creator>Kellep A. Charles, CISA, CISSP, NSA-IAM</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[DojoCon]]></category>

		<category><![CDATA[Hackers for Charity]]></category>

		<category><![CDATA[SecurityOrb.com]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-1092589191457188836.post-3476734014684858124</guid>
		<description><![CDATA[<p><a href="http://vimeo.com/7595425">SecurityOrb.com Interview Glen from HFC</a> from <a href="http://vimeo.com/securityorb">SecurityOrb</a> on <a href="http://vimeo.com">Vimeo</a>.</p><div class="blogger-post-footer"><img width='1' height='1'></div>]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/1092589191457188836-3476734014684858124?l=kellepcharles.blogspot.com and new=http://kellepcharles.blogspot.com/https://blogger.googleusercontent.com/tracker/1092589191457188836-3476734014684858124?l=kellepcharles.blogspot.com --><p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7595425&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7595425&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/7595425">SecurityOrb.com Interview Glen from HFC</a> from <a href="http://vimeo.com/securityorb">SecurityOrb</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<div class="blogger-post-footer"><img width='1' height='1' src='http://kellepcharles.blogspot.com/https://blogger.googleusercontent.com/tracker/1092589191457188836-3476734014684858124?l=kellepcharles.blogspot.com'/></div>

<p><a href="http://feedads.g.doubleclick.net/~a/1ueS8OmtMrn5ZV2p8gALUnDqqd0/0/da"><img src="http://feedads.g.doubleclick.net/~a/1ueS8OmtMrn5ZV2p8gALUnDqqd0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1ueS8OmtMrn5ZV2p8gALUnDqqd0/1/da"><img src="http://feedads.g.doubleclick.net/~a/1ueS8OmtMrn5ZV2p8gALUnDqqd0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/DXV0p616eDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kellepcharles.blogspot.com/2009/11/securityorbcom-interviews-glen-of.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://kellepcharles.blogspot.com/2009/11/securityorbcom-interviews-glen-of.html</feedburner:origLink></item>
		<item>
		<title>SecurityOrb.com Interviews Glen of Hackersforcharity.org</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/nJp42Dx3Fc8/</link>
		<comments>http://securityorb.com/blog/?p=130#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:12:50 +0000</pubDate>
		<dc:creator>kellepc</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://securityorb.com/blog/?p=130</guid>
		<description><![CDATA[
SecurityOrb.com Interview Glen from HFC from SecurityOrb on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=7595425&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=7595425&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/7595425">SecurityOrb.com Interview Glen from HFC</a> from <a href="http://vimeo.com/securityorb">SecurityOrb</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/lzfusg2aS0xW_jo3IMrJqKIpv68/0/da"><img src="http://feedads.g.doubleclick.net/~a/lzfusg2aS0xW_jo3IMrJqKIpv68/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lzfusg2aS0xW_jo3IMrJqKIpv68/1/da"><img src="http://feedads.g.doubleclick.net/~a/lzfusg2aS0xW_jo3IMrJqKIpv68/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/nJp42Dx3Fc8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://securityorb.com/blog/?p=130/feed/</wfw:commentRss>
		<feedburner:origLink>http://securityorb.com/blog/?p=130</feedburner:origLink></item>
		<item>
		<title>Imperva &amp; WhiteHat Security Co-Present at Interop NY</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/B-r7vk-mf4o/imperva-whitehat-security-copresent-at-interop-ny-.html</link>
		<comments>http://blog.imperva.com/2009/11/imperva-whitehat-security-copresent-at-interop-ny-.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:12:45 +0000</pubDate>
		<dc:creator>Brian Contos</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Brian Contos]]></category>

		<guid isPermaLink="false">http://blog.imperva.com/2009/11/imperva-whitehat-security-copresent-at-interop-ny-.html</guid>
		<description><![CDATA[Interop New York is rapidly approaching. It's next week (11.16.2009 - 11.20.2009). Jeremiah Grossman - CTO and founder of WhiteHat Security, and I will be giving a presentation at the Jacob Javits Convention Center on 11th ave on the November 18th at 1:30 PM ET. The title of our presentation is: Cover Your Assets: Real Time Application Security Assessment &#38; Protection In addition to the presentation, we'll also have a live application and database hacking demonstration. There are several other interesting security presentations next week. Some of them are: Five Common Mistakes in Securing Web Applications by Lars Ewe -...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.interop.com/newyork/event-highlights/theme-overview.php" >Interop</a> <a href="http://www.interop.com/newyork/event-highlights/theme-overview.php" >New York</a> is rapidly approaching.&#0160; It&#39;s next week (11.16.2009 - 11.20.2009).&#0160; Jeremiah Grossman - CTO and founder of WhiteHat Security, and I will be giving a presentation at the Jacob Javits Convention Center on 11th ave on the November 18th at 1:30 PM ET.&#0160; </p>
<p>The title of our presentation is:&#0160; <a href="http://www.interop.com/newyork/event-highlights/security.php" >Cover Your Assets:&#0160; Real Time Application Security Assessment &amp; Protection</a></p>
<p>In addition to the presentation, we&#39;ll also have a live application and database hacking demonstration.</p>
<p>There are several other interesting security presentations next week. Some of them are:</p>
<ul>
<li>Five Common Mistakes in Securing Web Applications by Lars Ewe - CTO of Cenzic; Lars and I recently did a <a href="http://www.imperva.com/resources/podcasts.asp?t=Lars%20Ewe&amp;d=">podcast together</a></li>
<li>Mining for Value in the Data Log Fire Hose: Top Five Governance, Risk and Compliance Metrics in Logs by Paul Stamp of RSA</li>
<li>Business Resiliency: Are You Really Prepared? by none other than John Pironti, Chief Information Risk Strategist, Archer Technologies; John and I have also <a href="http://www.imperva.com/resources/podcasts.asp?t=John%20P.%20Pironti&amp;d=">recorded a podcast</a></li>
</ul>
<p>Hope to see you there.</p>
<blockquote><blockquote>
<blockquote>
<blockquote>
<p ><a href="http://imperva.typepad.com/.a/6a01156f8c7ad8970c0120a69547ed970b-pi" ><img alt="Statue-of-liberty-picture" class="asset asset-image at-xid-6a01156f8c7ad8970c0120a69547ed970b " src="http://imperva.typepad.com/.a/6a01156f8c7ad8970c0120a69547ed970b-320wi"  /></a> </p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>

<p><a href="http://feedads.g.doubleclick.net/~a/2w1MNlEhVBO6plZV2hlta8PYFdg/0/da"><img src="http://feedads.g.doubleclick.net/~a/2w1MNlEhVBO6plZV2hlta8PYFdg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2w1MNlEhVBO6plZV2hlta8PYFdg/1/da"><img src="http://feedads.g.doubleclick.net/~a/2w1MNlEhVBO6plZV2hlta8PYFdg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/B-r7vk-mf4o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.imperva.com/2009/11/imperva-whitehat-security-copresent-at-interop-ny-.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.imperva.com/2009/11/imperva-whitehat-security-copresent-at-interop-ny-.html</feedburner:origLink></item>
		<item>
		<title>Patch Tuesday - November 2009</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/S1RUD-4xLkg/patch-tuesday---november-2009.html</link>
		<comments>http://blog.tenablesecurity.com/2009/11/patch-tuesday---november-2009.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:06:35 +0000</pubDate>
		<dc:creator>Paul Asadoorian</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[nessus]]></category>

		<category><![CDATA[Patch Auditing]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d8345495f669e201287596b86d970c</guid>
		<description><![CDATA[Another Tuesday, another round of security bulletins from Microsoft. Are you patched? Nessus contains credentialed local checks for all security bulletins, and a network-based uncredentialed check for MS09-064. Severity is a Matter of Perspective What struck me as interesting this...]]></description>
			<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Another Tuesday, another round of security bulletins from Microsoft. Are you patched? Nessus contains credentialed local checks for all security bulletins, and a network-based <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42443">uncredentialed check for MS09-064</a>.</p>
<h3>Severity is a Matter of Perspective</h3>
<p>What struck me as interesting this month are the severity ratings. Microsoft publishes these ratings as a guide to help customers evaluate the vulnerability risk. In many cases, they seem to be doing their customers a disservice. For example, a remotely exploitable vulnerability in Microsoft Word or Excel could be leveraged by attackers to compromise desktop systems. These types of vulnerabilities are frequently exploited by attackers and penetration testers alike to gain access to sensitive information. The advice I always give to organizations is to evaluate each vulnerability with respect to how it affects your business, not what has been published by the vendor.</p>
<p>In addition, if the evaluation of severity is coming from a vendor, it should adhere to some industry accepted standard calculation, such as the <a href="http://www.first.org/cvss/">CVSS score</a>. Nessus plugins use this scale (1-10, with 10 being the most severe) as a rating for the severity of the vulnerability. While Microsoft rates MS09-067 (a vulnerability in which arbitrary code can be executed as a result of opening an Excel file) as important, Nessus gives it a CVSS score of 9.3. Use these ratings as a guide to develop your patching strategy. For example, if you heavily use Excel, you will need to patch right away. If you do not use Excel, then it is not as critical to patch. You could employ a temporary solution for mitigation by blocking incoming Excel file attachments while you focus on vulnerabilities that pose a bigger risk.
</p>
<p></p>
<h3>Patch Tuesday Breakdown &#038; Thoughts</h3>
</p>
<p>What follows is a breakdown of the patches that have been released by Microsoft in the latest &#8220;Patch Tuesday&#8221; set and the associated Nessus plugins:</p>
<ul>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-063.mspx">MS09-063</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42437">Nessus Plugin ID 42437 (Credentialed Check)</a> - This is an interesting vulnerability in a networking protocol called Web Services on Devices API (WSDAPI). More information http://msdn.microsoft.com/en-us/library/aa385800(VS.85).aspx. Essentially it allows clients to find devices on the network. If you really want to dig deep into this protocol check out http://blogs.msdn.com/dandris/archive/2007/11/09/wsdapi-101-part-1-web-services-from-10-000-feet.aspx</li>
<p>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-064.mspx">MS09-064</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42438">Nessus Plugin ID 42438 (Credentialed Check)</a> &#038; <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42443"> Nessus Plugin ID 42443 (Uncredentialed Check)</a> - This patch only affects Windows 2000 Servers. If you are running this operating system, you need to upgrade. Now, that’s easy for me to say, but much harder to implement in your environment. If I look at the penetration tests I&#8217;ve done over the years there is almost always an older Windows NT and/or 2000 system laying around. Usually the excuses are &#8220;it’s a test system&#8221;, &#8220;it’s a lab system&#8221;, &#8220;we&#8217;re retiring that system&#8221;, or the worst case &#8220;it runs some mission critical software provided by a vendor that does not support the recent patches or upgrade to a new operating system&#8221;.</li>
</p>
<p>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-065.mspx">MS09-065</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42439">Nessus Plugin ID 42439 (Credentialed Check)</a> - A vulnerability that can be executed by rendering fonts! I would expect that there might be other attack vectors, such as in any program that can display text beyond something in the browser. Since this vulnerability is in the Windows kernel, other vectors such as documents, instant message programs and more could access the vulnerable functions.</li>
</p>
<p>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-066.mspx">MS09-066</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42440">Nessus Plugin ID 42440 (Credentialed Check)</a> - This vulnerability relates to a denial of service condition in LDAP running on Windows 2003/2008 servers. Typically the servers running this service provide the function of a domain controller, which is essential for authentication to occur in the Windows domain. The ability to cause a denial of service condition on these systems could lead to significant downtime and prove to be quite costly to an organization.</li>
</p>
<p>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-067.mspx">MS09-067</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42441">Nessus Plugin ID 42441 (Credentialed Check)</a> - A question for Microsoft: why is this vulnerability rated “important” and not “critical”? In case you haven&#8217;t heard, the way attackers are getting in is via phishing attacks and emailing end users. If you can slip something past the SPAM filter, email anti-virus software and desktop anti-virus software, it is a sure win. That may sound like a lot of &#8220;hurdle jumping&#8221;, but it is much easier than you may think. An attacker is relying on the fact that your organization needs to do business, and part of that process is exchanging documents via email. Thus, certain document types are allowed to pass, and differentiating between the ones that contain exploits and those that do not turns out to be pretty difficult.</li>
</p>
<p>
<li><a href="http://www.microsoft.com/technet/security/bulletin/ms09-068.mspx?pubDate=2009-11-10">MS09-068</a> - <a href="http://nessus.org/plugins/index.php?view=single&#038;id=42442">Nessus Plugin ID 42442 (Credentialed Check)</a> - Same scenario as above, but affects Word.</li>
</ul>
<h3>References</h3>
<p><a href="http://blog.tenablesecurity.com/2009/02/misleading-patch-audits-.html">Misleading Patch Audits</a>
</p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/NbwwMfnETL6TuULUS4Y0pGuHfkg/0/da"><img src="http://feedads.g.doubleclick.net/~a/NbwwMfnETL6TuULUS4Y0pGuHfkg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NbwwMfnETL6TuULUS4Y0pGuHfkg/1/da"><img src="http://feedads.g.doubleclick.net/~a/NbwwMfnETL6TuULUS4Y0pGuHfkg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/S1RUD-4xLkg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tenablesecurity.com/2009/11/patch-tuesday---november-2009.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tenablesecurity.com/2009/11/patch-tuesday---november-2009.html</feedburner:origLink></item>
		<item>
		<title>Friday News and Notes</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/rUsugYAfcDk/</link>
		<comments>http://www.digitalbond.com/index.php/2009/11/13/friday-news-and-notes-86/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:05:04 +0000</pubDate>
		<dc:creator>Dale Peterson</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.digitalbond.com/?p=4985</guid>
		<description><![CDATA[
NERC had a two day workshop on High Impact, Low Frequency events. These are events that are rarely seen but would have a big impact if they occurred and included cyber attacks on control systems. With all the talk about risk, it is this high / low dichotomy of two elements in the risk equation [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>NERC had <a href="http://www.nerc.com/news_pr.php?npr=451">a two day workshop</a> on High Impact, Low Frequency events. These are events that are rarely seen but would have a big impact if they occurred and included cyber attacks on control systems. With all the talk about risk, it is this high / low dichotomy of two elements in the risk equation that are causing so much difficulty in risk management. [hat tip: CIPUG]</li>
<li>Jim Pinto has an interesting column, <a href="http://www.automationworld.com/columns-6206?utm_source=TalkPoints&#038;utm_medium=newsletter">Whither ISA?</a>, over at AutomationWorld. <a href="http://www.digitalbond.com/index.php/2009/10/07/from-the-isa-expo-floor/">As we noted earlier</a>, this is the last year for their big ISA Expo show. Jim points out other dire signs. The impact to the control system security world? ISA 99 is a very active standards body and the ISCI, owned by ISA, is trying to create security certifications for control system products and systems. If ISA withers or dies completely those efforts will be displaced and perhaps for naught.</li>
<li>The 128-page <a href="http://www.us-cert.gov/control_systems/pdf/Strategy%20for%20Securing%20Control%20Systems.pdf">DHS Strategy for Securing Control Systems</a> is up on the US-CERT site. It deals with coordinating government efforts, at all levels, and the private sector. Must admit I&#8217;m only on page 3.</li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/8DJS5ZVxx4cA7Xa3L26PFVtdmaQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/8DJS5ZVxx4cA7Xa3L26PFVtdmaQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8DJS5ZVxx4cA7Xa3L26PFVtdmaQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/8DJS5ZVxx4cA7Xa3L26PFVtdmaQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/rUsugYAfcDk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digitalbond.com/index.php/2009/11/13/friday-news-and-notes-86/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.digitalbond.com/index.php/2009/11/13/friday-news-and-notes-86/</feedburner:origLink></item>
		<item>
		<title>Chaotic Thread</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/7ZzQdO0J-AE/chaotic_thread.html</link>
		<comments>http://www.emergentchaos.com/archives/2009/11/chaotic_thread.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:56:24 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:feeds.feedburner.com://41fffbf59e68dea8c4bd916e8c9c577e</guid>
		<description><![CDATA[What's on your mind?]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s on your mind?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/A2fVxzqDN5vG0o3DyfgHu0NF8eM/0/da"><img src="http://feedads.g.doubleclick.net/~a/A2fVxzqDN5vG0o3DyfgHu0NF8eM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/A2fVxzqDN5vG0o3DyfgHu0NF8eM/1/da"><img src="http://feedads.g.doubleclick.net/~a/A2fVxzqDN5vG0o3DyfgHu0NF8eM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/7ZzQdO0J-AE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.emergentchaos.com/archives/2009/11/chaotic_thread.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.emergentchaos.com/archives/2009/11/chaotic_thread.html</feedburner:origLink></item>
		<item>
		<title>Words to the Wise</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/fbZZ_BomaH0/</link>
		<comments>http://feedproxy.google.com/~r/Cybersec/~3/1hkVHSIONQE/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:34:45 +0000</pubDate>
		<dc:creator>scott</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cybersec.eu/?p=262</guid>
		<description><![CDATA[Recently Dave from the DailyDave security mailing list said something very insightful that I wanted to re-post here:
When you go into security consulting engagements with a new business
unit you usually face a few questions from the developers and business
owners. &#8220;What is it exactly that you&#8217;re going to tell us?&#8221;
We always answer this the same way: [...]]]></description>
			<content:encoded><![CDATA[<p>Recently Dave from the <a href="http://lists.immunitysec.com/mailman/listinfo/dailydave">DailyDave security mailing list</a> said something very insightful that I wanted to re-post here:</p>
<blockquote><p>When you go into security consulting engagements with a new business<br />
unit you usually face a few questions from the developers and business<br />
owners. &#8220;What is it exactly that you&#8217;re going to tell us?&#8221;</p>
<p>We always answer this the same way: &#8220;Things that will surprise you.&#8221;</p>
<p>Most developers have read a lot about security these days &#8211; they<br />
understand SQL Injection, Cross Site Scripting, access control, not to<br />
use their own cryptographics, and all sorts of other security truisms.</p>
<p>What they can&#8217;t possibly understand is how a hacker&#8217;s mind works, and<br />
what they&#8217;re likely to find. Even security specialists who have only<br />
worked defence often have never really seen a hacker go.</p>
<p>Largely I think this is because there&#8217;s a difference between someone<br />
playing cards with chips and someone with their house and life on the<br />
line. People say penetration testing is a model of an attacker. But how<br />
do you model obsession?</p>
<p>- -dave</p>
</blockquote>
<p>I totally agree.  We can use the same tools, adopt the same techniques, but the mind of an intruder may be so completely alien to any defender that the yawning gulf of difference in mindsets that separates us prevents comprehension and hinders our efforts to combat them.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/1cXBvmPKyGD8xnkX210NlBzkhTk/0/da"><img src="http://feedads.g.doubleclick.net/~a/1cXBvmPKyGD8xnkX210NlBzkhTk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1cXBvmPKyGD8xnkX210NlBzkhTk/1/da"><img src="http://feedads.g.doubleclick.net/~a/1cXBvmPKyGD8xnkX210NlBzkhTk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/fbZZ_BomaH0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Cybersec/~3/1hkVHSIONQE/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/Cybersec/~3/1hkVHSIONQE/</feedburner:origLink></item>
		<item>
		<title>Really expensive encryption</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/18kq8wDHwWI/really-expensive-encryption.html</link>
		<comments>http://feedproxy.google.com/~r/voltage/VDQg/~3/c0N9sY5OwcY/really-expensive-encryption.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:00:00 +0000</pubDate>
		<dc:creator>Luther Martin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[crypto]]></category>

		<category><![CDATA[Encryption]]></category>

		<category><![CDATA[information security]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00e55375ef1c88330120a67e12c3970c</guid>
		<description><![CDATA[According to the recent trust catalyst (their use of capitalization, not mine) 2009 Encryption and Key Management Industry Benchmark Report, 10 percent of people think that the reason that more people don't encrypt backup tapes is that encrypting tapes costs...]]></description>
			<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>According to the recent trust catalyst (their use of capitalization, not mine) <em>2009 Encryption and Key Management Industry Benchmark Report</em>, 10 percent of people think that the reason that more people don&#8217;t encrypt backup tapes is that encrypting tapes costs more than a data breach so that encrypting backup tapes isn&#8217;t cost-effective. </p>
<p>What I learned from reading that is that 10 precent of people will pretty much believe anything. </p>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?i=c0N9sY5OwcY:zGvGVy187hA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?i=c0N9sY5OwcY:zGvGVy187hA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/voltage/VDQg?a=c0N9sY5OwcY:zGvGVy187hA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/voltage/VDQg?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/voltage/VDQg/~4/c0N9sY5OwcY" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/s7V3SjVMXoZOVGcOtpNqkWavCkU/0/da"><img src="http://feedads.g.doubleclick.net/~a/s7V3SjVMXoZOVGcOtpNqkWavCkU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/s7V3SjVMXoZOVGcOtpNqkWavCkU/1/da"><img src="http://feedads.g.doubleclick.net/~a/s7V3SjVMXoZOVGcOtpNqkWavCkU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/18kq8wDHwWI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/voltage/VDQg/~3/c0N9sY5OwcY/really-expensive-encryption.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/voltage/VDQg/~3/c0N9sY5OwcY/really-expensive-encryption.html</feedburner:origLink></item>
		<item>
		<title>Fighting malicious web sites through domain registration</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/0tftKrSqwyE/fighting-malicious-web-sites-through.html</link>
		<comments>http://feedproxy.google.com/~r/SunbeltBlog/~3/fiG_nDEfSrA/fighting-malicious-web-sites-through.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:30:00 +0000</pubDate>
		<dc:creator>Tom Kelchner</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-10854312.post-1518835374706875420</guid>
		<description><![CDATA[Computer security blogger Dave Piscitello of Hilton Head Island, S.C. (“The Security Skeptic”) ran an interesting piece: “Nine ways to mitigate malicious domains.” It’s a list of proposals that ICANN has collected from the security community ...]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/10854312-1518835374706875420?l=sunbeltblog.blogspot.com and new=http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-1518835374706875420?l=sunbeltblog.blogspot.com --><p>Computer security blogger Dave Piscitello of Hilton Head Island, S.C. (“The Security Skeptic”) ran an interesting piece: “Nine ways to mitigate malicious domains.” It’s a list of proposals that ICANN has collected from the security community that it will consider for new rules for top level domain applicants. It&#8217;s an effort to help prevent the establishment of malicious web sites.</p>
<p>ICANN is taking public comments at: <a href="http://www.icann.org/en/public-comment/">http://www.icann.org/en/public-comment/ </a></p>
<p>Dave said the suggestions under consideration are:</p>
<p>&#8211; Vetting registry operators to filter out criminal organizations. (Recommended by the Anti-Phishing Working Group and others.)</p>
<p>&#8211; Demonstrated plan for the deployment of Domain Name System Security Extensions. This would require written plans for signing zone files and delegations (domain names registered in its top level domain.).</p>
<p>&#8211; Prohibition of redirection by top level domains. (ICANN’s SSAC, the ICANN Board of Directors) “…applicants must return negative responses when a DNS query is made to a non-existent domain and must not synthesize (redirect) queries for error resolution or advertising purposes.”</p>
<p>&#8211; Removal of orphan glue records. “Orphaned glue records frequently point to name servers that host malicious domains. This measure requires applicants to explain the policy they will enforce to ensure that a name server record in a delegation will not persist in the TLD zone file when the parent domain name is deleted from the zone.”</p>
<p>&#8211; A requirement for detailed Whois records.</p>
<p>&#8211; Centralization of zone file access. Presently, applications must contract with top level domain registries to get FTP access to zone files.</p>
<p>&#8211; Documented registry level abuse contacts and procedures.</p>
<p>&#8211; Participation in the Expedited Registry Security Request process to help ICANN and registries to maintain security during an incident.</p>
<p>&#8211; Establishment of High Security Zones Verification.</p>
<p>See Dave’s blog piece <a href="http://securityskeptic.typepad.com/the-security-skeptic/2009/10/nine-ways-to-mitigate-malicious-domains.html">here. </a></p>
<p>Thanks Dave</p>
<p>Tom Kelchner
<div class="blogger-post-footer"><img width='1' height='1' src='http://sunbeltblog.blogspot.com/https://blogger.googleusercontent.com/tracker/10854312-1518835374706875420?l=sunbeltblog.blogspot.com'/></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=fiG_nDEfSrA:7fjIv0219kQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=fiG_nDEfSrA:7fjIv0219kQ:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=fiG_nDEfSrA:7fjIv0219kQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SunbeltBlog?a=fiG_nDEfSrA:7fjIv0219kQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SunbeltBlog?i=fiG_nDEfSrA:7fjIv0219kQ:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/wzHWqhfbCUjPtSTaQWq6u1hVSYk/0/da"><img src="http://feedads.g.doubleclick.net/~a/wzHWqhfbCUjPtSTaQWq6u1hVSYk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wzHWqhfbCUjPtSTaQWq6u1hVSYk/1/da"><img src="http://feedads.g.doubleclick.net/~a/wzHWqhfbCUjPtSTaQWq6u1hVSYk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/0tftKrSqwyE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/SunbeltBlog/~3/fiG_nDEfSrA/fighting-malicious-web-sites-through.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/SunbeltBlog/~3/fiG_nDEfSrA/fighting-malicious-web-sites-through.html</feedburner:origLink></item>
		<item>
		<title>Signs of the coming IPv4 apocalypse</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/aBM3xKtBQGc/signs-of-the-coming-ipv4-apocalypse.html</link>
		<comments>http://feedproxy.google.com/~r/DevelopingSecurity/~3/wdhFBJ0fYxs/signs-of-the-coming-ipv4-apocalypse.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:13:13 +0000</pubDate>
		<dc:creator>justin_foster</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[ipv6]]></category>

		<category><![CDATA[network security]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a011279135bcf28a40120a694c879970b</guid>
		<description><![CDATA[We all know that IPv4 is getting long in the tooth and that its younger, smarter brother IPv6 has been waiting in the wings for far too long now. Might we finally be seeing the signs of the end days for IPv4? Wait. I know, you have heard this before. Yes, there has been a lot of crying wolf this decade but there are strong signs that it has finally left the realm of fiction. When you look at something like the ANT Census of the Internet Address Space, the empty IPv4 space appears to be vast, but that's only...]]></description>
			<content:encoded><![CDATA[<p><a  align="right" href="http://www.developingsecurity.com/.a/6a011279135bcf28a40120a694dc0b970b-pi"><img align="right" class="asset asset-image at-xid-6a011279135bcf28a40120a694dc0b970b "  alt="Ipv4" src="http://www.developingsecurity.com/.a/6a011279135bcf28a40120a694dc0b970b-400wi"></img></a> We all know that IPv4 is getting long in the tooth and that its younger, smarter brother IPv6 has been waiting in the wings for far too long now. Might we finally be seeing the signs of the end days for IPv4?</p>
<p>Wait. I know, you have heard this before. Yes, there has been a lot of crying wolf this decade but there are strong signs that it has finally left the realm of fiction.</p>
<p>When you look at something like the <a href="http://www.isi.edu/ant/address/">ANT Census of the Internet Address Space</a>, the empty IPv4 space appears to be vast, but that&#8217;s only based on an ICMP scan. Some IPs have firewalls in place to only allow access to certain sources. Others have ICMP blocked, and in the case of ISPs some entire ranges will only be intermittently active. No one really knows how much of the address space is really in use.</p>
<p>What they do know is that the amount of new blocks to allocate is running dangerously low. The reports vary anywhere between <a href="http://www.telegraph.co.uk/technology/news/6488193/Web-could-run-out-of-addresses-next-year-warn-web-experts.html">one</a> and <a href="http://www.eweekeurope.co.uk/interview/industry-must-tackle-ipv4-depletion-2364">three</a> years. </p>
<p>After that, what will we have? IPs For Sale. Yes, party to party selling of IP address spaces without control by the IANA or any other group. Can you say seller&#8217;s market?</p>
<p>But there is a problem with trading, beyond the obvious price gouging to come. Many available address spaces have become Internet Ghost-towns, IPs made toxic by previous malicious activity that has earned them a spot on blacklists. A fellow Trender was recently quoted in <a href="http://voices.washingtonpost.com/securityfix/2009/11/a_year_later_a_look_back_at_mc.html">The Washington Post</a>:</p>
<blockquote><p>&quot;The problem is once an address block gets so polluted and absorbed into all these blocklists, it&#8217;s difficult to get off all of them because there is no central blocking authority,&quot; said Paul Ferguson, an advanced threat researcher at Trend Micro. &quot;That space won&#8217;t be toxic for all time to come, but certainly it is going to be tainted for whoever ends up with it&#8230;&quot;</p></blockquote>
<p>Lovely, just what I wanted for Christmas, a tainted IP.</p>
<p>So is this it? I for one hope so. IPv6 bring it on, then we can worry about this again sometime after Y10K.</p>
<p><img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/DevelopingSecurity/~4/wdhFBJ0fYxs" height="1" width="1"></img></p>

<p><a href="http://feedads.g.doubleclick.net/~a/NDuXSeoZH-SfrdiEZjPaVzEdrVA/0/da"><img src="http://feedads.g.doubleclick.net/~a/NDuXSeoZH-SfrdiEZjPaVzEdrVA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NDuXSeoZH-SfrdiEZjPaVzEdrVA/1/da"><img src="http://feedads.g.doubleclick.net/~a/NDuXSeoZH-SfrdiEZjPaVzEdrVA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/aBM3xKtBQGc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/DevelopingSecurity/~3/wdhFBJ0fYxs/signs-of-the-coming-ipv4-apocalypse.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/DevelopingSecurity/~3/wdhFBJ0fYxs/signs-of-the-coming-ipv4-apocalypse.html</feedburner:origLink></item>
		<item>
		<title>Top 3 NoVA Infosec Blog Posts of the Week</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/tVDFwkLAIkA/</link>
		<comments>http://feedproxy.google.com/~r/novainfosecportalblog/~3/3XqijTBV4M8/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:00:45 +0000</pubDate>
		<dc:creator>nathiet</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[dc]]></category>

		<category><![CDATA[Infosec Blogs/Podcasts]]></category>

		<category><![CDATA[infosec-blogs]]></category>

		<category><![CDATA[local-security-bloggers]]></category>

		<category><![CDATA[md]]></category>

		<category><![CDATA[nova]]></category>

		<category><![CDATA[Security Bloggers]]></category>

		<guid isPermaLink="false">http://www.novainfosecportal.com/2009/11/13/2710/</guid>
		<description><![CDATA[It’s that time of the week again: The time where we take a look at what local security bloggers have been up to.
If you can’t get enough of the local security scene,  check out our NovaInfosec Twits list for even more great security blogs and people to follow on Twitter. Also be sure to [...]]]></description>
			<content:encoded><![CDATA[<p>It’s that time of the week again: The time where we take a look at what local s<a href="http://www.novainfosecportal.com/resources/infosec-blogs-podcasts/" >ecurity bloggers</a> have been up to.</p>
<p>If you can’t get enough of the local security scene,  check out our<span><a href="http://www.novainfosecportal.com/resources/nova-email-lists-networking/novainfosec-twits/" > NovaInfosec Twits list</a> for </span><span>even more great security blogs and </span><span>people to follow on Twitter. Also be sure to follow us on Twitter <a href="http://twitter.com/grecs">@grecs</a> if you want to know more about what’s going on in the local security community during the week.</span></p>
<p><span>And without further ado &#8230; here are the top picks for this week.<br />
</span></p>
<p><span><strong>#3 – </strong></span><strong>China proves to be an aggressive foe in cyberspace</strong><span>: An informative post about </span>China&#8217;s cyber espionage and cyber warfare capabilities. Read it<a href="http://ow.ly/BKpR" > here</a></p>
<p><span><strong>#2 – </strong></span><strong>DojoCon 2009 Presentation</strong><span>: The </span>dojocon has come and gone, if you would like to catch a presentation by one of the speakers at the dojocon, you can see rybolov&#8217;s dojocon presentation <a href="http://www.guerilla-ciso.com/archives/1409" >here!!</a><span> </span></p>
<p><strong>#1 – Notes from Talk by Michael Hayden</strong>: Richard Bejtlich summarizes NetWitness’s user conference with Michael Hayden. Read Richard Bejtlich post <a href="http://ow.ly/BKd8" >here</a> to see what a former CIA director and previously NSA director had to say about cyber intelligence.<em></em></p>
<p>Well, that’s all this week. Be sure to check back next week for more great blog posts from local security bloggers.</p>
<p><img src="http://feeds.feedburner.com/~r/novainfosecportalblog/~4/3XqijTBV4M8" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/O88qeiCxpNMsyPkHPssLv5Z1jto/0/da"><img src="http://feedads.g.doubleclick.net/~a/O88qeiCxpNMsyPkHPssLv5Z1jto/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O88qeiCxpNMsyPkHPssLv5Z1jto/1/da"><img src="http://feedads.g.doubleclick.net/~a/O88qeiCxpNMsyPkHPssLv5Z1jto/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/tVDFwkLAIkA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/novainfosecportalblog/~3/3XqijTBV4M8/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/novainfosecportalblog/~3/3XqijTBV4M8/</feedburner:origLink></item>
		<item>
		<title>Win7 remote DoS publicly disclosed</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/IliZ3Z6X7Z4/</link>
		<comments>http://blog.fortinet.com/win7-remote-dos-publicly-disclosed/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:53:10 +0000</pubDate>
		<dc:creator>DMaciejak</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[laurent gaffie]]></category>

		<category><![CDATA[Research]]></category>

		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.fortinet.com/?p=722</guid>
		<description><![CDATA[Laurent Gaffié disclosed on Nov. 11 on his blog a proof of concept written in Python. This occured just the morrow after the Black Tuesday, and seems the author does not follow responsible disclosure, and decided to publicly disclosed the code, as he disagreed with Microsoft&#8217;s answer (they wanted to delay the patch in a [...]]]></description>
			<content:encoded><![CDATA[<p>Laurent Gaffié disclosed on Nov. 11 on <a id="misk" title="his blog" href="http://g-laurent.blogspot.com/2009/11/windows-7-server-2008r2-remote-kernel.html">his blog</a> a proof of concept written in Python. This occured just the morrow after the Black Tuesday, and seems the author does not follow responsible disclosure, and decided to publicly disclosed the code, as he disagreed with Microsoft&#8217;s answer (they wanted to delay the patch in a service pack rather than a Black Tuesday patch).</p>
<p>This piece of code (see Figure 1) has been verified to successfully remotely crash Microsoft Windows 7 and Windows 2008-R2. It is caused by sending a specially crafted NetBIOS header wrongly specifying the SMB (Server Message Block) packet size. No error messages dialog box nor evidence of the bug is recorded in the event logs, the computer just freezes.</p>
<p><img class="alignnone size-full wp-image-721" title="win7code" src="http://blog.fortinet.com/wp-content/uploads/2009/11/win7code.jpg" alt="win7code" /><em><br />
Figure 1: code extract</em><br />
Moreover, the issue occurs in pre-authentication stage so no credential is needed.</p>
<p>To trigger this issue, the victim must be trapped to open a Windows share, so just a link of type <em>file://ip/something</em> on an HTML page could do the trick. As of writing, no CVE number has been associated to this issue, however thanks to our IPS decoder signature, Fortinet customers are proactively protected with ¨<a id="g:as" title="NBSS.Invalid.Fragment" href="http://www.fortinet.com/ids/AID110034945">NBSS.Invalid.Fragment</a>¨ detection.</p>
<p> <img src="http://blog.fortinet.com/wp-content/plugins/feed-statistics.php?view=1&#038;post_id=722" width="1" height="1"  /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/B6AUhNI_dcF7RTpagpzQmuKYzOE/0/da"><img src="http://feedads.g.doubleclick.net/~a/B6AUhNI_dcF7RTpagpzQmuKYzOE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/B6AUhNI_dcF7RTpagpzQmuKYzOE/1/da"><img src="http://feedads.g.doubleclick.net/~a/B6AUhNI_dcF7RTpagpzQmuKYzOE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/IliZ3Z6X7Z4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.fortinet.com/win7-remote-dos-publicly-disclosed/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.fortinet.com/win7-remote-dos-publicly-disclosed/</feedburner:origLink></item>
		<item>
		<title>Security Briefing – November 13th</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/_jbFDNZxMzM/</link>
		<comments>http://feedproxy.google.com/~r/Liquidmatrix/~3/TUoKSz43e9A/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:19:26 +0000</pubDate>
		<dc:creator>The Intern</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.liquidmatrix.org/blog/?p=7669</guid>
		<description><![CDATA[
G&#8217;morning, long time no see.
How&#8217;ve you been? You look great, lost a few pounds I see. Great to run into you &#8211; let&#8217;s grab a beer soon!
All the Best, 
The Intern
Click here to subscribe to Liquidmatrix Security Digest!.
And now, the news&#8230;


How Google Voice Violates Google&#8217;s Own Privacy Policy &#8211; Tech Crunch 

Masking vs. Truncating &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p ><img class="aligncenter" src="http://www.liquidmatrix.org/blog/wp-content/uploads/2007/09/newspapera.jpg" alt="newspapera.jpg" width="361" height="270" /></p>
<p>G&#8217;morning, long time no see.</p>
<p>How&#8217;ve you been? You look great, lost a few pounds I see. Great to run into you &#8211; let&#8217;s grab a beer soon!</p>
<p>All the Best, </p>
<p>The Intern</p>
<p>Click here to <a href="http://feeds.feedburner.com/Liquidmatrix">subscribe to Liquidmatrix Security Digest!</a>.</p>
<p>And now, the news&#8230;</p>
<ol>
<li>
<a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/11/13/AR2009111300874.html?wpisrc=newsletter">How Google Voice Violates Google&#8217;s Own Privacy Policy</a> &#8211; Tech Crunch </li>
<li>
<a href="http://www.mckeay.net/2009/11/12/masking-vs-truncating/">Masking vs. Truncating</a> &#8211; Network Security Blog </li>
<li>
<a href="http://www.h-online.com/security/news/item/Community-criticises-security-firm-s-vulnerability-report-856985.html">Community criticises security firm&#8217;s vulnerability report</a> &#8211; Heise </li>
<li>
<a href="http://lastwatchdog.com/secure-socket-layer-ssl-vulnerable-man-in-the-middle/">Secure Sockets Layer (SSL) vulnerable to man-in-the-middle hacks</a> &#8211; Last Watchdog </li>
<li>
<a href="http://www.andyitguy.com/blog/?p=824">The Problem with Browser Security </a> &#8211; Andy, IT Guy </li>
<li>
<a href="http://www.pcworld.com/businesscenter/article/182127/spam_campaign_targets_payment_transfer_system.html">Spam Campaign Targets Payment Transfer System</a> &#8211; PC World </li>
<li>
<a href="http://www.telegraph.co.uk/news/uknews/crime/6555468/Suspicious-wife-posed-as-schoolgirl-to-trap-paedophile-husband-court-hears.html">Suspicious wife posed as schoolgirl to trap paedophile husband, court hears</a> &#8211; Telegraph </li>
<li>
<a href="http://www.h-online.com/security/news/item/New-Microsoft-patent-may-put-Linux-security-components-at-risk-857848.html">New Microsoft patent may put Linux security components at risk</a> &#8211; Heise </li>
<li>
<a href="http://news.cnet.com/8301-30966_3-10396865-262.html?tag=mncol">A CNET Conversation with Eric Schmidt</a> &#8211; C|NET </li>
<li>
<a href="http://voices.washingtonpost.com/securityfix/2009/11/in_the_past_few_weeks.html?wprss=securityfix">Nastygram: Beware the NACHA gotcha</a> &#8211; Security Fix </li>
<li>
<a href="http://www.theregister.co.uk/2009/11/13/parcel_mule_scam/">Sophisticated parcel mule scam unpicked</a> &#8211; The Register </li>
</ol>
<p> Tags: <a href="http://technorati.com/tag/News" rel="tag">News</a>, <a href="http://technorati.com/tag/Daily+Links" rel="tag"> Daily Links</a>, <a href="http://technorati.com/tag/Security+Blog" rel="tag"> Security Blog</a>, <a href="http://technorati.com/tag/Information+Security" rel="tag"> Information Security</a>, <a href="http://technorati.com/tag/Security+News" rel="tag"> Security News</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/PDYZ_D0GuX7hxFuWTGmSVfQ1NGc/0/da"><img src="http://feedads.g.doubleclick.net/~a/PDYZ_D0GuX7hxFuWTGmSVfQ1NGc/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/PDYZ_D0GuX7hxFuWTGmSVfQ1NGc/1/da"><img src="http://feedads.g.doubleclick.net/~a/PDYZ_D0GuX7hxFuWTGmSVfQ1NGc/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:j9gXZds__18"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?d=j9gXZds__18" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?i=TUoKSz43e9A:s10ZJS9BqoY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?i=TUoKSz43e9A:s10ZJS9BqoY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?i=TUoKSz43e9A:s10ZJS9BqoY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?i=TUoKSz43e9A:s10ZJS9BqoY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Liquidmatrix?a=TUoKSz43e9A:s10ZJS9BqoY:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/Liquidmatrix?d=cGdyc7Q-1BI" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/Liquidmatrix/~4/TUoKSz43e9A" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/UfmeiILYnUFudoZ-QHcugDAMyKA/0/da"><img src="http://feedads.g.doubleclick.net/~a/UfmeiILYnUFudoZ-QHcugDAMyKA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/UfmeiILYnUFudoZ-QHcugDAMyKA/1/da"><img src="http://feedads.g.doubleclick.net/~a/UfmeiILYnUFudoZ-QHcugDAMyKA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/_jbFDNZxMzM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Liquidmatrix/~3/TUoKSz43e9A/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/Liquidmatrix/~3/TUoKSz43e9A/</feedburner:origLink></item>
		<item>
		<title>FUDSec FUD Piece Reposted – With Comments</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/e9hRhHO48rY/fudsec-fud-piece-reposted-with-comments.html</link>
		<comments>http://feedproxy.google.com/~r/AntonChuvakinPersonalBlog/~3/lD_yiFR6B9U/fudsec-fud-piece-reposted-with-comments.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:55:00 +0000</pubDate>
		<dc:creator>Dr Anton Chuvakin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-19553129.post-3229593986327990798</guid>
		<description><![CDATA[My fudsec post (reposted below for backup purposes with a two week delay) was not “an endorsement” of FUD, it was a reminder to many overly excited folks that FUD is largely all we have today – and there are signs that change just ain’t coming....]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/19553129-3229593986327990798?l=chuvakin.blogspot.com and new=http://chuvakin.blogspot.com/https://blogger.googleusercontent.com/tracker/19553129-3229593986327990798?l=chuvakin.blogspot.com --><p>My <a href="http://fudsec.com/a-treatise-on-fud">fudsec post</a> (reposted below for backup purposes with a two week delay) was not “an endorsement” of FUD, it was a reminder to many overly excited folks that FUD is largely all we have today – and there are signs that change just ain’t coming.&#160; As I hinted in&#160; <a href="http://chuvakin.blogspot.com/2009/10/smelly-goat-vs-flying-unicorn.html">my quick follow-up</a> (“<a href="http://chuvakin.blogspot.com/2009/10/smelly-goat-vs-flying-unicorn.html">Smelly Goat vs Flying Unicorn</a>”), I am not defending Fear/Uncertainty/Doubt for the merits, I am explaining that we are largely stuck with it, for now. Another way to explain is to quite Churchill, as I do <a href="http://fudsec.com/a-treatise-on-fud">in the comments</a>. Those who know me can confirm that I am a huge proponent of metrics (but also highly skeptical of some metrics ever being achievable).</p>
<p>Here are some of the insightful responses to it:</p>
<ul>
<li><a href="http://newschoolsecurity.com/2009/10/just-say-no-to-fud/">Just say ‘no’ to FUD</a> from New School of Security (personally, I think that “trumping with ethics” is a low card in intellectual arguments! IMHO it is one step above name calling)</li>
<li><a href="http://newschoolsecurity.com/2009/11/on-smelly-goats-unicorns-and-fud/">On smelly goats, unicorns, and FUD</a> from New School of Security.</li>
</ul>
<p><font size="4">&#160;</font><strong><font size="4">A Treatise on FUD</font> </strong></p>
<p>FUD or Fear/Uncertainty/Doubt triad seems better known than the other security triad: C-I-A. It seems inextricably linked with security industry as well as with security technologies. After all, don’t we reach for some extra safety and security if we fear something, feel uncertain about something or doubt something? </p>
<p>While few CSOs and security leaders admit that they build their security programs based on FUD, below we will hypothesize that FUD is indeed a meta-level above risks, threats, vulnerabilities as well as compliance mandates. <strong>FUD’s role in security today probably overshadows the role of any other factor we know</strong>. To put more substance into our discussion, here are some well-known examples where fear, uncertainty and doubt manifest themselves:</p>
<p>· Fear </p>
<ul>
<li>Getting compromised by attackers </li>
<li>Failing an audit </li>
<li>Suffering big loss </li>
<li>All of the above: Failing an audit + getting hacked + being dragged into a media circus </li>
</ul>
<p>· Uncertainty</p>
<ul>
<li>Keeping a security leadership job </li>
<li>“Keeping the wheels on” for security infrastructure </li>
<li>In case of an incident, loss amount is uncertain </li>
<li>Threats and their impact </li>
</ul>
<p>· Doubt</p>
<ul>
<li>Security mission success </li>
<li>Effectiveness of security measures </li>
<li>Support of senior management </li>
</ul>
<p>Further, many people view using FUD for driving security spending and security technology deployments as the very opposite of sensible risk management. <strong>However</strong>, <strong>FUD is risk management at its best: FUD approach is simply risk management where risks are unknown and unproven but seem large at first glance, information is scarce, decisions uncertain and stakes are high. In other words, just like with any other risk management approach today!</strong> Big Hairy Ass Risks (BHARs) dominate both the FUD-infested security vendor materials as well as internal CSO presentations. Note that very few of the BHARs are truly imminent and thus fall out of FUD realm as there is no uncertainty about them - just like only few people develop phobias of poisonous snakes (which would be a very useful phobia to have).</p>
<p>In light of this, <strong>we have to accept that there are benefits of FUD – as well as risks.</strong></p>
<p>The benefits of FUD stem from the above view of security which is defined as “being free from danger” or ”measures taken as a precaution” against something bad.</p>
<p>First, in the world we live in, FUD works! Demonstration of a BHAR followed by technology purchase or control implementation does reduce possible loss of not only due to said BHAR, but also due to other threats (if BHAR ends up being completely mythical). Such implementations often also deliver other useful things for the organization. It is worthwhile to remind that “FUD selling” applies to CISOs no less than to “enterprise software” sales people. It also applies to “fear of auditors” as well as “fear of attackers” – both drive security adoption, even if lately the former seems to be winning.</p>
<p>Second, keep in mind that many of the BHARs are both genuinely scary and, in fact, likely. Scaring a company into updating its anti-malware tools (despite all the concerns about their relative efficiency) or into deploying tools to collect and analyze logs is excusable, at the very least.</p>
<p>Third, many proclaim that people need to be naturally drawn towards doing &quot;the right thing&quot; after being educated about what the right thing might be and scaring people into action is not that efficient. The technical answer to such concern is a resounding “Ha-har-ha!!!”</p>
<p>Finally, for years FUD was used to sell insurance as well as safety features in cars and other products, legal services, to make people update their boring DR and BC plans, and other good things. <strong>Fear might not be a very positive emotion to experience, but acting out of fear has led to things that are an overall positive, all the way down to resolving political tensions out of fear of a nuclear war…</strong></p>
<p>Admittedly, Fear/Uncertainty/Doubt approach has issues as well. The key issue with FUD is its “blunt weapon” nature. It is a sledgehammer, not a sword! If you use FUD to “power through” issues, you might end up purchasing or deploying things that you need and things that you don’t. </p>
<p>Second, it is well-known that magic of FUD wanes if you invoke it too often. If you scare your customers or your management into taking your product or your security agenda seriously, they are almost guaranteed to stop listening to you at some point. However, if enough BHARs manifest , FUD approach will continue to be fairly productive. One can get desensitized upon hearing that &quot;sky is falling&quot; too often, but here is the thing: I am willing to take the risk of such &quot;desensitization&quot; given that sky is indeed &quot;not quite stable.&quot;</p>
<p>Third, FUD power – as any other power – corrupts whoever wields it too often. If you end up scaring people into action or spreading uncertainty, you might well lose an ability to win security arguments any other way. Also, if fear is a motivation for every decision you make, checking into a mental institution is not a bad idea. You might actually be paranoid!</p>
<p>Finally, I’d like to bring up the good old “greed vs fear” model for advancing security, last <a href="http://chuvakin.blogspot.com/2009/08/blackhat-2009-day-2-bruce.html">mentioned at BlackHat</a> by one of the speakers. As “greed-based” ROI scams fail to move security ahead, the role of fear has nowhere to go but up. <strong>In other words, all of us get to pick out favorite 3 letter abbreviation – and I’d take honest FUD over insidious ROI any day…</strong></p>
<p><strong>To conclude, fighting FUD is a noble pursuit</strong>; Don Quixote thought the same about fighting windmills. Even if objective metrics will ever replace FUD as the key driver for security, we have a bit of time to prepare now. After all, in that remote future age interstellar travel, human cloning, teleportation and artificial intelligence will make the life of a security practitioner that much more complicated…</p>
<p><a href="http://fudsec.com/a-treatise-on-fud">Original post.</a></p>
<div class="blogger-post-footer">About me: http://www.chuvakin.org<img width='1' height='1' src='http://chuvakin.blogspot.com/https://blogger.googleusercontent.com/tracker/19553129-3229593986327990798?l=chuvakin.blogspot.com'/></div>
<p><a href="http://feedads.g.doubleclick.net/~a/1uaWzxe-sgLhe9dyeV0Jc3SaC_A/0/da"><img src="http://feedads.g.doubleclick.net/~a/1uaWzxe-sgLhe9dyeV0Jc3SaC_A/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/1uaWzxe-sgLhe9dyeV0Jc3SaC_A/1/da"><img src="http://feedads.g.doubleclick.net/~a/1uaWzxe-sgLhe9dyeV0Jc3SaC_A/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=lD_yiFR6B9U:zidvL1xd73E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=lD_yiFR6B9U:zidvL1xd73E:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=lD_yiFR6B9U:zidvL1xd73E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/AntonChuvakinPersonalBlog/~4/lD_yiFR6B9U" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Klv0cEgn9DNg5gGJsx9cXciZ5-E/0/da"><img src="http://feedads.g.doubleclick.net/~a/Klv0cEgn9DNg5gGJsx9cXciZ5-E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Klv0cEgn9DNg5gGJsx9cXciZ5-E/1/da"><img src="http://feedads.g.doubleclick.net/~a/Klv0cEgn9DNg5gGJsx9cXciZ5-E/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/e9hRhHO48rY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AntonChuvakinPersonalBlog/~3/lD_yiFR6B9U/fudsec-fud-piece-reposted-with-comments.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/AntonChuvakinPersonalBlog/~3/lD_yiFR6B9U/fudsec-fud-piece-reposted-with-comments.html</feedburner:origLink></item>
		<item>
		<title>It really is a world wide web</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/2YX-qk-jsjQ/it-really-is-a-world-wide-web.html</link>
		<comments>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/0KBnJwdWfdI/it-really-is-a-world-wide-web.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:42:19 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[General Background]]></category>

		<category><![CDATA[Weblogs]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d83451e4d369e20128759654d3970c</guid>
		<description><![CDATA[I was on my Google Feedburner page today updating my settings to go to my hotmail address (that is the subject for another blog, moving your email address at all of the accounts you have) when I came across what...]]></description>
			<content:encoded><![CDATA[<div class="wlWriterHeaderFooter" ><script type="text/javascript">digg_url = "http://www.ashimmy.com/2009/11/it-really-is-a-world-wide-web.html";digg_title = "It really is a world wide web";digg_bgcolor = "#FFFFFF";digg_skin = "normal";</script><script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script><script type="text/javascript">digg_url = undefined;digg_title = undefined;digg_bgcolor = undefined;digg_skin = undefined;</script></div>
<p><a href="http://www.stillsecureafteralltheseyears.com/.a/6a00d83451e4d369e20128759654cc970c-pi"><img  title="blog distribution" border="0" alt="blog distribution" align="left" src="http://www.stillsecureafteralltheseyears.com/.a/6a00d83451e4d369e20120a6948b25970b-pi" width="240" height="144"></img></a> I was on my Google Feedburner page today updating my settings to go to my hotmail address (that is the subject for another blog, moving your email address at all of the accounts you have) when I came across what is for me a new feature in the stats section. They have a world map showing distribution of subscribers to my blog feed.</p>
<p>I guess I just always assumed that the bulk of my readers were in the US. This despite the fact that while at StillSecure we would constantly see more web leads come in from the rest of the world then from the US (having an international strategy can be the subject of a blog on another day). So I was surprised that actually about half of my subscribers actually come from outside the US.  After reflection I came to realize that this is how it should be.  Need to stop thinking US centric and remember it is a world wide web like the name says.</p>
<p>While I am at it, I think that is an important lesson to learn for many US companies.  Many companies I have spoken to have the “first we will make it here attitude” and then go international. In today’s economic reality, you can’t afford to just ignore more then half of your potential market. Yes language and time barriers present a problem, but not insurmountable by any means.  In this regard maybe companies that are not US based have an advantage.  Internationalization and penetrating “foreign” markets such as the US is a must for them because many of their home markets would be too small to sustain the business.  Anyway, food for thought on this cold Friday the 13th down in Florida.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/tc983YmyFErGJFDdwL5nh9-qbxk/0/da"><img src="http://feedads.g.doubleclick.net/~a/tc983YmyFErGJFDdwL5nh9-qbxk/0/di" border="0" ismap="true"></img></a><br/><br />
<a href="http://feedads.g.doubleclick.net/~a/tc983YmyFErGJFDdwL5nh9-qbxk/1/da"><img src="http://feedads.g.doubleclick.net/~a/tc983YmyFErGJFDdwL5nh9-qbxk/1/di" border="0" ismap="true"></img></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:dMcygGhlNJA"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?d=dMcygGhlNJA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=0KBnJwdWfdI:kL42ZH68CGg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?a=0KBnJwdWfdI:kL42ZH68CGg:aZ45XMlo8-Q"><img src="http://feeds.feedburner.com/~ff/StillsecureAfterAllTheseYears?i=0KBnJwdWfdI:kL42ZH68CGg:aZ45XMlo8-Q" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/0KBnJwdWfdI" height="1" width="1"/></p>

<p><a href="http://feedads.g.doubleclick.net/~a/E9k4l0ThrBNazFTV7A4U2ueGK7U/0/da"><img src="http://feedads.g.doubleclick.net/~a/E9k4l0ThrBNazFTV7A4U2ueGK7U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/E9k4l0ThrBNazFTV7A4U2ueGK7U/1/da"><img src="http://feedads.g.doubleclick.net/~a/E9k4l0ThrBNazFTV7A4U2ueGK7U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/2YX-qk-jsjQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/0KBnJwdWfdI/it-really-is-a-world-wide-web.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://feedproxy.google.com/~r/StillsecureAfterAllTheseYears/~3/0KBnJwdWfdI/it-really-is-a-world-wide-web.html</feedburner:origLink></item>
		<item>
		<title>October 2009 - ICSA Labs Spam Effectiveness Graph</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/_cyccr7EL8E/october-2009-icsa-labs-spam-effectiveness-graph</link>
		<comments>http://www.icsalabs.com/news-article/october-2009-icsa-labs-spam-effectiveness-graph#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:36:33 +0000</pubDate>
		<dc:creator>jwalsh</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[anti-spam]]></category>

		<guid isPermaLink="false">7331 at http://www.icsalabs.com</guid>
		<description><![CDATA[<p>ICSA&#160;Labs continues to test anti-spam devices daily, ensuring that they demonstrate an ability to block spam and deliver legitimate e-mail.&#160; See the <a href="http://www.icsalabs.com/technology-program/anti-spam/spam-data-center" target="_blank">October effectiveness graph</a> on-line and compare certified products. ICSA&#160;Labs certified anti-spam devices are quite effective at blocking spam. If you don't see your anti-spam provider listed, you may want to ask them why not.</p>
]]></description>
			<content:encoded><![CDATA[<p>ICSA&nbsp;Labs continues to test anti-spam devices daily, ensuring that they demonstrate an ability to block spam and deliver legitimate e-mail.&nbsp; See the <a href="http://www.icsalabs.com/technology-program/anti-spam/spam-data-center" >October effectiveness graph</a> on-line and compare certified products. ICSA&nbsp;Labs certified anti-spam devices are quite effective at blocking spam. If you don&#8217;t see your anti-spam provider listed, you may want to ask them why not.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/8-S-h01PtELaMt28AS_BYYtFGco/0/da"><img src="http://feedads.g.doubleclick.net/~a/8-S-h01PtELaMt28AS_BYYtFGco/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8-S-h01PtELaMt28AS_BYYtFGco/1/da"><img src="http://feedads.g.doubleclick.net/~a/8-S-h01PtELaMt28AS_BYYtFGco/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/_cyccr7EL8E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.icsalabs.com/news-article/october-2009-icsa-labs-spam-effectiveness-graph/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.icsalabs.com/news-article/october-2009-icsa-labs-spam-effectiveness-graph</feedburner:origLink></item>
		<item>
		<title>PCI-DSS Compliance: Devil and Diligence</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/g9lObA8Tg-c/pci-dss_compliance_devil_and_diligence.html</link>
		<comments>
      http://blogs.channelinsider.com/secure_channel/content/governance_and_regulatory_compliance/pci-dss_compliance_devil_and_diligence.html?kc=rss
      #comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:03:01 +0000</pubDate>
		<dc:creator>Secure Channel</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[analysis]]></category>

		<category><![CDATA[Data Security]]></category>

		<category><![CDATA[due diligence]]></category>

		<category><![CDATA[Governance and Regulatory Compliance]]></category>

		<category><![CDATA[PCI DSS]]></category>

		<category><![CDATA[regulatory compliance]]></category>

		<category><![CDATA[risk management]]></category>

		<category><![CDATA[threat management]]></category>

		<guid isPermaLink="false">http://blogs.channelinsider.com/secure_channel/content/governance_and_regulatory_compliance/pci-dss_compliance_devil_and_diligence.html?kc=rss</guid>
		<description><![CDATA[Security evangelists Anton Chuvkin and Ben Rothke have mounted a rousing defense of the Payment Card Industry Data Security Standard - better known as PCI DSS - after The 451 Group's Joshua Corman described the industry standard &#8220;the devil&#8221; that's no different from the ineffective &#8220;No Child Left Behind&#8221; education law.

In an article published in CSO Magazine titled &#8220;<a href="http://www.csoonline.com/article/507364/PCI_DSS_No_Angel_But_Certainly_Not_the_Devil?page=1">PCI DSS: No Angel, But Certainly Not the Devil</a>,&#8221; Chuvkin and Rothke agree that the PCI standard is far from complete and is flawed, but it provides a baseline for what constitutes security best practices and compels businesses that handle credit card and payment information to exercise a minimum level of due diligence.  

Corman's position&#8212;as noted in the CSO article &#8220;<a href="http://www.csoonline.com/article/506635/Analyst_PCI_Security_a_Devil_Like_No_Child_Left_Behind_?page=1">Analyst: PCI Security a Devil, 'Like No Child Left Behind</a>,'&#8221; is simple: Focusing on compliance alone does not make an organization secure and, in some cases, will actually make a business more susceptible to a compromise. By focusing purely on the checklist of security tasks and requirements, businesses will overlook the real threats poised to their business, he says. 

Corman is right, and he has case history on his side. Companies&#8212;such as Hannaford Bros. supermarkets&#8212;that have adopted the PCI standard as their security foundation have suffered catastrophic security breaches. By going down a checklist of security controls, Corman argues that a company will exercise a control&#8212;such as deploying a firewall or ensuring all clients have antivirus&#8212;without an understanding of what it's guarding against. It's like saying you speak a foreign language when all you know is a few words that have no context.

True risk management, Corman's position goes, requires an understanding of the threat landscape, an organization's risk exposure, and the potential loss and consequences of a compromise. From there, a business should devise a security strategy that counters the threats and the ability to adjust to shifting threat conditions. 

Again, Corman is right, and he's very utopian in his point of view. While that type of approach to security is ideal, it's not practical and not every organization has the ability to execute proper risk management, as Chuvkin and Rothke point out. What PCI does for companies that don't have mature security organizations or adequate understanding of risk management is provide a foundational blueprint for safeguarding data. In other words, PCI is better than nothing.

It actually goes a bit deeper than that, and Chuvkin and Rothke only touch on PCI's justification benefits. This is particularly important to security solution providers who are selling the technologies and services that help organizations become and stay compliant. 

Several security vendors and solution providers have talked about how end users - particularly small and midmarket companies - are reluctant to spend money on security in spite of the damning headlines of breaches. One security vendor's channel account manager told me this week that he hears all the time about customers telling their VARs that they have no data that needs protection. The customer doesn't actually believe they are immune to threats or don't have valuable data, but they don't see a compelling need to spend money on security. For companies like this, industry standards and government regulations are more than just a carrot that guides them to a better security place, but the stick that ensures they take at least minimal action. In that regard, PCI performs its task well. 

I'll take the argument one step further: PCI and other regulatory compliance is an effective conversation starter when approaching companies about security products and services. PCI and other standards by no means guarantee a company will be secure, but they do provide the opportunity for security professional and solution providers to engage in a dialogue with business stakeholders about what it takes to ensure business continuity and operational integrity. The challenge&#8212;which I believe both parties in this debate has missed&#8212;is that it's incumbent upon the security professional&#8212;be it an internal manager or an external solution provider&#8212;to take the security discussion beyond the standards.
]]></description>
			<content:encoded><![CDATA[<p>Security evangelists Anton Chuvkin and Ben Rothke have mounted a rousing defense of the Payment Card Industry Data Security Standard - better known as PCI DSS - after The 451 Group&#8217;s Joshua Corman described the industry standard &#8220;the devil&#8221; that&#8217;s no different from the ineffective &#8220;No Child Left Behind&#8221; education law.</p>
<p>In an article published in CSO Magazine titled &#8220;<a href="http://www.csoonline.com/article/507364/PCI_DSS_No_Angel_But_Certainly_Not_the_Devil?page=1">PCI DSS: No Angel, But Certainly Not the Devil</a>,&#8221; Chuvkin and Rothke agree that the PCI standard is far from complete and is flawed, but it provides a baseline for what constitutes security best practices and compels businesses that handle credit card and payment information to exercise a minimum level of due diligence.  </p>
<p>Corman&#8217;s position&#8212;as noted in the CSO article &#8220;<a href="http://www.csoonline.com/article/506635/Analyst_PCI_Security_a_Devil_Like_No_Child_Left_Behind_?page=1">Analyst: PCI Security a Devil, &#8216;Like No Child Left Behind</a>,&#8217;&#8221; is simple: Focusing on compliance alone does not make an organization secure and, in some cases, will actually make a business more susceptible to a compromise. By focusing purely on the checklist of security tasks and requirements, businesses will overlook the real threats poised to their business, he says. </p>
<p>Corman is right, and he has case history on his side. Companies&#8212;such as Hannaford Bros. supermarkets&#8212;that have adopted the PCI standard as their security foundation have suffered catastrophic security breaches. By going down a checklist of security controls, Corman argues that a company will exercise a control&#8212;such as deploying a firewall or ensuring all clients have antivirus&#8212;without an understanding of what it&#8217;s guarding against. It&#8217;s like saying you speak a foreign language when all you know is a few words that have no context.</p>
<p>True risk management, Corman&#8217;s position goes, requires an understanding of the threat landscape, an organization&#8217;s risk exposure, and the potential loss and consequences of a compromise. From there, a business should devise a security strategy that counters the threats and the ability to adjust to shifting threat conditions. </p>
<p>Again, Corman is right, and he&#8217;s very utopian in his point of view. While that type of approach to security is ideal, it&#8217;s not practical and not every organization has the ability to execute proper risk management, as Chuvkin and Rothke point out. What PCI does for companies that don&#8217;t have mature security organizations or adequate understanding of risk management is provide a foundational blueprint for safeguarding data. In other words, PCI is better than nothing.</p>
<p>It actually goes a bit deeper than that, and Chuvkin and Rothke only touch on PCI&#8217;s justification benefits. This is particularly important to security solution providers who are selling the technologies and services that help organizations become and stay compliant. </p>
<p>Several security vendors and solution providers have talked about how end users - particularly small and midmarket companies - are reluctant to spend money on security in spite of the damning headlines of breaches. One security vendor&#8217;s channel account manager told me this week that he hears all the time about customers telling their VARs that they have no data that needs protection. The customer doesn&#8217;t actually believe they are immune to threats or don&#8217;t have valuable data, but they don&#8217;t see a compelling need to spend money on security. For companies like this, industry standards and government regulations are more than just a carrot that guides them to a better security place, but the stick that ensures they take at least minimal action. In that regard, PCI performs its task well. </p>
<p>I&#8217;ll take the argument one step further: PCI and other regulatory compliance is an effective conversation starter when approaching companies about security products and services. PCI and other standards by no means guarantee a company will be secure, but they do provide the opportunity for security professional and solution providers to engage in a dialogue with business stakeholders about what it takes to ensure business continuity and operational integrity. The challenge&#8212;which I believe both parties in this debate has missed&#8212;is that it&#8217;s incumbent upon the security professional&#8212;be it an internal manager or an external solution provider&#8212;to take the security discussion beyond the standards.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/dI_7eisG_Xi335Xm4F13iQZsTvI/0/da"><img src="http://feedads.g.doubleclick.net/~a/dI_7eisG_Xi335Xm4F13iQZsTvI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dI_7eisG_Xi335Xm4F13iQZsTvI/1/da"><img src="http://feedads.g.doubleclick.net/~a/dI_7eisG_Xi335Xm4F13iQZsTvI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/g9lObA8Tg-c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>
      http://blogs.channelinsider.com/secure_channel/content/governance_and_regulatory_compliance/pci-dss_compliance_devil_and_diligence.html?kc=rss
      /feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.channelinsider.com/secure_channel/content/governance_and_regulatory_compliance/pci-dss_compliance_devil_and_diligence.html?kc=rss</feedburner:origLink></item>
		<item>
		<title>cz32ts – an interesting banana!</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/JdqHnlHSchE/</link>
		<comments>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-an-interesting-banana/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:55:06 +0000</pubDate>
		<dc:creator>Alec Waters</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[General Security]]></category>

		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://wirewatcher.wordpress.com/?p=548</guid>
		<description><![CDATA[I think I&#8217;ve found the cz32ts executable &#8211; VirusTotal has this to say about it. What is more interesting is what Anubis has to say about it &#8211; check out the Network Activity section.
Basically, the executable goes off to a C&#38;C server on 205.209.143.94 for a list of URLs to attack using the GETPHPURL command. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wirewatcher.wordpress.com&#38;blog=7642208&#38;post=548&#38;subd=wirewatcher&#38;ref=&#38;feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'>
<p>I think I&#8217;ve found the cz32ts executable &#8211; <a href="http://www.virustotal.com/analisis/e6ef6f24038374e14c335475135e042b69c74eeccbc68191bc642275c1f3c371-1257844304" >VirusTotal</a> has this to say about it. What is more interesting is what Anubis <a href="http://anubis.iseclab.org/?action=result&amp;task_id=1a1c6bc114f4fd7a4d1c18e9bea9ddeb2" >has to say about it</a> &#8211; check out the Network Activity section.</p>
<p>Basically, the executable goes off to a C&amp;C server on 205.209.143.94 for a list of URLs to attack using the GETPHPURL command. It then tries to SQL inject the victim site, using the executable name as its user agent (all of the ones in my capture have i1 as the user agent, because that was the name of the executable I retrieved). Once the SQL injection tests have been carried out, it then reconnects to the C&amp;C server to report the result of the attempt using the CMDPUTLINK command.</p>
<p>I have no idea how cz32ts.exe is distributed, but it would seem like the ideal thing for a dropper to pull down and set to run once on startup.</p>
<p>Anyone fancy shutting down 205.209.143.94?</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wirewatcher.wordpress.com/548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wirewatcher.wordpress.com/548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wirewatcher.wordpress.com/548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wirewatcher.wordpress.com/548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wirewatcher.wordpress.com/548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wirewatcher.wordpress.com/548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wirewatcher.wordpress.com/548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wirewatcher.wordpress.com/548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wirewatcher.wordpress.com/548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wirewatcher.wordpress.com/548/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wirewatcher.wordpress.com&#038;blog=7642208&#038;post=548&#038;subd=wirewatcher&#038;ref=&#038;feed=1" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/HpZ-sHe6u6-ZDgfE8OYfYTU0rb0/0/da"><img src="http://feedads.g.doubleclick.net/~a/HpZ-sHe6u6-ZDgfE8OYfYTU0rb0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HpZ-sHe6u6-ZDgfE8OYfYTU0rb0/1/da"><img src="http://feedads.g.doubleclick.net/~a/HpZ-sHe6u6-ZDgfE8OYfYTU0rb0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/JdqHnlHSchE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-an-interesting-banana/feed/</wfw:commentRss>
		<feedburner:origLink>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-an-interesting-banana/</feedburner:origLink></item>
		<item>
		<title>Sept. 11 Mastermind’s Trial Set for New York</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/iXAwWFuhp3I/</link>
		<comments>http://blog.brickhousesecurity.com/2009/11/13/khalid-sheikh-mohammed-trial/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:50:24 +0000</pubDate>
		<dc:creator>Stan Shyshkin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[9/11]]></category>

		<category><![CDATA[court]]></category>

		<category><![CDATA[new york city]]></category>

		<category><![CDATA[Security news]]></category>

		<guid isPermaLink="false">http://blog.brickhousesecurity.com/?p=5494</guid>
		<description><![CDATA[  Khalid Shiekh Mohammed, the alleged mastermind behind the September 11 terrorist attacks on the Twin Towers and the Pentagon, will be going to trial in New York. Virginia (home of the Pentagon) was competing with New York over who will decide the fate of this senior al Qaeda leader, but decided on a [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Generated by Digg Digg plugin,<br />
    Author : Yong Mook Kim<br />
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/<br />
	-->
<div >
<table border=0 bgcolor=#ffffff>
<td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fblog.brickhousesecurity.com%2F2009%2F11%2F13%2Fkhalid-sheikh-mohammed-trial%2F&amp;source=brickhousesecur&amp; ' height='61' width='50' frameborder='0' scrolling='no'></iframe></td>
</table>
</div>
<p><span ><img class="alignleft size-medium wp-image-5495" title="kahlidmuhammad1" src="http://blog.brickhousesecurity.com/wp-content/uploads/2009/11/kahlidmuhammad1-300x229.jpg" alt="kahlidmuhammad1 300x229 Sept. 11 Masterminds Trial Set for New York" width="210" height="160" /> </span>Khalid Shiekh Mohammed, the alleged mastermind behind the September 11 terrorist attacks on the Twin Towers and the Pentagon, will be going to trial in New York. Virginia (home of the Pentagon) was competing with New York over who will decide the fate of this senior <span class="misspell">al</span> <span class="misspell">Qaeda</span> leader, but decided on a joint effort in a New York based courtroom. With President <span class="misspell">Obama&#8217;s</span> decision to close down the Guantanamo Bay prison, all the terrorist suspects held at Guantanamo Bay prison will get criminal trials in state courts instead of military commissions.</p>
<p>Khalid Shiekh Mohammed&#8217;s formal charges will not be announced for a couple of weeks, but Mr. <span class="misspell">Mohammed</span> did claim that he was the one responsible for the terrorist attacks and was the head of the operation. However, he also accused the the U.S. of torturing him for their use of admitted harsh tactics, including water boarding, a technique intended to simulate drowning. Will this affect Mohammed&#8217;s trial? We will see once formal charges are made against Mohammed.</p>
<p>(<em>Via <a id="olcy" title="WSJ" href="http://online.wsj.com/article/SB125811122555346969.html?mod=WSJ_hpp_LEFTTopStories"><span class="misspell">WSJ</span></a></em>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=iXAwWFuhp3I:4Wuz5WBVR6w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=iXAwWFuhp3I:4Wuz5WBVR6w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=iXAwWFuhp3I:4Wuz5WBVR6w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=iXAwWFuhp3I:4Wuz5WBVR6w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=iXAwWFuhp3I:4Wuz5WBVR6w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=iXAwWFuhp3I:4Wuz5WBVR6w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=iXAwWFuhp3I:4Wuz5WBVR6w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=iXAwWFuhp3I:4Wuz5WBVR6w:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/4jSCqNh65aMXtlGXtN8Be5zVt6o/0/da"><img src="http://feedads.g.doubleclick.net/~a/4jSCqNh65aMXtlGXtN8Be5zVt6o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4jSCqNh65aMXtlGXtN8Be5zVt6o/1/da"><img src="http://feedads.g.doubleclick.net/~a/4jSCqNh65aMXtlGXtN8Be5zVt6o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/iXAwWFuhp3I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.brickhousesecurity.com/2009/11/13/khalid-sheikh-mohammed-trial/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.brickhousesecurity.com/2009/11/13/khalid-sheikh-mohammed-trial/</feedburner:origLink></item>
		<item>
		<title>Britney Spears Turned Satan Worshipper on Twitter or was She Hacked?</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/UjtdH-8aLZY/</link>
		<comments>http://blog.brickhousesecurity.com/2009/11/13/britney-spears-twitter-hacked/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 11:56:39 +0000</pubDate>
		<dc:creator>Stan Shyshkin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[celebrity]]></category>

		<category><![CDATA[Internet Security]]></category>

		<category><![CDATA[Security news]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.brickhousesecurity.com/?p=5482</guid>
		<description><![CDATA[ Unless Britney Spears converted to being a Satan worshiper and a member of the Illuminati, it&#8217;s pretty safe to say that her account got hacked by some prankster yesterday. Halfway through the day, her Twitter background and picture were changed to Illuminati pictures and soon after two new tweets popped up on her page. [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Generated by Digg Digg plugin,<br />
    Author : Yong Mook Kim<br />
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/<br />
	-->
<div >
<table border=0 bgcolor=#ffffff>
<td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fblog.brickhousesecurity.com%2F2009%2F11%2F13%2Fbritney-spears-twitter-hacked%2F&amp;source=brickhousesecur&amp; ' height='61' width='50' frameborder='0' scrolling='no'></iframe></td>
</table>
</div>
<p><img class="alignleft size-medium wp-image-5483" title="britney-twiiter-hacked-1" src="http://blog.brickhousesecurity.com/wp-content/uploads/2009/11/britney-twiiter-hacked-1-300x158.jpg" alt="britney twiiter hacked 1 300x158 Britney Spears Turned Satan Worshipper on Twitter or was She Hacked?" width="300" height="158" />Unless Britney Spears converted to being a Satan worshiper and a member of the Illuminati, it&#8217;s pretty safe to say that her account got hacked by some prankster yesterday. Halfway through the day, her Twitter background and picture were changed to Illuminati pictures and soon after two new tweets popped up on her page. They read:</p>
<blockquote><p>&#8220;I give myself to Lucifer every day for it to arrive as quickly as possible. Glory to Satan!&#8221; and &#8220;I hope that the new world order will arrive as soon as possible!&#8221;</p>
</blockquote>
<p>Britney&#8217;s people are not sure what happened or how the hackers got the log-in information, but they think it was either someone that already had access to her account and decided to mess with it for fun, or just some hackers trying to cause some mischief. Either way, this is not the first time her account has been hacked, as hackers usually target celebrities for their huge number of followers and international influence.</p>
<p>(Via <a id="b3ym" title="Mashable" href="http://mashable.com/2009/11/12/britney-spears-twitter-hijacked/"><span class="misspell">Mashable</span></a>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=UjtdH-8aLZY:s_STpXIbw8E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=UjtdH-8aLZY:s_STpXIbw8E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=UjtdH-8aLZY:s_STpXIbw8E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=UjtdH-8aLZY:s_STpXIbw8E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=UjtdH-8aLZY:s_STpXIbw8E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=UjtdH-8aLZY:s_STpXIbw8E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=UjtdH-8aLZY:s_STpXIbw8E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=UjtdH-8aLZY:s_STpXIbw8E:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/SdVj93z4HOwrWfQDFy2ItmuHYwc/0/da"><img src="http://feedads.g.doubleclick.net/~a/SdVj93z4HOwrWfQDFy2ItmuHYwc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SdVj93z4HOwrWfQDFy2ItmuHYwc/1/da"><img src="http://feedads.g.doubleclick.net/~a/SdVj93z4HOwrWfQDFy2ItmuHYwc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/UjtdH-8aLZY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.brickhousesecurity.com/2009/11/13/britney-spears-twitter-hacked/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.brickhousesecurity.com/2009/11/13/britney-spears-twitter-hacked/</feedburner:origLink></item>
		<item>
		<title>Friday the 13th: Legend or Reality?</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/z_Kkw8CPh2I/</link>
		<comments>http://blog.brickhousesecurity.com/2009/11/13/friday-the-13th/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 11:54:49 +0000</pubDate>
		<dc:creator>Stan Shyshkin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[safety]]></category>

		<category><![CDATA[Security news]]></category>

		<category><![CDATA[security tips]]></category>

		<guid isPermaLink="false">http://blog.brickhousesecurity.com/?p=5478</guid>
		<description><![CDATA[  Everyone has at least heard that Friday the 13th is unlucky, but most people don&#8217;t even know why. The unlucky association with this day dates back to hundreds of years ago from a superstition that if 13 people sit together at a table, the first one to get up is bound to die [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Generated by Digg Digg plugin,<br />
    Author : Yong Mook Kim<br />
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/<br />
	-->
<div >
<table border=0 bgcolor=#ffffff>
<td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fblog.brickhousesecurity.com%2F2009%2F11%2F13%2Ffriday-the-13th%2F&amp;source=brickhousesecur&amp; ' height='61' width='50' frameborder='0' scrolling='no'></iframe></td>
</table>
</div>
<p><img class="alignleft size-medium wp-image-5479" title="friday13" src="http://blog.brickhousesecurity.com/wp-content/uploads/2009/11/friday13-300x225.jpg" alt="friday13 300x225 Friday the 13th: Legend or Reality?" width="210" height="158" /> Everyone has at least heard that Friday the 13<span class="misspell">th</span> is unlucky, but most people don&#8217;t even know why. The unlucky association with this day dates back to hundreds of years ago from a superstition that if 13 people sit together at a table, the first one to get up is bound to die within a year. This superstition is generally thought to have originated from the Last Supper, Where Jesus and his 12 disciples sat down together at the table and within the year Jesus died.</p>
<p>Even before this, cultures all around the world such as Native Americans, Mayans,  and Ancient Egyptians, considered the number 13 unlucky. Another religious connotation, people couple bad luck with Friday the 13th because Jesus was killed on a Friday. In fact, most of the public executions that took place were on a Friday. And for the people with extreme fear of Friday the 13<span class="misspell">th</span> (<span id="bad_word" class="misspell">paraskevidekatriaphobics</span>), this year is especially unlucky with 3 Friday the 13<span class="misspell">th</span> dates (one in February, March, and November).</p>
<p>Now if you really are a <span class="misspell">paraskevidekatriaphobics</span>, or just a bit superstitious, there are a few simple precautions you can take to minimize your bad luck. First, is paying close attention to your surroundings and the people around you. Being aware is the first step towards staying safe. Or you may want to take the high tech route and choose some security products to enhance your well being. For example, many people turn to GPS trackers with panic buttons to ensure safety and send alerts if they get into a bind. Or maybe you need a hidden camera to monitor your things. High tech or low tech, this Friday the 13th you may want to take some extra precautions and maybe pick up a few lucky pennies just in case.</p>
<p>(<em>Via <a id="jg6b" title="BSUDailyNews" href="http://www.bsudailynews.com/features/origins-of-friday-the-13th-1.2064598">BSUDailyNews</a></em>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=z_Kkw8CPh2I:8rqpJxyGvbc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=z_Kkw8CPh2I:8rqpJxyGvbc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=z_Kkw8CPh2I:8rqpJxyGvbc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=z_Kkw8CPh2I:8rqpJxyGvbc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=z_Kkw8CPh2I:8rqpJxyGvbc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=z_Kkw8CPh2I:8rqpJxyGvbc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?a=z_Kkw8CPh2I:8rqpJxyGvbc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrickhouseSecurityBlog?i=z_Kkw8CPh2I:8rqpJxyGvbc:gIN9vFwOqvQ" border="0"></img></a>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/5Bcm7VShq-a7AJ4KLSogZL-91aU/0/da"><img src="http://feedads.g.doubleclick.net/~a/5Bcm7VShq-a7AJ4KLSogZL-91aU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5Bcm7VShq-a7AJ4KLSogZL-91aU/1/da"><img src="http://feedads.g.doubleclick.net/~a/5Bcm7VShq-a7AJ4KLSogZL-91aU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/z_Kkw8CPh2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.brickhousesecurity.com/2009/11/13/friday-the-13th/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.brickhousesecurity.com/2009/11/13/friday-the-13th/</feedburner:origLink></item>
		<item>
		<title>cz32ts – evil twin of NV32ts?</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/Xots3pJDK1w/</link>
		<comments>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-evil-twin-of-nv32ts/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:10:28 +0000</pubDate>
		<dc:creator>Alec Waters</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[General Security]]></category>

		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://wirewatcher.wordpress.com/?p=540</guid>
		<description><![CDATA[There is an update to this post here.
In the past, we&#8217;ve seen various automated SQL Injection attempts bearing a User-Agent of NV32ts. It&#8217;s all a little odd, since:

 The attempts are dead easy to spot, thanks to the user agent (there&#8217;s even a Snort rule for detecting it)
The attempts could be described as recon-only, since [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wirewatcher.wordpress.com&#38;blog=7642208&#38;post=540&#38;subd=wirewatcher&#38;ref=&#38;feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'>
<blockquote>
<p>There is an update to this post <a href="http://wirewatcher.wordpress.com/2009/11/13/cz32ts-an-interesting-banana/" >here</a>.</p>
</blockquote>
<p>In the past, we&#8217;ve seen various automated SQL Injection attempts bearing a User-Agent of NV32ts. It&#8217;s all a little odd, since:</p>
<ul>
<li> The attempts are dead easy to spot, thanks to the user agent (there&#8217;s even a <a href="http://doc.emergingthreats.net/2009029" >Snort rule</a> for detecting it)</li>
<li>The attempts could be described as recon-only, since they didn&#8217;t seek to change anything.</li>
</ul>
<p>Two injection attempts would be made by the attacker. The injected SQL would look like this:</p>
<blockquote><p>%20And%20char(124)%2b(Select%20Cast(Count(1)%20as<br />
%20varchar(8000))%2Bchar(124)%20From%20[sysobjects]<br />
%20Where%201=1)&gt;0</p>
</blockquote>
<p>And this:</p>
<blockquote><p>&#8216;%20And%20char(124)%2b(Select%20Cast(Count(1)%20as<br />
%20varchar(8000))%2Bchar(124)%20From%20[sysobjects]<br />
%20Where%201=1)&gt;0%20and%20&#8221;=&#8217;</p>
</blockquote>
<p>These two cover the cases for vulnerable non-string and string parameters, and each case would be attached to the end of  the URL under test, after the last parameter. We&#8217;d usually see a spate of attempts in a short space of time from different source IP addresses, possibly suggesting that some botnet or other is doing all the work (possibly even <a href="http://blogs.iss.net/archive/ConfickerwSQLInjecti.html" >Conficker</a>).</p>
<p>Yesterday, we saw another run of attempts with the same pattern. A handful of source IP addresses targetted the same victim websites, each trying the same URL twice, appending the same two SQL statements as above. The only difference is the user agent &#8211; what was NV32ts has become cz32ts.</p>
<p>It&#8217;s still something of a mystery, though. Why use such a distinctive user agent? Why change it? What are the baddies looking for? If they&#8217;re going to go to the bother of scanning for sites vulnerable to SQL injection, why don&#8217;t they just try to inject something? Why conduct all this recon, when it would be difficult to reliably detect if you&#8217;re actually talking to a vulnerable site? Are the botmasters selling lists of potentially vulnerable sites rather than exploiting them themselves?</p>
<p>Any ideas?</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wirewatcher.wordpress.com/540/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wirewatcher.wordpress.com/540/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wirewatcher.wordpress.com/540/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wirewatcher.wordpress.com/540/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wirewatcher.wordpress.com/540/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wirewatcher.wordpress.com/540/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wirewatcher.wordpress.com/540/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wirewatcher.wordpress.com/540/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wirewatcher.wordpress.com/540/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wirewatcher.wordpress.com/540/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wirewatcher.wordpress.com&#038;blog=7642208&#038;post=540&#038;subd=wirewatcher&#038;ref=&#038;feed=1" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/iYLXr8Veq8cb65DoQYPSbmPQG9E/0/da"><img src="http://feedads.g.doubleclick.net/~a/iYLXr8Veq8cb65DoQYPSbmPQG9E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/iYLXr8Veq8cb65DoQYPSbmPQG9E/1/da"><img src="http://feedads.g.doubleclick.net/~a/iYLXr8Veq8cb65DoQYPSbmPQG9E/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/Xots3pJDK1w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-evil-twin-of-nv32ts/feed/</wfw:commentRss>
		<feedburner:origLink>http://wirewatcher.wordpress.com/2009/11/13/cz32ts-evil-twin-of-nv32ts/</feedburner:origLink></item>
		<item>
		<title>TLS Renegotiation Vulnerability</title>
		<link>http://feedproxy.google.com/~r/SecurityBloggersNetwork/~3/3xw6IDfZEfA/tls-renegotiation-vulnerability.html</link>
		<comments>http://blog.triplecheck.ca/2009/11/tls-renegotiation-vulnerability.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 07:25:38 +0000</pubDate>
		<dc:creator>Mark Linton</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-3123519664071299436.post-8797078657944525547</guid>
		<description><![CDATA[<a href="http://2.bp.blogspot.com/_vcuxy3Ozzt0/Sv0J65_vkdI/AAAAAAAAANI/7KZmCHl7SUY/s1600-h/images.jpg"><img style="margin: 0pt 10px 10px 0pt;float: left;width: 86px;height: 86px" src="http://2.bp.blogspot.com/_vcuxy3Ozzt0/Sv0J65_vkdI/AAAAAAAAANI/7KZmCHl7SUY/s200/images.jpg" alt="" border="0" /></a>As many of you have already heard, there was a very serious vulnerability discovered in the TLS protocol that is used across the general internet to secure many many forms of communication, from the browser used to access banking online, to the protocols used to secure messaging servers.<br /><br />The vulnerability itself is a design weakness found in the protocol's ability to renegotiate the encryption used in a session after a long-standing connection.<br /><br /><a href="http://blog.g-sec.lu/2009/11/sslv3-tls-man-in-middle-vulnerability.html">Here</a> is a good write-up and links to some other information regarding the issue.<br /><br />Stay tuned on this though - and expect many many patches and work-arounds to be issued by vendors.<div class="blogger-post-footer"><img width='1' height='1'></div>]]></description>
			<content:encoded><![CDATA[<!-- daniel found  --><!-- daniel found old=https://blogger.googleusercontent.com/tracker/3123519664071299436-8797078657944525547?l=blog.triplecheck.ca and new=http://blog.triplecheck.ca/https://blogger.googleusercontent.com/tracker/3123519664071299436-8797078657944525547?l=blog.triplecheck.ca --><p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_vcuxy3Ozzt0/Sv0J65_vkdI/AAAAAAAAANI/7KZmCHl7SUY/s1600-h/images.jpg"><img  src="http://2.bp.blogspot.com/_vcuxy3Ozzt0/Sv0J65_vkdI/AAAAAAAAANI/7KZmCHl7SUY/s200/images.jpg" alt="" id="BLOGGER_PHOTO_ID_5403486035519705554" border="0" /></a>As many of you have already heard, there was a very serious vulnerability discovered in the TLS protocol that is used across the general internet to secure many many forms of communication, from the browser used to access banking online, to the protocols used to secure messaging servers.</p>
<p>The vulnerability itself is a design weakness found in the protocol&#8217;s ability to renegotiate the encryption used in a session after a long-standing connection.</p>
<p><a href="http://blog.g-sec.lu/2009/11/sslv3-tls-man-in-middle-vulnerability.html">Here</a> is a good write-up and links to some other information regarding the issue.</p>
<p>Stay tuned on this though - and expect many many patches and work-arounds to be issued by vendors.
<div class="blogger-post-footer"><img width='1' height='1' src='http://blog.triplecheck.ca/https://blogger.googleusercontent.com/tracker/3123519664071299436-8797078657944525547?l=blog.triplecheck.ca'/></div>

<p><a href="http://feedads.g.doubleclick.net/~a/ffQjI0FbZUS1s27TXgiNLyhRTt0/0/da"><img src="http://feedads.g.doubleclick.net/~a/ffQjI0FbZUS1s27TXgiNLyhRTt0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ffQjI0FbZUS1s27TXgiNLyhRTt0/1/da"><img src="http://feedads.g.doubleclick.net/~a/ffQjI0FbZUS1s27TXgiNLyhRTt0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/SecurityBloggersNetwork/~4/3xw6IDfZEfA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.triplecheck.ca/2009/11/tls-renegotiation-vulnerability.html/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.triplecheck.ca/2009/11/tls-renegotiation-vulnerability.html</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 1.177 seconds --><!-- Cached page served by WP-Cache -->
