<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>My Security Planet</title>
	<link>http://rgaucher.info/planet/</link>
	<description>My Security Planet</description>
	<generator>Gregarius 0.5.4</generator>
	<language>en</language>
	<item>
		<title>terminal23: symantec hack is whack is a case study</title>
		<link>http://www.terminal23.net/2010/09/symantec_hack_is_whack_is_a_ca.html</link>
		<pubDate>Tue, 07 Sep 2010 14:29:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/symantec_hack_is_whack_is_a_ca.html</guid>
		<content:encoded><![CDATA[	Yeah, we've all heard more than we need to about Symantec's Hack is Whack campaign and the <a href="http://www.theregister.co.uk/2010/09/06/hackiswack_secure/">security holes found in the newborn site</a>.<br />
<br />
This is what I call a decently Big Deal; a sort of case study in how even a security giant is dropping a site out onto the internet that is full of holes. Certainly Symantec has security experts enough to review their code and make suggestions, or code it up properly from the start. Or at least have some oversight to slow down the process and make sure marketing has their details buttoned up, right? (I'm quite aware that marketing no doubt implemented and ran with this completely on their own, likely through a third party or even fourth party, but my point will remain...)<br />
<br />
This really provides a horrible, sobering example of the state of things right now, especially in how important security truly is to organizations. Far too many do whatever they want, until someone pokes the soft spots and points them out. The more public or damaging, the more likely a quick response is forthcoming. And this from a security company!<br />
<br />
I'm not going to go so far as to say this is a call to arms for security to be at the forefront of marketing in Symantec or even any organization. That's a dreamy ideal, but not one I'm thinking is realistic at this point. No one likes security dragging the timelines out and making things complicated!<br />
<br />
It should instead be more of a call to arms for executives to <b>care</b> about this sort of thing, which in turn can start permeating that cultural change in everyone else. It just doesn't work to be 100% reactive. That is still what I call the Big Gamble in organizational security. Roll it out there and hope no one ever cares too much and finds big holes. That or the attitude that you can't secure it yourself, so roll it out there and let others provide your QA and security testing for you. I agree you can do those approaches, but they can't be your only approach. You'll either continue to be laughed at, or you'll get pwned and not know it.<br />
<br />
I may still be a bit idealistic in my viewpoint. In larger corps, they're just too big to play catch-up on everything that is going on. In smaller corps, they just want to survive and can't afford to go slow or imbed security in something that may not even exist in 6 months if it fails. ]]></content:encoded>
</item>

<item>
		<title>ModSecurity Blog: Advanced Feature of the Week: Real-time Blacklist Lookups</title>
		<link>http://blog.modsecurity.org/2010/09/advanced-feature-of-the-week-real-time-blacklist-lookups.html</link>
		<pubDate>Tue, 07 Sep 2010 10:58:00 -0500</pubDate>
		<guid>http://blog.modsecurity.org/2010/09/advanced-feature-of-the-week-real-time-blacklist-lookups.html</guid>
		<content:encoded><![CDATA[	<p>
  This week's feature is the effective use of <a href="http://www.modsecurity.org/documentation/modsecurity-apache/2.5.12/modsecurity2-apache-reference.html#N11DCA">Real-time Blacklist lookups</a> (@rbl).
</p>Reference Manual<code>rbl</code>
<p>
  <em>Description:</em>&nbsp;Look up the parameter in the RBL given as parameter. Parameter can be an IPv4 address, or a hostname.
</p>
<p>
  Example:
</p>
<pre>
SecRule REMOTE_ADDR "<em>@rbl</em> sc.surbl.org"
</pre><em>OWASP ModSecurity CRS</em>
<p>
  <em>The OWASP ModSecurity CRS includes limited use of the @rbl operator within the optional_rules/modsecurity_crs_42_comments_spam.conf file:</em>
</p>
<pre>
<em>#
# Comment spam is an attack against blogs, guestbooks, wikis and other types of
# interactive web sites that accept and display hyperlinks submitted by
# visitors. The spammers automatically post specially crafted random comments
# which include links that point to the spammer's web site. The links
# artificially increas the site's search engine ranking and may make the site
# more noticable in search results.
#

SecRule IP:PREVIOUS_RBL_CHECK "@eq 1" "phase:1,t:none,pass,nolog,skipAfter:END_RBL_LOOKUP"
 SecRule REMOTE_ADDR "@rbl sbl-xbl.spamhaus.org" "phase:1,t:none,pass,nolog,auditlog,msg:'RBL Match for SPAM Source',tag:'AUTOMATION/MALICIOUS',severity:'2',setvar:'tx.msg=%{rule.msg}',setvar:tx.automation_score=+%{tx.warning_anomaly_score},setvar:tx.anomaly_score=+%{tx.warning_anomaly_score},setvar:tx.%{rule.id}-AUTOMATION/MALICIOUS-%{matched_var_name}=%{matched_var},setvar:ip.spammer=1,expirevar:ip.spammer=86400,setvar:ip.previous_rbl_check=1,expirevar:ip.previous_rbl_check=86400,skipAfter:END_RBL_CHECK"

 SecAction "phase:1.t:none,nolog,pass,setvar:ip.previous_rbl_check=1,expirevar:ip.previous_rbl_check=86400"
SecMarker END_RBL_LOOKUP

SecRule IP:SPAMMER "@eq 1" "phase:1,t:none,pass,nolog,auditlog,msg:'Request from Known SPAM Source (Previous RBL Match)',tag:'AUTOMATION/MALICIOUS',severity:'2',setvar:'tx.msg=%{rule.msg}',setvar:tx.automation_score=+%{tx.warning_anomaly_score},setvar:tx.anomaly_score=+%{tx.warning_anomaly_score},setvar:tx.%{rule.id}-AUTOMATION/MALICIOUS-%{matched_var_name}=%{matched_var}"

SecMarker END_RBL_CHECK
</em>
</pre>
<p>
  <em>The goal of this ruleset is to run an @rbl check once for each IP address and then save the response in a TX variable for 1 day. &nbsp;This is used to limit the number of @rbl lookups that the web server needs to do as there is a latency hit for executing the DNS queries.</em>
</p><br />
<br />
So What?
<p>
  <em>Why use Real-time Blacklist Lookups anyways? &nbsp; What we are talking about here is <em>IP Reputation</em>. &nbsp;Has this client been identified as bad by other web sites? &nbsp;It is sort of like the <a href="http://www.tsa.gov/approach/secure_flight.shtm">"No Fly" lists</a> that the Department of Homeland Security makes available to airlines. &nbsp;It is a method of sharing information about clients so that you can decided if you want to allow this client access to your site at all or perhaps treat them differently (such as with increased logging). &nbsp;Real-time block lists (RBL) are community-based, central repositories for IP Reputation. RBLs are most commonly used to identify web-based comment spam. If you run a blog or user-forum site, wouldn't you like to know if the current client has already been identified as a spammer?</em>
</p>
<p>
  While @rbl is a useful feature, there is a caution with its usage - it is a severe performance hit and can cause increased latency for clients. &nbsp;Whereas the @geoLookup operator accessed a local DB, @rbl checks occur in real-time over the network and utilize the DNS infrastructure. &nbsp;For the same reason that most web admins disable real-time client resolution in logging, running a DNS lookup on each client request can cause severe delays. &nbsp;
</p><em><em><em><em><em><em><em><em><em>@rbl Tips</em></em></em></em></em></em></em></em></em>
<p>
  <em>Here are a few recommended tips for using @rbl.</em>
</p><em>DNS Caching</em>
<p>
  <em>Implement a local caching DNS server like <a href="http://www.corpit.ru/mjt/rbldnsd.html">rbldnsd</a> so that your @rbl checks issue DNS queries to the local system first.</em>
</p><em>Use ModSecurity Persistent Storage</em>
<p>
  <em>Alternatively, you can use ModSecurity to save rbl responses in the IP persistent storage collection. &nbsp;This is what the CRS modsecurity_crs_42_comment_spam.conf file does. &nbsp;The persistent data is cached for 1 day.</em>
</p><em>Choose your RBL carefully</em>
<p>
  <em>Make sure that you choose your RBL carefully. &nbsp;You not only want to ensure that the RBL category is appropriate for your site but also that the accuracy of the list is good.</em>
</p>
<p>
  <br />
  <br />
</p> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Consumerization and Corporate IT Security</title>
		<link>http://www.schneier.com/blog/archives/2010/09/consumerization.html</link>
		<pubDate>Tue, 07 Sep 2010 07:25:10 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/consumerization.html</guid>
		<content:encoded><![CDATA[	If you're a typical wired American, you've got a bunch of tech tools you like and a bunch more you covet. You have a cell phone that can easily text. You've got a laptop configured just the way you want it. Maybe you have a Kindle for reading, or an iPad. And when the next new thing comes along, some... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=HvKd_7tdCCw:PBDRYWsrlhc:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>Sunnet Beskerming Security Advisories: PS3 Hack Spreads, Sony Update Kills It</title>
		<link>http://feedproxy.google.com/~r/beskermingcombined/~3/XpnqNx0zTgs/PS3_Hack_Spreads,_Sony_Update_Kills_It</link>
		<pubDate>Tue, 07 Sep 2010 03:09:00 -0500</pubDate>
		<guid>http://feedproxy.google.com/~r/beskermingcombined/~3/XpnqNx0zTgs/PS3_Hack_Spreads,_Sony_Update_Kills_It</guid>
		<content:encoded><![CDATA[	<p>
  Although Sony has been successful in suppressing the sale of the PSJailbreak devices in Australia for the time being, detailed information about the processes involved in the hack has now lead to multiple alternative hacks surfacing.
</p>
<p>
  With exploit code now freely available and being ported to numerous platforms (<a href="http://www.engadget.com/2010/09/05/ps3-jailbreak-adapted-to-nokia-n900-palm-pre-in-wake-of-austral/">mobile phones</a>, for example), Sony essentially faces an insurmountable task to suppress the information and distribution of devices at this point. So long as Sony can address the particular method employed to mod the console (i.e. specific USB capabilities) there is still scope for them to remove the ability to mod via a firmware update. A downside to this approach is that it could break the functionality of their own test jig, which achieves similar results and is used by authorised repairers on faulty consoles.
</p>
<p>
  It didn't take very long for Sony to deliver their response, in the form of <a href="http://blog.us.playstation.com/2010/09/06/playstation-3-system-software-update-v3-42-now-available/">firmware version 3.42</a>, which has been <a href="http://exophase.com/ps3/ps3-firmware-3-42-hits-network-update-18063.htm">confirmed</a> to prevent PSJailbreak and its variants from working. Now that the firmware update has been delivered, the exploit developers are either going to have to accept a console that can't access the PSN (given 3.42's status as a mandatory update), or find another means to gain control of the console.
</p><a href="http://feeds.feedburner.com/~ff/beskermingcombined?a=XpnqNx0zTgs:Cw6CaWWOouc:yIl2AUoC8zA"><img alt="" src="http://feeds.feedburner.com/~ff/beskermingcombined?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/~ff/beskermingcombined?a=XpnqNx0zTgs:Cw6CaWWOouc:63t7Ie-LG7Y"><img alt="" src="http://feeds.feedburner.com/~ff/beskermingcombined?d=63t7Ie-LG7Y" /></a> <a href="http://feeds.feedburner.com/~ff/beskermingcombined?a=XpnqNx0zTgs:Cw6CaWWOouc:V_sGLiPBpWU"><img alt="" src="http://feeds.feedburner.com/~ff/beskermingcombined?i=XpnqNx0zTgs:Cw6CaWWOouc:V_sGLiPBpWU" /></a> <a href="http://feeds.feedburner.com/~ff/beskermingcombined?a=XpnqNx0zTgs:Cw6CaWWOouc:gIN9vFwOqvQ"><img alt="" src="http://feeds.feedburner.com/~ff/beskermingcombined?i=XpnqNx0zTgs:Cw6CaWWOouc:gIN9vFwOqvQ" /></a> <img alt="" src="http://feeds.feedburner.com/~r/beskermingcombined/~4/XpnqNx0zTgs" /> ]]></content:encoded>
</item>

<item>
		<title>SEO BlackHat: Black Hat SEO Blog: Epassporte Dropped by Visa</title>
		<link>http://seoblackhat.com/2010/09/07/epassporte-dropped-by-visa/</link>
		<pubDate>Tue, 07 Sep 2010 02:36:02 -0500</pubDate>
		<guid>http://seoblackhat.com/2010/09/07/epassporte-dropped-by-visa/</guid>
		<content:encoded><![CDATA[	<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fseoblackhat.com%2F2010%2F09%2F07%2Fepassporte-dropped-by-visa%2F"><img alt="" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fseoblackhat.com%2F2010%2F09%2F07%2Fepassporte-dropped-by-visa%2F" /></a>
<p>
  This was pretty surprising to see:
</p>
<blockquote>
  <p>
    Dear ePassporte Account Holders,
  </p>
  <p>
    Please be advised that, at 12:00 PM PDT today, September 2, 2010, we were notified that effective immediately, Visa International has suspended our banking partner’s (St. Kitts Nevis Anguilla National Bank) ePassporte Visa program. The ePassporte e-Wallet program continues to be up and running, except funds cannot be transferred between your Visa Account and your e-Wallet. At this time ePassporte can no longer issue Visa Cards, and the ability for our Account Holders to make point of sale purchases and withdraw funds from ATMs has also been suspended.
  </p>
  <p>
    At this time we do not know why this drastic action was taken by Visa. To us, it is unconscionable that such action would be taken without the opportunity for ePassporte to fully understand Visa’s reasons and to be able to take all steps necessary to keep our program running the way it has so successfully done for over 7 years. But that is what Visa has done.
  </p>
  <p>
    As soon as we have more information we will be in contact with you.
  </p>
  <p>
    In the meantime please be assured that your funds are safe.
  </p>
  <p>
    We are very sorry for the short notice and apologize for any inconvenience this may cause. The ePassporte team is working diligently to rectify this situation.
  </p>
  <p>
    We kindly ask you to bear with us while we work through this issue.
  </p>
  <p>
    Please feel free to contact us via the message center or at our call center, should you have any questions, comments or concerns.
  </p>
  <p>
    Thank You,<br />
    Christopher Mallick
  </p>
</blockquote>
<p>
  Pretty amazing the did that all at once like that: leaving epassporte high and dry.
</p> ]]></content:encoded>
</item>

<item>
		<title>SecuriTeam Blogs: T2 Conference Challenges</title>
		<link>http://blogs.securiteam.com/index.php/archives/1435</link>
		<pubDate>Tue, 07 Sep 2010 01:51:00 -0500</pubDate>
		<guid>http://blogs.securiteam.com/index.php/archives/1435</guid>
		<content:encoded><![CDATA[	<p>
  Hi,
</p>
<p>
  Since the dawn of our species (well 2005, if you want to be picky about it) t2 has been granting free admission to the elite of their kind, the winners of the t2 Challenges. Don’t be suckered in by all the cheap imitations out there, their snooze-fest la-di-da dog and pony shows, because t2 is back! And we’re pleased to announce the release of the<br />
  t2’10 Challenge!
</p>
<p>
  Now is your chance to join the past elites (<a href="http://t2.fi/challenge/">[t2.fi]</a>) by winning free admission to this year’s t2’10 Infosec Conference!
</p>
<p>
  This year’s t2’10 Challenge is based on multi-staging (much like good shell code), which will be powered by a scoreboard (<a href="http://t2.fi/ext/scoreboard">[t2.fi]</a>) so that you can see — (almost) in real time — how the other participants are fairing out there in the land of the living.
</p>
<p>
  The rules are simple: t2 will release the t2’10 Challenge and the first one to solve it will win free admission to the t2’10 Infosec Conference. But don’t stop just because you weren’t the first one to solve it: The Advisory Board will select another winner among the next ten correct answers, paying particular attention to the elegance of the solution rather than the speed. In other words you can win with either speed or style <img src='http://blogs.securiteam.com/wp-includes/images/smilies/icon_smile.gif' alt=')' />
</p>
<p>
  The t2’10 Challenge will be released 2010-08-28 10:00 EEST at <a href="http://t2.fi/">[t2.fi]</a>
</p>
<p>
  Good luck
</p>
<p>
  UPDATE: A solution for the challenge has been posted, you can see it here: <a href="http://t2.fi/2010/09/07/t210-challenge-solution/">[t2.fi]</a> or you attend the conference and talk to the winner for yourself <img src='http://blogs.securiteam.com/wp-includes/images/smilies/icon_smile.gif' alt=')' /> <a title="Digg"><img src="http://blogs.securiteam.com/wp-content/socializer-images/digg.png" alt="Digg" /></a><a title="Reddit"><img src="http://blogs.securiteam.com/wp-content/socializer-images/reddit.png" alt="Reddit" /></a><a title="Slashdot"><img src="http://blogs.securiteam.com/wp-content/socializer-images/slashdot.png" alt="Slashdot" /></a><a title="TwitThis"><img src="http://blogs.securiteam.com/wp-content/socializer-images/twitter.png" alt="TwitThis" /></a><a title="Sphinn"><img src="http://blogs.securiteam.com/wp-content/socializer-images/sphinn.png" alt="Sphinn" /></a><a title="StumbleUpon"><img src="http://blogs.securiteam.com/wp-content/socializer-images/stumbleupon.png" alt="StumbleUpon" /></a><a title="del.icio.us"><img src="http://blogs.securiteam.com/wp-content/socializer-images/delicious.png" alt="del.icio.us" /></a><a title="Facebook"><img src="http://blogs.securiteam.com/wp-content/socializer-images/facebook.png" alt="Facebook" /></a><a title="Google"><img src="http://blogs.securiteam.com/wp-content/socializer-images/googlebookmark.png" alt="Google" /></a><a title="Technorati"><img src="http://blogs.securiteam.com/wp-content/socializer-images/technorati.png" alt="Technorati" /></a><a href="mailto:?subject=T2+Conference+Challenges&amp;body=http%3A%2F%2Fblogs.securiteam.com%2Findex.php%2Farchives%2F1435" title="E-mail this story to a friend!"><img alt="E-mail this story to a friend!" /></a>
</p>
<p>
  -
</p>
<p>
  Let the experts make sure your website is safe. <a href="http://www.beyondsecurity.com/vulnerability-assessment.html">Vulnerability Assessment</a> is the answer.
</p> ]]></content:encoded>
</item>

<item>
		<title>Billy (BK) Rios: PDF XSS (CVE-2010-0190)</title>
		<link>http://xs-sniper.com/blog/2010/09/06/pdf-xss-cve-2010-0190/</link>
		<pubDate>Mon, 06 Sep 2010 21:57:00 -0500</pubDate>
		<guid>http://xs-sniper.com/blog/2010/09/06/pdf-xss-cve-2010-0190/</guid>
		<content:encoded><![CDATA[	<p>
  In April of this year, Adobe patched a couple of bugs I <a title="Adobe Bulletin" href="http://www.adobe.com/support/security/bulletins/apsb10-09.html">reported to them</a>.&nbsp; One was a code execution bug (CVE-2010-0191) and the other was a PDF based XSS (CVE-2010-0190).&nbsp; I’ll cover the code execution bug in a future post (as Adobe is still fixing a variant I reported), but for now I’d like to touch on the PDF XSS.
</p>
<p>
  PDF based XSS isn’t a new concept, even Adobe considers PDFs to be active content.&nbsp; With that said, I’m surprised at the number of web applications that allow users to upload PDFs and then serve those PDF’s inline as opposed to an attachment (although there are some gotchas with content-disposition attachment).&nbsp; Serving a user supplied PDF inline essentially allows that user to execute arbitrary client side code from the domain serving the PDF.&nbsp; The safer way to handle PDFs is to serve them with the content-disposition set to attachment. &nbsp;An even better method is to serve the user controlled content from a separate domain.&nbsp; This can be difficult for web content portals that are deployed internally like SharePoint, Outlook Web Access (OWA) and Oracle Web (all of which were affected by this bug) where the organization would have to write custom code and employ custom configurations to protect themselves from PDF based XSS exposures.&nbsp; Serving PDFs with a content disposition set to attachment also creates usability issues as an ugly download warning will appear instead of the more friendly PDF content in the browser window behavior.
</p>
<p>
  Although this particular bug was patched by Adobe a few months ago, there were a few things I learned that could possibly be used in other PDF bugs.&nbsp; I’d like to share some of the more interesting items.
</p>PDFs Support Octal Encoding
<p>
  PDFs support&nbsp; JavaScript from within the PDF.&nbsp; Unfortunately, the script executed from within the PDF will not have access to the browsers DOM.&nbsp; In order to gain access to the browser’s DOM, we have to use the PDF to redirect the browser to a JavaScript URI.&nbsp; Normally, redirection to JavaScript URIs are blocked by the PDF security routines, however I discovered an easy bypass using octal encoding.&nbsp; I place the JavaScript payload into an OpenAction for the PDF, using an octal encoded value (72) for the “:” character.&nbsp; An example of the OpenAction is presented below:
</p>
<blockquote>
  <p>
    %PDF-1.1<br />
    1 0 obj<br />
    &lt;&lt;<br />
    /Type /Catalog<br />
    /OpenAction &lt;&lt;<br />
    /S /URI<br />
    /IsMap false<br />
    /URI (javascript72alert(“FTW – “+document.domain))<br />
    &gt;&gt;
  </p>
</blockquote>
<p>
  A super simple XSS with PDFs.&nbsp; When the PDF is opened in the browser, it redirects the browser to a JavaScript URL allowing for XSS.&nbsp; Mailing out a rigged PDF as an attachment to some friends using OWA would have been an interesting exercise as certain versions of OWA open PDF attachments inline.&nbsp; Although I encoded the “:” character in the example above, any character in passed to the OpenAction can be encoded and Adobe Reader will handle it.&nbsp; In fact, octal encoding can be used throughout the PDF in various scripts and actions.&nbsp; For example, you could encode the entire protocol handler and it would still work:
</p>
<blockquote>
  <p>
    /URI (11210112610112310312211112012472alert(document.domain))
  </p>
</blockquote>
<p>
  You can even mix and match the encoding, making it extremely difficult for any signature based IDS to detect malicious payloads.
</p>
<blockquote>
  <p>
    /URI (j101v101s103r111p12472alert(document.domain))
  </p>
</blockquote>
<p>
  If you’re up against a security blacklist when attempting to exploit a PDF bug, try passing an octal encoded value for your payload.&nbsp; This was the bug Adobe fixed with CVE-2010-0190
</p>Security models are different for local and remote PDFs
<p>
  Like most browser plug-ins Adobe has implemented different security mechanisms for PDFs opened from the local file system and PDFs opened remotely.&nbsp; It can be useful to determine whether the PDF was opened remotely or locally.&nbsp; The following script returns an indication as to how the PDF was loaded.
</p>
<blockquote>
  <p>
    //In the browser or loaded locally<br />
    if ( this.external )<br />
    {<br />
    // Viewing from a browser<br />
    }<br />
    else<br />
    {<br />
    // Viewing in the Acrobat application.<br />
    }
  </p>
</blockquote>
<p>
  This can be useful if your exploit only works for locally loaded PDFs or maybe if your exploit only works for remotely loaded PDFs.
</p>PDFs can be used to call the default browser
<p>
  There can be situations where the user browses certain websites with one browser, but uses another browser as their default browser.&nbsp; Adobe Acrobat Reader actually provides an API (I’m not sure if it’s intentional) to pass a URI to the default browser.
</p>
<blockquote>
  <p>
    app.launchURL(“http://xs-sniper.com/”,true);
  </p>
</blockquote>
<p>
  If a user calls app.launchURL and passes the “true” flag, the default browser is opened and handles the passed URI.&nbsp; This can provide a bridge between two different browsers and can increase the reachable attack surface in some circumstances.&nbsp; If the user is using the default browser to open the PDF, this can help bypass pop-up blockers.&nbsp; You can test this by setting your default browser to IE and browsing the following PDF in FireFox.&nbsp; <a title="Default Browser" href="http://xs-sniper.com/sniperscope/Adobe/PDF/launch-default-browser.pdf">PDF HERE</a>
</p>
<p>
  There was an excellent presentation at <a title="Origami" href="http://www.security-labs.org/fred/docs/pacsec08/pacsec08-fr-gd-full.pdf">PacSec</a> that covered a ton of PDF bugs and <a title="Didier Stevens" href="http://blog.didierstevens.com/">Didier Stevens</a> always has interesting PDF stuff.&nbsp; I hope this helps someone out there!&nbsp; Happy hunting.
</p> ]]></content:encoded>
</item>

<item>
		<title>Liminal states: Links from the Arrington/TechCrunch women in tech kerfuffle</title>
		<link>http://www.talesfromthe.net/jon/?p=1618</link>
		<pubDate>Mon, 06 Sep 2010 13:45:22 -0500</pubDate>
		<guid>http://www.talesfromthe.net/jon/?p=1618</guid>
		<content:encoded><![CDATA[	<p>
  <img src="http://tctechcrunch.files.wordpress.com/2010/08/women.jpg" alt="Yes we can!" />Even over the three-day weekend here in the US we continue to see some excellent discussions, for example Qworky advisor Gayle Laakmann’s <a href="http://www.technologywoman.com/2010/09/05/blame-men-and-women-a-response-to-techcrunchs-article-on-women-in-tech/">Blame Men — And Women</a> and Audrey Watters’ <a href="http://www.audreywatters.com/2010/09/05/ambient-un-belonging-women-and-tech-startups/">“Ambient Un-belonging”</a> Arrington’s got <a href="http://techcrunch.com/2010/09/05/blogging-and-mass-psychomanipulation/">another post up</a> too.
</p>
<p>
  Looking ahead, the <a href="http://www.womenwhotech.com/">Women In Tech teleconference</a> on September 15 includes <em>TechCrunch</em> CEO Heather Harde is on the “Female Ferocity” panel.&nbsp; There’s the sold-out <a href="http://gracehopper.org/2010/">Grace Hopper Celebration of Women in Computing</a> in Atlanta at the end of the month.&nbsp; And late last week, Arrington <a href="http://twitter.com/arrington/status/22837225096">tweeted</a> that they were going to add an all-women panel to TechCrunch Disrupt to discuss “women’ issues”.* &nbsp; So I suspect we’ll be hearing a lot more about this …
</p>
<p>
  Hopefully as we move forward, as well a continued focus on the underlying issues and realities of structural biases against women and minorities, we’ll also see a lot more discussion about what people can do. Mary’s <a href="http://geekfeminism.org/2010/09/05/where-to-after-we-do-the-required-reading/">Where to after the required reading?</a> on <em>Geek Feminism</em> asks for suggestions.&nbsp; I’ve got a draft response in <a href="http://www.talesfromthe.net/jon/?p=1576">What each of us can do</a>; feedback welcome.
</p>
<p>
  In any case I thought it would be useful to collect the links to what’s been written so far.&nbsp; It’s really striking how much good stuff there’s been on blogs and Twitter (I collected some of the tweets that caught my eye in various <a href="http://www.talesfromthe.net/jon/?p=1552#comment-87913">comments</a> in another thread**) so hopefully the list it’ll be valuable to anybody else writing about it.
</p>
<p>
  First though, in a comment that the Arrington’s of the world will no doubt dismiss as pandering, I’d like to take a moment and express my admiration for the women in technology who have been doing such great work to change the ratio.&nbsp; The women I know who speak out on gender equity aren’t “whiners”, as they’re so often dismissed by people who don’t want to hear what they’re saying.&nbsp;&nbsp; They’re remarkably successful despite the huge biases against them, and somehow manage to find time for diversity work in addition to having careers, friendships, and often families.
</p>
<p>
  Of course they’re frustrated when privileged guys who clearly haven’t looked at the problem in any detail deny there’s a problem, attack women and allies, and disclaim responsibility — and who can blame them?&nbsp; Despite that, though, they’re a remarkably positive group … and with good reason: they’ve invested a huge amount of time and effort here over the years and it’s really starting to pay off.
</p>
<p>
  So kudos and respect to you all.&nbsp; I’m impressed by what you’ve accomplished and proud to know you&nbsp; And thanks, too: the technology world is a much more pleasant for your efforts!
</p>
<p>
  And you know, stuff like this makes a big difference. There was a very encouraging episode late last week in response to <a href="http://guestofaguest.com/social-media/want-dennis-crowley-and-ben-lerer-to-mentor-you-youre-in-luck">Chiara Atik’s <em>Guest of a Guest</em> article</a> on TechStars New York’s ratio of 46 male mentors and only two women. When Cindy Gallop brought it up on Twitter, David Tisch of TechStars quickly reached out.&nbsp; Props&nbsp; all around. More of this please!
</p>
<p>
  Here now the links, in rough chronological order.&nbsp; There’s also excellent discussion in the comments of many of these; I’ve also included “HN” links for the meta-discussions on Hacker News on some.&nbsp; I’m sure I missed some — please tweet them to me at @jdp23 or leave ‘em in the comments.&nbsp; Thanks as always!
</p>
<p>
  jon
</p>
<ul>
  <li>
    <a href="http://blogs.wsj.com/venturecapital/2010/08/27/addressing-the-lack-of-women-leading-tech-start-ups/">Addressing the Lack of Women Running Tech Startups</a>, Shira Ovide, <em>Wall Street Journal</em>
  </li>
  <li>
    <a href="http://techcrunch.com/2010/08/28/women-in-tech-stop-blaming-me/">Too Few Women In Tech? Stop Blaming The Men.&nbsp; Or at least stop blaming me</a>, Michael Arrington, <em>TechCrunch.</em> (<a href="http://news.ycombinator.com/item?id=1643180">HN</a>)
  </li>
  <li>
    <a href="http://www.fastcompany.com/1685780/too-few-women-in-tech-stop-playing-the-blame-game">Stop Playing the Blame Game</a>, Allyson Kapin, <em>Fast Company</em>
  </li>
  <li>
    <a href="http://evasmith.wordpress.com/2010/08/29/too-few-women-in-tech-stop-blaming-the-men-response/">“Too Few Women in Tech?”</a>, Eva Smith, <em>Tech.&nbsp; Food.&nbsp; Life.</em>
  </li>
  <li>
    <a href="http://www.wimnonline.org/WIMNsVoicesBlog/2010/08/29/to-techcrunchs-battle-of-the-sexes-no-ones-blaming-anyone/">Nobody’s Blaming Anybody</a>, Cindy Gallop, <em>WIMN’s Voices</em>
  </li>
  <li>
    <a href="http://rootwork.org/blog/2010/08/too-few-women-tech-blame-sexism">Blame Sexism</a>. Ivan Boothe, <em>Rootwork</em>
  </li>
  <li>
    <a href="http://talesfromthe.net/jon/?p=1552">Fretting, Asking, and Begging Isn’t a Plan</a>, Jon Pincus, <em>Liminal States,</em> cross-posted <a href="http://www.fem2pt0.com/2010/08/31/fretting-asking-and-begging-isn%E2%80%99t-a-plan-a-response-to-techcrunch-on-women-in-technology/">on <em>Feminism 2.0</em></a>
  </li>
  <li>
    <a href="http://seldo.com/weblog/2010/08/29/arrington_is_completely_wrong_about_women_in_technology">Arrington is completely wrong about women in technology,</a> Laurie, <em>Seldo.com</em> (<a href="http://news.ycombinator.com/item?id=1644425">HN</a>)
  </li>
  <li>
    <a href="http://www.michellesblog.net/blogs/my-challenge-to-michael-arrington-techcrunch-hint-its-not-hard">My Challenge to Michael Arrington</a>, Michelle Greer, <em>michelle’s blog</em>
  </li>
  <li>
    <a href="http://www.chipchick.com/2010/08/michael-arrington-too-few-women-tech.html">In Response to Michael Arrington’s “Too Few Women in Tech” article</a>, Helena Stone, <em>ChipChick</em>
  </li>
  <li>
    <a href="http://jeffnolan.com/wp/2010/08/29/the-lack-of-tech-industry-diversity-1-year-later/">The Lack of Tech Industry Diversity</a>: One Year Later, Jeff Nolan, <em>Venture Chronicles</em>
  </li>
  <li>
    <a href="http://www.avc.com/a_vc/2010/08/women-in-tech-and-women-entrepreneurs-discussion.html">Women in Tech and Women Entrepeneurs Discussion</a>, Fred Wilson, <em>A VC</em>
  </li>
  <li>
    <a href="http://www.feld.com/wp/archives/2010/08/more-women-in-tech-discussions.html">More Women in Tech Discussions</a>, Brad Feld, <em>FeldThoughts</em>
  </li>
  <li>
    <a href="http://www.businessinsider.com/arrington-women-entrepreneurs-stop-blaming-men-for-your-problems-2010-8">Arrington: “Women Entrenepeneurs: Stop Blaming Men for Your Problems”</a>, Alyson Shontel, <em>Business Insider</em>
  </li>
  <li>
    <a href="http://shefaly-yogendra.com/blog/2010/08/30/women-in-tech-what-gives/">Women in Tech: What Gives?</a>, Shefaly Yogendra
  </li>
  <li>
    <a href="http://33bits.org/2010/08/30/women-in-tech-how-anonymity-contributes-to-the-problem/">How Anonymity Contributes to the Problem</a>, Arvind Narayanan, <em>33 Bits</em>
  </li>
  <li>
    <a href="http://jolieodell.wordpress.com/2010/08/31/women-in-tech-stats/">A Realistic Look at the Numbers</a>, Jolie O’Dell
  </li>
  <li>
    <a href="http://www.feministe.us/blog/archives/2010/08/30/getting-more-women-to-tech/">Getting More Women to Tech</a>, Kay, <em>Feministe</em>
  </li>
  <li>
    <a href="http://confusedofcalcutta.com/2010/08/31/musing-about-inclusion-in-technology/">Musing about Inclusion in Technology</a>, JP Rangaswami, <em>Confused of Calcutta</em>
  </li>
  <li>
    <a href="http://mavenity.org/2010/08/30/techcrunch-comments-fail-from-stfu-to-female-supremacists/">TechCrunch Comments Fail: from STFU to “Female Supremecists”</a>, clarley, <em>Mavenity,</em>
  </li>
  <li>
    <a href="http://jezebel.com/5625287/what-do-where-are-the-women-shitstorms-achieve">What Do “Where are the Women” Sh*tstorms Achieve?</a> Irin Carmon’s <em>Jezebel.</em>
  </li>
  <li>
    <a href="http://ja-nae.net/blog/5-simple-ways-to-help-women-win-as-tech-leaders">5 Simple Ways to Help Women as Tech Leaders</a>, Ja-Naé Duane’s
  </li>
  <li>
    <a href="http://www.thefrisky.com/post/246-reasons-your-company-might-be-a-sausagefest/">18 Reasons Your Company Might Be a Sausagefest</a>, Jessica Wakeman
  </li>
  <li>
    <a href="http://www.prospect.org/csnc/blogs/tapped_archive?month=08&amp;year=2010&amp;base_name=for_women_in_tech_try_harder_i">Try Harder Isn’t an Answer</a>, Jamelle Bouie, <em>TAPPED</em>
  </li>
  <li>
    <a href="http://geekfeminism.org/2010/08/30/on-influence-lists-women-and-the-confluence-thereof/">On Influence, Lists, Women and the Confluence Thereof</a>, K. Tempest Bradford, <em>Geek Feminism</em>
  </li>
  <li>
    <a href="http://geekfeminism.org/2010/08/30/too-few-women-in-tech-theres-more-than-you-think/">There’s More than You Think</a>, Terri, <em>Geek Feminism</em>
  </li>
  <li>
    <a href="http://www.talesfromthe.net/jon/?p=1576">A few things each of us can do (DRAFT)</a>, Jon Pincus, <em>Liminal States</em>
  </li>
  <li>
    <a href="http://www.thedailybeast.com/blogs-and-stories/2010-08-31/women-in-technology-is-there-a-gender-divide/">Is There a Gender Divide in Startups?</a>, Leah Culver, <em>The Daily Beast</em>
  </li>
  <li>
    <a href="http://changetheratio.tumblr.com/post/1048647457/i-could-keep-writing-about-the-lack-of-women-in-tech,">“I&nbsp; Could Keep Writing About the Lack of Women in Tech, but Starting a New Company Seems Like More Fun”</a>,&nbsp; Rachel Sklar, <em>Change the Ratio</em>
  </li>
  <li>
    <a href="http://dondodge.typepad.com/the_next_big_thing/2010/08/why-arent-there-more-women-in-tech-my-list-of-30-great-women.html">My List of 30 Great Women</a>, Don Dodge, <em>The Next Big Thing</em>
  </li>
  <li>
    <a href="http://geofflivingston.com/2010/09/01/mindfulness-the-key-to-finding-female-speakers/">Mindfulness is the Key to Finding Female Speakers</a>, Geoff Livingston
  </li>
  <li>
    <a href="http://bitchmagazine.org/post/douchebag-decree-michael-arrington-technological-determinist">Douchebag Decree: Michael Arrington, Technological Determinist</a>, Kelsey Wallace, <em>Bitch</em>
  </li>
  <li>
    <a href="http://venturebeat.com/2010/09/02/women-in-tech-what-to-do-now/">Women in Tech: What to do Now?</a>, Clara Byrne, <em>Venture Beat</em>
  </li>
  <li>
    <a href="http://geekfeminism.org/2010/09/02/finding-more-women-to-speak-at-ohio-linuxfest-success/">Finding more women to speak at Ohio LinuxFest</a>, Mackenzie, <em>Geek Feminism</em>
  </li>
  <li>
    <a href="http://babyfruit.typepad.com/mediagirl/2010/09/too-few-women-in-tech-stop-blaming-the-men.html">We Aren’t Blaming Men</a> , Aliza Sherman
  </li>
  <li>
    <a href="http://www.seattle20.com/blog/Too-Few-Women-in-Tech-Stop-Telling-People-How-They-Should-Feel-About-It.aspx">Stop Telling People How They Should Feel About It</a>, Sasha Pasulka, <em>Seattle 2.0</em>
  </li>
  <li>
    <a href="http://uptownuncorked.com/2010/09/03/women-in-tech-quick-thoughts/">Quick Thoughts</a>, Leslie Poston, <em>Uptown Uncorked</em>
  </li>
  <li>
    <a href="http://www.technologywoman.com/2010/09/05/blame-men-and-women-a-response-to-techcrunchs-article-on-women-in-tech/">Blame Men — And Women</a>, Gayle Laakmann, <em>Technology Woman</em>
  </li>
  <li>
    <a href="http://eileenbrown.wordpress.com/2010/09/03/go-aliza-women-in-tech-do-blame-some-men/">Go Aliza.&nbsp; Women in Tech do Blame Some Men</a>, Eilieen Brown, <em>Eileen’s Technology Blog</em>
  </li>
  <li>
    <a href="http://www.audreywatters.com/2010/09/05/ambient-un-belonging-women-and-tech-startups/">“Ambient Un-belonging”</a> , Audrey Watters, <em>an/archivista</em> (<a href="http://news.ycombinator.com/item?id=1667767">HN</a>)
  </li>
  <li>
    <a href="http://techcrunch.com/2010/09/05/blogging-and-mass-psychomanipulation/">Blogging and Mass Psychomanipulation</a>, Michael Arrington, TechCrunch
  </li>
  <li>
    <a href="http://changetheratio.tumblr.com/post/1070065056/not-sure-i-agree-with-this-dudes-logic-but-i">Not sure if I agree with this dude’s logic</a>, Rachel Sklar, <em>Change the Ratio</em>
  </li>
  <li>
    <a href="http://cameronsorden.blogspot.com/2010/09/women-in-tech-men-in-tech-and-blame.html">Women in Tech, Men in Tech, and the Blame Game</a>, Cameron Sorden, <em>Digital Life</em>
  </li>
  <li>
    <a href="http://www.socialtimes.com/2010/09/girls-in-tech-arrington-response/">Girls in Tech Debate: A Publicity Hoax?</a>,&nbsp; Ellie Cachette, <em>Social Times</em>
  </li>
  <li>
    <a href="http://technbiz.blogspot.com/2010/09/apologetic-mike-arrington.html">An apologetic Mike Arrington</a>, Paramendra Bhagat, <em>Netizen</em>
  </li>
  <li>
    <a href="http://www.horsepigcow.com/2010/09/what-you-cant-tell-just-by-looking-at-her/">What You Can(’t) Tell Just By Looking At Her</a>, Tara Hunt, <em>HorsePigCow</em>
  </li>
  <li>
    <a href="http://changetheratio.tumblr.com/post/1079110283/ratio-changing">Ratio: Changing</a>, Rachel Sklar, <em>Change the Ratio</em>
  </li>
  <li>
    <a href="http://jolieodell.wordpress.com/2010/09/07/women-in-tech/">Why We Don’t Need more Women in Tech … Yet</a>, Jolie O’Dell
  </li>
  <li>
    <a href="http://blog.emmapersky.com/women-entrepreneurs-and-tech">women, entrepeneurs, and tech</a>, Emma Persky
  </li>
</ul>
<p>
  * see <a href="http://twitter.com/navarrowwright/status/22844033027">@navarrowwright</a>, <a href="http://twitter.com/nakisnakis/status/22848899346">@nakisnakis</a>, and <a href="http://twitter.com/randomdeanna/status/22838174696">@randomdeanna</a> for some points on the TC Disrupt panel
</p>
<p>
  ** including Arrington snarking at me if you read far enough down <img src='http://www.talesfromthe.net/jon/wp-includes/images/smilies/icon_smile.gif' alt='-)' />
</p> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Terrorism Entrapment</title>
		<link>http://www.schneier.com/blog/archives/2010/09/terrorism_entra.html</link>
		<pubDate>Mon, 06 Sep 2010 07:24:50 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/terrorism_entra.html</guid>
		<content:encoded><![CDATA[	Back in 2007, I wrote an essay, "Portrait of the Modern Terrorist as an Idiot," where I said: The JFK Airport plotters seem to have been egged on by an informant, a twice-convicted drug dealer. An FBI informant almost certainly pushed the Fort Dix plotters to do things they wouldn't have ordinarily done. The Miami gang's Sears Tower plot was... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=LF0CRvEIvlY:WdSwLug4DlQ:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>Liminal states: Windstorms on Playa (Labor Day Weekend 2010)</title>
		<link>http://www.talesfromthe.net/jon/?p=1613</link>
		<pubDate>Sun, 05 Sep 2010 19:23:22 -0500</pubDate>
		<guid>http://www.talesfromthe.net/jon/?p=1613</guid>
		<content:encoded><![CDATA[	<p>
  <a href="http://www.rgj.com/article/20100905/EVENTS04/100904022/1321/NEWS">Windstorms on Playa</a>
</p>
<p>
  <a href="http://www.fantasyflightgames.com/edge_news.asp?eidn=1381">As we battle Ithaqua</a>.
</p>
<p>
  Best.&nbsp; Burn Night.&nbsp; Ever.
</p>
<p>
  <em>for D, September 2010</em>
</p>
<p>
  We didn’t go to Burning Man this year.&nbsp; Who knows, maybe next year.&nbsp; Instead we observed burn night in our own way, by having spaghetti, playing Arkham Horror, and drinking champagne.&nbsp; We lost three of five investigators but in the end Roland and Patrice barely took Ithaqua out in the final battle.&nbsp; What a great night.&nbsp;&nbsp; And a fine weekend, too!
</p> ]]></content:encoded>
</item>

<item>
		<title>ha.ckers.org web application security lab: The Effect of Snakeoil Security</title>
		<link>http://ha.ckers.org/blog/20100904/the-effect-of-snakeoil-security/</link>
		<pubDate>Sat, 04 Sep 2010 12:53:58 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100904/the-effect-of-snakeoil-security/</guid>
		<content:encoded><![CDATA[	<p>
  15 posts left…
</p>
<p>
  I’ve talked about this a few times over the years during various presentations but I wanted to document it here as well. It’s a concept that I’ve been wrestling with for 7+ years and I don’t think I’ve made any headway in convincing anyone, beyond a few head nods. Bad security isn’t just bad because it allows you to be exploited. It’s also a long term cost center. But more interestingly, even the most worthless security tools can be proven to “work” if you look at the numbers. Here’s how.
</p>
<p>
  Let’s say hypothetically that you have only two banks in the entire world: banka.com and bankb.com. Let’s say Snakoil salesman goes up to banka.com and convinces banka.com to try their product. Banka.com is thinking that they are seeing increased fraud (as is the whole industry), and they’re willing to try anything for a few months. Worst case they can always get rid of it if it doesn’t do anything. So they implement Snakeoil into their site. The bad guy takes one look at the Snakeoil and shrugs. Is it worth bothering to figure out how banka.com security works and potentially having to modify their code? Nah, why not just focus on bankb.com double up the fraud, and continue doing the exact same thing they were doing before?
</p>
<p>
  Suddenly banka.com is free of fraud. Snakeoil works, they find! They happily let the Snakeoil salesman use them as a use case. So our Snakeoil salesman goes across the street to bankb.com. Bankb.com has seen a two fold increase in fraud over the last few months (all of banka.com’s fraud plus their own), strangely and they’re desperate to do something about it. Snakeoil salesman is happy to show them how much banka.com has decreased their fraud just by buying their shoddy product. Bankb.com is desperate so they say fine and hand over the cash.
</p>
<p>
  Suddenly the bad guy is presented with a problem. He’s got to find a way around this whole Snakeoil software or he’ll be out of business. So he invests a few hours, finds an easy way around it and voila. Back in business. So the bad guy again diversifies his fraud across both banks again. Banka.com sees an increase in fraud back to the old days, which can’t be correlated to anything having to do with the Snakeoil product. Bankb.com sees their fraud drop immediately after having installed the Snakeoil therefore proving that it works twice if you just look at the numbers.
</p>
<p>
  Meanwhile what has happened? Are the users safer? No, and in fact, in some cases <a href="http://ha.ckers.org/acutrust/">it may even make the users less safe</a> (incidentally, we did manage finally stop AcuTrust as the company is completely gone now). Has this stopped the attacker? Only long enough to work around it. What’s the net effect? The two banks are now spending money on a product that does nothing but they are now convinced that it is saving them from huge amounts of fraud. They have the numbers to back it up - although the numbers are only half the story. Now there’s less money to spend on real security measures. Of course, if you look at it from either bank’s perspective the product did save them and they’ll vehemently disagree that the product doesn’t work, but it also created the problem that it solved in the case of bankb.com (double the fraud).
</p>
<p>
  This goes back to the bear in the woods analogy that I personally hate. The story goes that you don’t have to run faster than the bear, you just have to run faster than the guy next to you. While that’s a funny story, that only works if there are two people and you only encounter one bear. In a true ecosystem you have many many people in the same business, and you have many attackers. If you leave your competitor(s) out to dry that may seem good for you in the short term, but in reality you’re feeding your attacker(s). Ultimately you are allowing the attacker ecosystem to thrive by not reducing the total amount of fraud globally. Yes, this means if you really care about fixing your own problem you have to help your competitors. Think about the bear analogy again. If you feed the guy next to you to the bear, now the bear is satiated. That’s great for a while, and you’re safe. But when the bear is hungry again, guess who he’s going after? You’re much better off working together to kill or scare off the bear in that analogy.
</p>
<p>
  Of course if you’re a short-timer CSO who just wants to have a quick win, guess which option you’ll be going for? Jeremiah had a good insight about why better security is rarely implemented and/or sweeping security changes are rare inside big companies. CSOs are typically only around for a few years. They want to go in, make a big win, and get out before anything big breaks or they get hacked into. After a few years they can no longer blame their predecessor either. They have no incentive to make things right, or go for huge wins. Those wins come with too much risk, and they don’t want their name attached to a fiasco. No, they’re better off doing little to nothing, with a few minor wins that they can put on their resume. It’s a little disheartening, but you can probably tell which CSOs are which by how long they’ve stayed put and by the scale of what they’ve accomplished.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Browser Detection Autopwn, etc…</title>
		<link>http://ha.ckers.org/blog/20100904/browser-detection-autopwn-etc/</link>
		<pubDate>Sat, 04 Sep 2010 10:53:22 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100904/browser-detection-autopwn-etc/</guid>
		<content:encoded><![CDATA[	<p>
  16 posts left…
</p>
<p>
  I often find myself thinking about egyp7’s DefCon speech last year. He was talking about browser autopwn, which was a relatively new concept at that time being built into <a href="http://www.metasploit.com/">Metasploit</a>. Pretty cool technology, and with only one minor mishap he was able to demonstrate it on stage with impressive results. That’s all well and fine, and you should check it out, but one thing stuck out from the presentation more than the technology itself.
</p>
<p>
  By doing variable detection he could find out everything down to the individual patch level of the device in most cases. Of course a bad guy can mess with these variables and lie, which egyp7 admitted to. But, wisely he said something to the effect that if you find a browser that is lying about it’s user agent, you probably have found yourself a browser hacker, and you don’t want to try to be owning his browser anyway. Once you find yourself in this condition, bail. The idea mirrors a lot of the type of stuff I wrote about in <a href="http://www.detectmalice.com">Detecting Malice</a>. By identifying the signature of browsers and how people navigate sites you can know a lot about your potential adversary. Either for good or, in the case of autopwn, evil. Growing this signature database over time could be very useful as attention on browser exploitation increases and the need for understanding user traffic and intent grows.
</p> ]]></content:encoded>
</item>

<item>
		<title>cat slave diary: Code of Hammurabi – or 4000 years later, we still haven’t got it</title>
		<link>http://www.greebo.net/2010/09/04/code-of-hammurabi-or-4000-years-later-we-still-havent-got-it/</link>
		<pubDate>Sat, 04 Sep 2010 01:52:43 -0500</pubDate>
		<guid>http://www.greebo.net/2010/09/04/code-of-hammurabi-or-4000-years-later-we-still-havent-got-it/</guid>
		<content:encoded><![CDATA[	<p>
  The Code of Hammurabi is one of the earliest known written laws, and possibly pre-dates Moses’ descent from the Mount.
</p>
<p>
  In it, we get a picture of the Babylonian’s laws and punishments. In particular, there’s this one:
</p>
<p>
  If a builder builds a house for someone, and does not construct it properly, and the house which he built falls in and kills its owner, then the builder shall be put to death.(Another variant of this is, If the owner’s son dies, then the builder’s son shall be put to death.)
</p>
<p>
  (Source: <a title="Code of Hammurabi" href="http://en.wikipedia.org/wiki/Code_of_Hammurabi">Wikipedia</a>)
</p>
<p>
  So essentially, this is one of the earliest building codes. Pretty harsh, but you know…
</p>
<p>
  What this means is that only qualified builders <em>prepared to take the risk of death</em> built houses. This obviously focuses the mind.
</p>
<p>
  In our industry, we have hobbiests and self-taught folks working side by side with software engineers and computer scientists, but they usually share one thing in common: they know nothing of security.
</p>
<p>
  This is like an accountant graduating without knowledge of auditing principles or GAAP. It’s exactly like a civil engineer being unaware of load stresses and envioronmental factors necessary that require safety and tolerances to be built into every structure.
</p>
<p>
  When the average person goes to a builder or architect, and asks for a house to be built, we expect them to know how to build the two or three story building such that it not only complies with minimum code requirements, but that it will not collapse. When they do, we strike those builders off the master builder’s register and they can no longer build homes. We can sue them for gross negligence.
</p>
<p>
  When the average small company does their books, they expect the accountants they hire to know how to do double entry book keeping, and be aware of local, state and federal tax rules. When they fail to do so, they lose their CPA accreditation and we can sue them for gross negligence.
</p>
<p>
  When a city or state wants to build a new bridge, they expect the winning tenderer to design the bridge to last for the expected period of time, satisfy all state and federal road and safety laws, and obtained specialist advice for key elements of constructions, such as wind tunnel tests. If the bridge falls down, this is usually the end for that building group and they are sued out of existence.
</p>
<p>
  Why is so different in our field? What we do is not art. SQL injection is so utterly preventable and has been for over 10 years that I truly believe it is gross negligence to have injectable code in any running code today.
</p>
<p>
  There is a huge difference between using MYOB to run a small business and building a cubby house. Yet this is all 99.9% of all developers are capable of today. They lack the most basic awareness of software security, the only key non-functional requirement of all software – from games through national treasury finance systems.
</p>
<p>
  Efforts like <a title="Rugged Software" href="http://www.ruggedsoftware.org/">Rugged Software</a> and <a title="OWASP" href="http://www.owasp.org">OWASP</a> are vital. We must get out to Universities and employers and make sure that security is taught and that all IT, CS, and software engineering graduates have done at lease one 13 week subject on it, and make it the easiest possible path to major in software security. We must get out to employers and make sure they require all new hires to know about it and be able to code for it. Moreover, if they buy off the shelf software, we must get them to include clauses in contracts, such as the <a title="OWASP Secure Software Security Annex" href="http://forum.owasp.org/index.php/OWASP_Secure_Software_Contract_Annex">OWASP Secure Software Contract Annex</a> to protect themselves from gross negligence such as SQL injection or XSS. We must reach out to frameworks and make them utterly aware that what they do affects millions of developers and they simply must be better at security than everyone else.
</p>
<p>
  It’s time for the software industry to grow up, realize that fortunes, privacy and lives really are at risk, and we’re doing a repeatable engineering process, and not some black art. We have to have consequences.
</p> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Friday Squid Blogging: Squid Car</title>
		<link>http://www.schneier.com/blog/archives/2010/09/friday_squid_bl_245.html</link>
		<pubDate>Fri, 03 Sep 2010 16:58:03 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/friday_squid_bl_245.html</guid>
		<content:encoded><![CDATA[	Squid car.... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=o6vlMTIfSuw:-OOYS4Nkw-E:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>ha.ckers.org web application security lab: The Perils of Speeding up the Browser</title>
		<link>http://ha.ckers.org/blog/20100903/the-perils-of-speeding-up-the-browser/</link>
		<pubDate>Fri, 03 Sep 2010 12:41:49 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100903/the-perils-of-speeding-up-the-browser/</guid>
		<content:encoded><![CDATA[	<p>
  17 posts left until the end…
</p>
<p>
  A year or so ago I went to go visit the Intel guys at their internal conference that they throw (similar to Microsoft’s Bluehat). I honestly had no idea what to tell a bunch of hardware guys. What correlation does chip manufacturing really have with browsers or webapps. Well virtualization and malware certainly, but what else? It got me thinking… one of the things they are in direct control over is how fast operating systems (and subsequently browsers) work. I talked it over with id before going out there. Faster is better right?
</p>
<p>
  I’ve got mixed feelings about fast vs slow browsers. When something is slow, you can actually detect that something strange is going on. It’s also easier to stop it from mis-behaving if an attack takes a while. When it’s fast, it’s much harder to notice that your computer had to chug for a while to do something complex and much less likely that a user can intervene. There have been a number of exploits out there that have really been proof of concept only. They’re deemed not practical because they take too long, or hang the browser temporarily while they’re being executed. If the speed barrier is removed, then suddenly those old proof of concepts (think res:// timing attacks and so on) are actually much easier to perform. So while I think innovation and performance improvement is a good thing overall, it does come with some unintended consequences.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Browser Differences, Minutia Et Al…</title>
		<link>http://ha.ckers.org/blog/20100903/browser-differences-minutia-et-al/</link>
		<pubDate>Fri, 03 Sep 2010 11:27:06 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100903/browser-differences-minutia-et-al/</guid>
		<content:encoded><![CDATA[	<p>
  18 posts left…
</p>
<p>
  I got an email last night from someone asking me to do a breakdown of which browser is better, Internet Explorer, Firefox, Opera, Safari and Chrome. First of all, there’s already a pretty good reference that <a href="http://code.google.com/p/browsersec/wiki/Main">Michal Zalewski put together</a>. Like anything this comprehensive, since it’s not been edited for about half a year it’s already out of date in a few ways, but it’s a great place to get started for those who want to get familiar with the internal differences between various browsers. No need to re-invent the wheel, go read it. Now, that’s the purely technical side, but there is one thing that’s wildly missing from most documents that talk about browser security.
</p>
<p>
  Browser security often turns into a religious war amongst technologists, instead of thinking about it pragmatically. What are the real motives of the companies that are developing the browsers? In most cases they care primarily about market share because market share makes them money (through search engine agreements, and so on). So now you have to think about yourself and your needs. What kind of user are you? I tend to be a very security conscious person, and if you’re reading this you probably are too. I’m willing to severely degrade my usability for an increase in security, whereas most users are not. So the browser I will tend towards is one that offers me the flexibility to make those decisions for myself while still giving me enough usability to be able to do anything I need to do, when I decide to. This is why Firefox has been my personal browser of choice for years - but don’t be confused and think it’s because I think Firefox is more secure out of the box. Firefox has just as many flaws as other browsers, by default.
</p>
<p>
  While security people’s needs are important, if you look at the number of people who are security folks compared to the rest of the world, we are insignificant as a percentage. That means that it is not in the browser company’s interest to focus on appeasing security people. Sure, it’s nice to have a browser that is secure, but that’s not ever going to drive the volume of users necessary to make the real revenue for their organizations - or at least that’s what the market seems to be proving. Plus most of the major browsers above tout themselves as being more secure than their competitors - so normal consumers don’t know who to believe. As such, while I think all the major browsers mentioned above have their pros and cons, none of them are designed with security first. They’re designed for a different set of users in mind (which includes security people, but it also includes our grandmas, and tweens and cousin Cletus), and that puts browser design choices somewhat at odds with security, because what does Cletus care or know about security? So that’s where plugins, addons, sandboxes, VMs, etc… come into play. It’s like wearing a condom around your browser, if you like. It gives us the ability to use the same underlying product while still protecting ourselves as much as possible.
</p>
<p>
  I honestly think most browsers can be made to be very secure, if you’re willing to sacrifice all usability - not completely secure, no doubt, but far more secure than any of the major browsers above ship by default. So, it’s a little hard for me to play favorites. They each have their own security mess to clean up, so currently there is no good solution, and I don’t recommend any browsers to anyone (although you people still on IE6 really should upgrade already). The work involved in really securing your browser simply isn’t worth explaining to most people. In fact, “which browser do you use” is my least favorite question, because it’s not as simple as a single word. Boutique browsers, while interesting, don’t often have the support behind them to make them useful for a lot of the more common applications (lacking vast plugin support, etc…) although of anyone, they actually could align themselves nicely with the needs of security people. So, while I think browser security is often about minutia, we need to fully grasp the market forces at work before getting completely fed up by a constant string of functionality that only makes it less secure, instead of expecting dramatic security improvements. Or we need to pick something more obscure and assume the risks involved with a product that is not tried and true. It’s not an easy problem for us or the browser companies - I don’t envy their situation.
</p> ]]></content:encoded>
</item>

<item>
		<title>terminal23: writing compensating controls</title>
		<link>http://www.terminal23.net/2010/09/writing_compensating_controls.html</link>
		<pubDate>Fri, 03 Sep 2010 09:31:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/writing_compensating_controls.html</guid>
		<content:encoded><![CDATA[	The PCI Guru has a nice reference on <a href="http://pciguru.wordpress.com/2010/09/02/writing-a-compensating-control/">writing compensating controls</a> for PCI requirements you "can't" meet. ]]></content:encoded>
</item>

<item>
		<title>Jeremiah Grossman: Our infrastructure -- Assessing Over 2,000 websites</title>
		<link>http://feedproxy.google.com/~r/JeremiahGrossman/~3/AoDao2mm-w4/our-infrastructure-assessing-over-2000.html</link>
		<pubDate>Fri, 03 Sep 2010 08:43:00 -0500</pubDate>
		<guid>http://feedproxy.google.com/~r/JeremiahGrossman/~3/AoDao2mm-w4/our-infrastructure-assessing-over-2000.html</guid>
		<content:encoded><![CDATA[	Recently I was asking a colleague how desktop black box web application vulnerability scanners, from a scalability perspective, approach scanning large numbers of websites (i.e. 100 to 500+) simultaneously. I was curious about the way they address the physical infrastructure requirements to support big enterprise deployments as compared to our own. Anyone with experience knows commercial desktop black box scanners can easily eat up several gigs of memory and disk space for even a single website. Nothing high-end workstations can’t handle, but multiplied out it’s an entirely different story. The person had an unexpected answer, “Desktop black box scanners don’t have the use-case you [WhiteHat] do, their technology doesn’t need to scale.” Say Whaaa!?!<br />
<br />
Asking for clarification he said consider how black box scanners are normally used in the field. They are “developer” or “pen-test” tools where the use-case is one person, one machine, one website, one configured scan, and then let it run for however many hour or days it takes until completion. Attempting to perform dozens or hundreds of scans at the same time would be exceedingly rare, if ever, so the capability to do so doesn’t need to exist. He said, “Who beside you guys [WhiteHat] needs to scan that many websites at a time?” To which I humbly replied, “the customer.”<br />
<br />
As we know new Web attack techniques are being published weekly and Web application code is change is rapidly (Agile). Web applications, even those that are old and unchanged, need to be tested often for these issues. Testing once a year, or even once a month, isn’t enough in an environment like the Web where daily attacks are normal. So if an enterprise has say 10 or more websites, to say nothing of those with hundreds or thousands, mass scanning is essential to get through them regularly. Burdening enterprises by having them wire scan nodes together with command and control systems to achieve scale is patently absurd. That's as an inefficient one-to-one model. 100 simultaneous scans = 100 scan boxes. Of course I’m sure they are happy to sell the hardware.<br />
<br />
<a href="http://1.bp.blogspot.com/_JdybrokZBAk/TIFiYMllYQI/AAAAAAAABxs/wpuI5Q3wdPo/s1600/look.png"><img src="http://1.bp.blogspot.com/_JdybrokZBAk/TIFiYMllYQI/AAAAAAAABxs/wpuI5Q3wdPo/s200/look.png" alt="" /></a>So yes I was a bit surprised that the desktop scanner guys haven’t seen fit to tackle the technology scaling problem, even though two of them are mega corps. They above all should know that scaling must be addressed if performing routine vulnerability assessments on all the Internet’s most important websites is to become a reality. To be fair, we’ve never pulled back the curtain to show off our own infrastructure. Maybe it’s time we did so because over the years we’ve invested heavily and it’s something we’re particularly proud of. I think others would be interested and impressed as well. The physical requirements for WhiteHat Sentinel, a SaaS-based website vulnerability management platform, are in a word -- massive.<br />
<br />
Operationally we’re assessing over 2,000 websites on a fairly routine basis (~weekly). A <a href="http://4.bp.blogspot.com/_JdybrokZBAk/TIFimdrDC9I/AAAAAAAABx0/_8nlPvbCJ2A/s1600/esx.png"><img src="http://4.bp.blogspot.com/_JdybrokZBAk/TIFimdrDC9I/AAAAAAAABx0/_8nlPvbCJ2A/s200/esx.png" alt="" /></a>dedicated IT staff is monitoring the systems for over 300 points of interest (utilization of network, cpu, memory, uptime, latency, etc.) ensuring everything is running smoothly 24x7. Metrics show at any moment 450 scans are running concurrently, generating about 300 million HTTP requests per month, and processing 90,000 potential vulnerabilities per day. We preserve a copy of every request sent and response received for audit, trending, tracking, and reporting purposes. This system itself is being access by over 350 different customers with tens of thousands of individual Sentinel users.<br />
<br />
<a href="http://2.bp.blogspot.com/_JdybrokZBAk/TIFi1VIJ8TI/AAAAAAAABx8/bBNv2O0h6b8/s1600/raid.png"><img src="http://2.bp.blogspot.com/_JdybrokZBAk/TIFi1VIJ8TI/AAAAAAAABx8/bBNv2O0h6b8/s200/raid.png" alt="" /></a>CPU and memory wise our ESX virtualization chassis allow us to control resource allocation and scale fast between multiple scanning instances and load balanced front-end &amp; back-end Web servers. As you can see from the pictures we have some serious storage requirements. Our clustered storage arrays have 250TB ready to go (additional capacity at a moments notice), writing about 500GB to disk per day, and connected by dual 10GB backplane ethernet connections. Sick!<br />
<br />
Oh, did I forgot to mention the two 100MB links to the Internet? <a href="http://1.bp.blogspot.com/_JdybrokZBAk/TIFjQjYfNmI/AAAAAAAAByE/gtxWSff2VEQ/s1600/san.png"><img src="http://1.bp.blogspot.com/_JdybrokZBAk/TIFjQjYfNmI/AAAAAAAAByE/gtxWSff2VEQ/s200/san.png" alt="" /></a>Also very important is that the infrastructure is fully redundant. Pull any network cable, push any power button, and the system keeps on humming. I left out the pictures of the backside of the cages, which is every bit as cool as the front, but there’s a lot of network cords, firewalls, routers and other stuff we’d prefer to keep to ourselves. :) If someone else claims to have a SaaS scanning platform I’m wondering if it looks anything remotely like ours.<br />
<br />
The data center where everything is housed is SAS70 Type II certified and state-of-the-art when<a href="http://3.bp.blogspot.com/_JdybrokZBAk/TIFiNM-LdoI/AAAAAAAABxk/zFRPm3UKD0k/s1600/mark.png"><img src="http://3.bp.blogspot.com/_JdybrokZBAk/TIFiNM-LdoI/AAAAAAAABxk/zFRPm3UKD0k/s200/mark.png" alt="" /></a> it comes to power, fire protection, cabling, construction, cooling, and physical security. Guards are on site 24/7/365, active patrols both inside and outside the facility, with 54 closed circuit video cameras covering the interior and exterior of building. To get access to our area requires an appointment, government issued ID, thumbprint, retina scan and only then do they hand over the key to our private space where only two people at WhiteHat have access. I’m not one of them. :) Compare this to the scanner on laptop sitting somewhere unguarded in the enterprise. Clearly we’re not a desktop scanner behind a curtain like others out there. We’re not playing around. We take this stuff extremely seriously.<br />
<br />
<a href="http://www.whitehatsec.com/">WhiteHat Security</a> is a leading provider of website security services.<br />
<img src='https://blogger.googleusercontent.com/tracker/13756280-7307213993960617763?l=jeremiahgrossman.blogspot.com' alt='' /> ]]></content:encoded>
</item>

<item>
		<title>deep inside | security &amp;amp; tools: WASC Threat Classification 2 - Wordle</title>
		<link>http://feedproxy.google.com/~r/DeepInsideSecurityTools/~3/Fiq072VEHHc/WASC-Threat-Classification-2-Wordle</link>
		<pubDate>Fri, 03 Sep 2010 07:55:00 -0500</pubDate>
		<guid>http://feedproxy.google.com/~r/DeepInsideSecurityTools/~3/Fiq072VEHHc/WASC-Threat-Classification-2-Wordle</guid>
		<content:encoded><![CDATA[	<p>
  I just dig that image out; I made it for the release of the <a href="http://projects.webappsec.org/Threat-Classification">WASC Threat Classification 2.0</a>
</p>
<p>
  <a href="http://rgaucher.info/pub/wasc_tc2_wordle.png"><img src="http://rgaucher.info/pub/wasc_tc2_wordle.png" alt="" /></a>
</p><a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?d=dnMXMwOfBR0" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:F7zBnMyn0Lo"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?i=Fiq072VEHHc:ixfBRUzG0_Q:F7zBnMyn0Lo" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:V_sGLiPBpWU"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?i=Fiq072VEHHc:ixfBRUzG0_Q:V_sGLiPBpWU" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:7Q72WNTAKBA"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?d=7Q72WNTAKBA" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:qj6IDK7rITs"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?d=qj6IDK7rITs" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:gIN9vFwOqvQ"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?i=Fiq072VEHHc:ixfBRUzG0_Q:gIN9vFwOqvQ" /></a> <a href="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?a=Fiq072VEHHc:ixfBRUzG0_Q:TzevzKxY174"><img alt="" src="http://feeds.feedburner.com/~ff/DeepInsideSecurityTools?d=TzevzKxY174" /></a> <img alt="" src="http://feeds.feedburner.com/~r/DeepInsideSecurityTools/~4/Fiq072VEHHc" /> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: UAE Man-in-the-Middle Attack Against SSL</title>
		<link>http://www.schneier.com/blog/archives/2010/09/uae_man-in-the-.html</link>
		<pubDate>Fri, 03 Sep 2010 06:27:05 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/uae_man-in-the-.html</guid>
		<content:encoded><![CDATA[	Interesting: Who are these certificate authorities? At the beginning of Web history, there were only a handful of companies, like Verisign, Equifax, and Thawte, that made near-monopoly profits from being the only providers trusted by Internet Explorer or Netscape Navigator. But over time, browsers have trusted more and more organizations to verify Web sites. Safari and Firefox now trust more... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=Hgwonpv2MHE:15QZjIcH5BI:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>terminal23: incomplete thoughts: dreamy aspects of a solid security posture</title>
		<link>http://www.terminal23.net/2010/09/dreamy_aspects_of_a_solid_secu.html</link>
		<pubDate>Thu, 02 Sep 2010 16:48:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/dreamy_aspects_of_a_solid_secu.html</guid>
		<content:encoded><![CDATA[	<b>This is another incomplete, but interesting post. Not sure why I started writing this , but I always like the dreamy feel of "best case scenario" types of descriptions. Like what is your dream job? What is your dream vacation? In this case, what is your dream security team posture? I've added a thought below in bold. I probably never released this since I likely have said these same items in other blog posts, comments on other blogs, over twitter, and in personal discussions, so it sounds a bit like a broken record to myself.</b><br />
<br />
<i>Simple steps to a strong security posture:<br />
<br />
- Staff. Don't skimp on quality security staff. The anchor of any security team is the skill, talent, and enthusiasm of the top players. It is ok to have some lesser-skilled players or interns. They help provide perspective, an ability to allow senior staff to mentor, be mentored, and possibly do the things that you'd hate to have a $100k staffer do every day like cruise logs or something. In addition, be liberal with their training opportunities, both on and off the books.<br />
<br />
- Operate the team as an advisory unit, a monitoring unit, and an active penetration team. Basically, don't just watch for breaches or react to things already done. Be an internal consultation team for developers, sysadmins, or others who would like or need more guidance on security issues. The team should also be able to and allowed to do planned and unplanned security audits and penetration tests against company assets. It's not just about implementing, tuning, and addressing trouble tickets about a host-based firewall on desktop systems, or auditing the systems through a central mgmt interface to ensure exceptions aren't being granted by non-security-minded desktop staff. It's about helping the business as a whole.<br />
<br />
- Be given autonomy and authority in the company to make recommendations, on par with a high-level consultancy. If a security team expects an application to be built securely and offers proper assistance and knowledge to the app team, they should expect to have their concerns addressed reasonably, rather than what often turns into a mgmt political battle or simply ignored demands. It needs oversight over the company assets and IT, really.<br />
<br />
<b>- The team should be given some level of operational power or control, especially over their own systems and test systems/networks. Security staff isn't just about installing endpoint software or watching logs or even consulting or pen-testing internally. They should be able to test and implement changes as needed without having to walk someone else through it or wait (politically and timely) for a real engineer to attend to their ticket. It is my opinion that quality security staff would also make quality operations staff (or quality management in general if that is their focus)...so give them that latitude. (They should also be held as accountable with availability mistakes as operations, when acting in that space.) Of course, this butts up against the problem of having too many hands in the cookie jar, for instance 6 people having access to update firewall rules. That's 5 extra ways of doing it that don't match your own philosophy!</b></i> ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete thoughts: 5 of my security pet peeves</title>
		<link>http://www.terminal23.net/2010/09/5_of_my_security_pet_peeves.html</link>
		<pubDate>Thu, 02 Sep 2010 15:21:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/5_of_my_security_pet_peeves.html</guid>
		<content:encoded><![CDATA[	<b>This is my getting rid of some incomplete thoughts sitting around in my unpublished bucket. This post could be 3 years old or it could be 3 weeks old, I'm not sure. Peeve #4 is a bit of a reality, and I'm not sure I would today include that in here if I rewrote this today. The ending example goes nowhere, and #5 isn't finished. Either way, just getting this off my chest and published.</b><br />
<br />
<i>5 of my IT security pet peeves. Notice that these are not necessarily technical issues. I don't feel like our biggest challenges are technical in nature. And while I might call these pet peeves, they don't necessarily frustrate me nearly as much as most of my driving pet peeves.<br />
<br />
1. No Big Box Tool beats a good admin, but we're obsessed with the Big Box Tools. I'm not a big fan of all-in-one-boxes or UTM or centralized SOC-in-a-BOX. On one hand, I really like the power that tools have been getting in terms of analyzing and collecting data in one place. Sadly, I don't think any single box performs better than other smaller tools being used wisely by a crafty admin to achieve the same goals. There is a certain watering down (each piece is lower quality compared to specialized tools) and dumbing down (take the analyst away from the guts long enough and he'll only know how to work the GUI and not dig deeper manually) and feature-bloat (try to pack every option that 10,000 companies will use but no company uses half of them at once) to big boxes that simply cost in terms of quality. The real key here is whether you have a crafty admin with the time necessary to wisely wield those surgical tools. Instead, we too often take the quality hit to save some money...<br />
<br />
2. Not enough time. In our American culture, we have this obsession with milking productivity from our workers. We demonize leisure time, personal time, even vacations; maybe not openly, but we insinuate that anything less than 100% is bad. This trickles down into IT staff who have little free time to improve their situation beyond rushing from one fire to the next, or one project to the next. You know you're in this situation if you're doing task A, notice that issue X is occuring just because you happen to see it, but know you won't ever get to it and so just leave it. Security cannot be improved when time is booked. Either you don't have the time to properly tune tools, investigate alerts (we've all had days where 1 alert takes 1 hour and days where 1000 alerts takes 5 minutes), do simple audits to verify security, or keep on top of current news. Let alone the mistakes that will be made due to the pressured time-boxing... You want to improve security? Improve the time your staff has to find and make enhancements. Anything else just means everyone relies on the audits and only does what is prescribed at the time. (This also means your staff needs to be enthused about security, and not just use their extra time to surf YouTube. If you don't have enthused staff, then replace this item with : People who don't hire enthused staff!)<br />
<br />
3. Too many people still believe ignorance (or ignoring it) is an effective security strategy. I'm borrowing this straight from the article I just posted about earlier, because I think it is an epidemic (pandemic) problem. That noise coming from your engine? Yeah, it'll go away, right? It wouldn't happen to us! I think ignorance and human habits of ignoring problems is a real issue. I understand that some risks are accepted and not every problem absolutely needs resources pushed at it to solve it, but collectively we're sucking with even the basics of digital security. (I think most organizations scope-limit their auditors from half the stuff that is wrong.)<br />
<br />
4. Convenience trumps security, or, security is never as easy as it sounds. There are a few tasks that sound easy but illustrate exactly how time-consuming really managing security is: data classification company-wide, account oversight and review, file server permissions audits, knowing exactly what data is where (yay laptops!), log reviews, and change management. Convenience trumping security is a more appropriate way of saying functionality over security.<br />
<br />
5. We want security now, for free, and to last for years without further inputs. How many PCI projects have we collectively seen that have deadlines? And after that deadline, PCI (or security) is considered done and the consultants/contractors let go). That's a win for sure!<br />
<br />
Just to juxtapose a few items from above, here is one scenario. You have a not-very-technically-proficient security admin in your company. He's not given the most access, probably not enough to do this job effectively. He doesn't have the ability to implement proper NSM without the techs making his requests bottom-of-the-barrel priority. In fact, he doesn't have much more than the ability to get an All-In-One-Security-Box. Likewise, said security box doesn't give him much data for an alert. Oh, and by the way, he's an important admin who talks with execs every few weeks with some certs under his belt, so he feels he gets paid more than someone who does the grunge work like reviewing logs, accounts, or testing those firewall changes. So no one really checks that stuff. When audited, the admin knows just enough to give the auditor enough for a report, keep him away from the things he knows suck, but not enough to allow the auditor to expose underlying issues.</i> ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete: a better representation of risk and compliance</title>
		<link>http://www.terminal23.net/2010/09/a_better_representation_of_ris.html</link>
		<pubDate>Thu, 02 Sep 2010 15:08:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/a_better_representation_of_ris.html</guid>
		<content:encoded><![CDATA[	<b>I really don't know where the fuck this post came from or where I was going with it. It offers nothing, but the picture links are fun! Took me a bit on the wildebeest one to realize I was trying to say "just another beest in the herd" with the "middle" pic. To my sensitive readers (really, there are sensitive security geeks?), skip the seal pic.</b><br />
<br />
<i>1. Too many words in PowerPoint presentations are bad. More creativity, more pictures, more visualization. Less words, less boring.<br />
<br />
2. We also have this need to give quick representations of our risk or compliancy to management, often in the form of scores or grades.<br />
<br />
I think these ideas should be combined "mashed up." Screw the grading scale of A, B, C, and the levels like high, medium, low.<br />
<br />
Imagine: You walk into the board room with several managers and execs. They get around to asking you how the company looks as far as compliance to PCI and/or your desired security level. You stand, flip open your notebook, and pull out a card the displays this picture:<br />
<br />
<a href="http://msnbcmedia3.msn.com/j/msnbc/Components/Photos/040414/040414_seal_hunt_vlrg_7a.widec.jpg">[msnbcmedia3.msn.com]</a><br />
<br />
I don't have to give details, I think it speaks for itself: STATUS BAD!<br />
<br />
Here are some more examples of compliance status levels.<br />
<br />
Bad: <a href="http://wwwdelivery.superstock.com/WI/223/1370/PreviewComp/SuperStock_1370-590.jpg">[wwwdelivery.superstock.com]</a><br />
<br />
Middle: <a href="http://www.african-parks.org/apffoundation/images/stories/liuwa/wildebeest_water-website.jpg">[www.african-parks.org]</a><br />
<br />
good: <a href="http://farm2.static.flickr.com/1170/1100421015_e019967c81.jpg?v=0">[farm2.static.flickr.com]</a><br />
<br />
<a href="http://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Alligator_snapping_turtle.jpg/800px-Alligator_snapping_turtle.jpg">[upload.wikimedia.org]</a></i> ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete: shmoocon podcaster's meetup interesting topics</title>
		<link>http://www.terminal23.net/2010/09/shmoocon_podcasters_meetup_int.html</link>
		<pubDate>Thu, 02 Sep 2010 14:59:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/shmoocon_podcasters_meetup_int.html</guid>
		<content:encoded><![CDATA[	<b>I wrote this months ago but I guess I forgot to publish it. Maybe I wanted to proof it more? Who knows, but here it is. Any non-bullet points that are bolded were added by me just now.</b><br />
<br />
<i>The mess that was the <a href="http://www.podcastalley.com/podcast_details.php?pod_id=56876&amp;allEpisodes=">2010 Shmoocon podcaster's meet-up audio</a> is available. I totally could use not hearing Paul "shhh" on a mic ever again! The talking was pretty crazy and all over the place, even disrespectful (hey beer was involved so it's forgivable), but I feel like they did touch on some extremely important questions. Questions I'd love to hear them discuss again in a more refined situation (arguably, a podcaster's meetup is more party than panel, however!)<br />
<br />
There are no correct answers to these topics! That is probably why opinions in these discussions can be very passionate and even violent! Sometimes in certain properly bounded contexts, there are correct answers, but mostly not.<br />
<br />
(Late update: Personally, the more I listen to Chris Nickerson, the more I appreciate his frank opinions and where he has his head. It's in the right place, and while I know he can have an acerbic sense of humor to some people, he's increasingly one of those voices worth listening to if he tells you something.)<br />
<br />
<b>1. exploit vs not exploit</b> - I'm not sure this topic was given its fair due, but I'm not sure everyone was on the same page in the discussion anyway. <a href="http://www.andyitguy.com/blog/?p=873">Andy Willingham</a> gave this the once-over already in a blog post. The topic brings up good questions on what you do on a test and what is actually meaningful. <b>I notice I didn't really weigh in on this topic, and honestly the view from the fence is fine for me and probably reflects both my security and operations sides.</b><br />
<br />
<b>2. SMB vs large enterprise</b> - There is a big gap that is hopefully becoming less the elephant in the corner and more one of the usual voices in the conversation. The world of the SMB in security is dramatically different from that of an enterprise or a city-state-nation. Approaches that work for large enterprises can be ridiculous for SMBs, and vice-versa. I think it matters that this came up multiple times. <b>This still needs to come up, and the topic deserves a month of posts in itself.</b></i><br />
<br />
<b>3. properly presenting findings/recommends to a business</b> - I'm finding it hard to word this topic, but it really runs the gamut of how you present security to an organization. And this digs at a very sensitive topic: security aligning to the business. I sympathize with all sides to this discussion. You could give the security teams and CSO their highly technical reports and let them distill it down to what is relevent. Or you could align yourself with the business and report your findings directly to someone like the CEO, in the CEO's terms. Honestly, maybe pen-test teams need to have both capabilities and have that project manager/lead who is the one that acts as a temporary CSO in the absence of one. This is a great topic, by the way, and I think really demonstrates the art and the versatility today's security experts need to have; both the technical chops and the strategic chops and the ability to know when to use each.<br />
<br />
<b>4. "good enough security"</b> - I think it was Mick from Pauldotcom that brought this up, and it didn't get enough treatment, although I think this is also just as passionately divisive a topic as any. When you accept that there is no ultimately "secure" state, or there is no "win" in security, then you really do subscribe to some form of "good enough security." Where that proper line is drawn is really the art of risk management, and that line is probably far lower for SMBs than large enterprises. Security pros these days have to be able to get into the mode where it's not just about violently defending every little insecurity, but about recognizing each issue as part of the whole. Bad password policy? Fix it!! Outdated SSLv2 cipher on an internal app that is 5 years old used by one team? Consider letting it slide. (Side note: This is where lack of real security chops can bite many people in the ass. It is inevitable that non-tech people will look at issues presented and demand fixes for each one, even the "low" priotity ones. This creates wasted effort and inefficiency...and so on.)<br />
<br />
<b>5. privacy differences between europe and the us</b> - I thought this was an excellent question by Nickerson to spark some conversation on a topic I hadn't really dwelled on before. Because Europe has a different emphasis on privacy for people, they have an entirely different mindset in regards to security in organizations. Not saying it's all good, but the difference can be useful.<br />
<br />
<b>6. listening to internal security experts vs paying someone outside the company to say the same damn thing</b> - Good point on this topic, and I think every penetration tester or consultant or third party needs to not just work to align with the business and talk in a way the CxO understands, but also empower and support those internal persons who make security happen. Recognize and empower (and not undermine!) the talented security folks out there. Build networks, exchange advice, encourage; don't have an antagonistic relationship with them, plop down some mysterious report on a CxO's desk, then walk away briskly. Try to change the way the CxO views her internal support staff so that we can Get Shit Done. But yes, it really, really sucks when a CxO pays top dollar to get a report that says the exact same thing I may have been saying for years.<br />
<br />
If there's any topic I'd love to have brought up because it fits with this motley crew of passionate voices, I'd have asked opinions on <b>MSSPs vs internal staff</b>, both for large enterprises but also SMBs. ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete: fundamental cultural changes caused by the internet</title>
		<link>http://www.terminal23.net/2010/09/fundamental_cultural_changes_c.html</link>
		<pubDate>Thu, 02 Sep 2010 14:50:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/fundamental_cultural_changes_c.html</guid>
		<content:encoded><![CDATA[	<b>I'm sure there are plenty, PLENTY, of other essays by far smarter people than me in this topic, so rather than let this languish in the "polish this up" bucket, I'll throw it out as is because I know I'll never truly ever finish this. Still, this actually reads fairly decently for a 30-minute stream-of-consciousness bit. Oh, and I know it's not ten!</b><br />
<br />
Ten Ways Internet/Computers have changed our culture deeply.<br />
<br />
- I barely know what a phone book is anymore, if I want to find a location or phone number for a business or category of business that I need to visit, I'll search for it on the web. This is a culmination of easy, extensive searching and ubiquitous web presence. Phone book? Ok, I've used it to find a mechanic on a Sunday...<br />
<br />
- Dispelling irrational answers to questions - Back when I was a kid, you had four places to gleen information, in general: media, teachers, parents, public library. Media would have included newspapers, magazines, radio, and television. All of these meant effort and a certain expectation of trust. The web still requires trust, but I can much more quickly find corraborating stories and information and weed out the misinformation. While the web may not give accurate information all the time, it at least gives me a better chance of self-serving accurate information.<br />
<br />
- I'm more in control of my time. While the Internet seems to suck time away with an infinite number of things to do and see, it does let me bring back time control into my life. Rather than wait for 30 minutes in the evening news to see the sports scores or tomorrow's weather, I can get it immediately online. I can skip the things I don't care about, and read more of what I do care about. I can shop and order products online, research and compare.<br />
<br />
- I'm more in control of my tastes and interests. In my youth, I was only exposed to whatever was near at hand, for the most part. Musically, I only experienced what was available on the radio, television, or through friends, all of which precluded most anything that was not pop-oriented. With such portable media and access to anything I want, I can expand my boundaries and listen to musical media that I never, ever will hear on the radio in the central United States. As a kid, if I wanted to figure out the solutions to a particular video game, I had to wait for it to be released in book form, in a magazine, or advice from friends in my neighborhood. My neighborhood for interests is now limitless, and I don't have to leave a game unsolved.<br />
<br />
- My social network has grown. As a child, I had a finite number of people I knew and could spend time with, all of which had to be in close proximity to me, unless I picked up a pen pal. Today, I can get first hand information about life in China through knowing people either in chats or other social networks, or through their blogs and stories.<br />
<br />
- My idea of a job has dramatically changed. I can't actually imagine what I would do for work without the computerization revolution. I have not experience office work without automation or computers or digital information. I'm not that removed from such an archaic workplace, but it certainly seems a world away.<br />
<br />
- I am a much more informed and well-supplied consumer. Rather than rely on a magazine, friends, or in-store help, I can self-serve online research on what products are good and which ones to avoid. Hell, I can also buy things online without getting up off my ass, either from storefronts or auction sites. In fact, not only can I research online, but if I want specific item ABCD, I don't have to hunt my city for it and maybe walk away empty-handed. I pretty much *will* find it online, somewhere. ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete: leveling up your security career wow-style</title>
		<link>http://www.terminal23.net/2010/09/leveling_up_your_security_care.html</link>
		<pubDate>Thu, 02 Sep 2010 14:43:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/leveling_up_your_security_care.html</guid>
		<content:encoded><![CDATA[	This is an incomplete thought I first jotted down a while back, but never fleshed out into some more coherent. I liked the thought though, and wanted to just release as is and get it off my "unpublished" list! I was reminded of this post by <a href="http://securosis.com/blog/incite-9-1-2010-battle-of-the-bandz">Rothman's recent Securosis blurb about practice (way at the bottom)</a>. Thoughts added just now are in <b>bold</b>. Keep in mind this is incomplete, unedited, and unpolished. I ramble and mix things and even repeat things with wild abandon! Oh, and even now as I play some Starcraft 2 and get my ass repeatedly stomped in Platinum 1v1, I know that I can read and practice against the AI and read some more, but nothing will replace actual experience in going into another game and getting stomped and learning the hard way.<br />
<br />
<i>I've not made it a secret that I've been an avid World of Warcraft (WoW) gamer for years. I definitely don't play as obsessively as I used to (for those in the know, I 'hardcore' raided MC, BWL, AQ40, and even some of Naxx40, then skipped ahead after a break to 'softcore' raid Hyjal and BT pre-nerfs; since then I've done a couple naxx25 clears and that's it beyond 5m heroics and casual leveling), but even my casual playing sparks some interesting thoughts now and then, especially when it comes to "leveling up."<br />
<br />
In WoW, and really any other RPG game, there are a few key tenets to making the most of your effort. Surprisingly, these tenets can match exactly across to real life endeavors. And every time I put forth some effort to improve one of these tenets in WoW (leveling up a toon, making some gold...), I'm reminded of the opportunity cost of putting that effort into something more tangible like my security career. (Don't get me wrong; I'm a lifelong video game hobbyist, and I'm not saying video games are useless, but it shouldn't dominate one's time, just like any other hobby pursued in leisure time!)<br />
<br />
So if you find yourself stuck in an MMORPG gaming rut, start looking to translate that effort over to something useful in security. This may start with asking yourself what it is about gaming that is relaxing, and why security does not bring that same relaxation. If it relaxes, stimulates, and makes you happy, then your free time will be spent in it just as casually as a 4-hour trip into WoW.<br />
<br />
1. Knowing your class. <b>From here I was going to go into knowing your skills, strengths, and weaknesses. In WoW, a warrior class doesn't try to heal, and translate that into security skills and roles...somehow.</b><br />
<br />
2. Grinding (aka leveling up). This is pretty basic to any role-playing game: your character gets stronger the more experience he gets, aka "leveling up." In gaming, "exerience" is usually a value, even if it is hidden behind the scenes, which accrues as you fight and kill monsters. As your experience increases, you gain more power, and can tackle more powerful monsters, which will gain you experience...and so the hamster wheel begins to turn. A more physical version of this is lifting weights and slowly increasing your limits as your muscles and supporting structure build and grow.<br />
<br />
Sometimes this is a "grind." "Grinding" in WoW means the slow cycle of killing monsters and doing the same ol' quests to gain your experience; basically it becomes a long, boring grind...kinda like work!<br />
<br />
Growth in a security career comes much the same way; the more experience you have, the better you are able to handle the challenges in front of you. Often, this is gained by simply doing security-related things. The more nmap port scans you run, the better you are able to tackle complex scans. The more you use Metasploit to expand your empire, the more you can dig into the lesser-known components of the tool and not get bogged down on strange gotchas. The more PCI audits you do and reports you make, the better and quicker you get with them, and the more value you can provide efficiently to your client.<br />
<br />
We often don't have an end goal in sight, but rather know that we simply want to level up.<br />
<br />
3. Leveling up tradeskills. WoW has what are called "tradeskills." These are skills you build up by doing that activity. For instance, Fishing and Blacksmithing are two tradeskills. You can fish better and do blacksmithing activities better by, well, doing them in the first place. For something like blacksmithing, the higher your skill, the better your opportunity to make really cool and valuable things.<br />
<br />
In other words, if you want to be good and useful at something specific, you have to practice it and get better, especially when it comes to various skills you want to acquire. Unlike leveling up, most often this begins with an end goal in mind, for instance, being able to use a particular skill to create/do XYZ which will gain you money or notoriety.<br />
<br />
You want to be good at public speaking? You have to do some public speaking. You want to be good at coding exploits? You have to code some exploits. You want to be good at picking locks? Obviously, you have to pick some locks. (Nicely, WoW has a lockpicking skill you can build!)<br />
<br />
And just like starting out your skills at a puny level in WoW, you usually start small. You do some low-key public speaking. You walk-through an exploit tutorial. You pick training locks.<br />
<br />
So if you want to be known as being good at some tools or aspect of security, you gotta practice it and build up your skill. This isn't so much a part of your character and confidence like leveling up your character, but more like being good with the tools you have and want.<br />
<br />
In WoW, you can leverage these grown "tradeskills" to make in-game money so you can buy cooler gear and weapons. In real life, well, these skills will get your nice REAL things.<br />
<br />
3. Gearing up. In WoW, your character's success relies more on just his level (aka amount of experience earned). Success, especially as you get further into the game, resides very much in the gear and equipment you've acquired for your character. You won't be very successful with a low level sword, but if you find a badass high level sword which you can use, you'll be nicely ready to do some damage to the next red slime that oozes your way. Gearing up means a few things. First, giving yourself a chance to get/buy/find the gear. Second, knowing what gear is useful to you.<br />
<br />
Security careers have the same dilemma. Some tools are going to be useful to you, but some will not.<br />
<br />
Strangely, WoW doesn't have unlimited inventory space for you to keep 1000 pieces of gear. In life, you really don't have the aptitude and time to likewise hold onto and learn 1000 tools. Figure out what you need to improve, and pursue the tools that will help you succeed in your goals.<br />
<br />
WoW players can put a ton of time into picking out, pursuing, and testing out their gear.<br />
<br />
Oh, and don't forget that you can get a bit literal with "gearing up." A nice pair of slacks and a tie can increase your chances of getting what you need out of management, at times.<br />
<br />
4. Socialization. The "MMO" part of the MMORPG genre means "massively multiplayer online," meaning you're playing with lots of other actual people around you. You can spend your time in a game like WoW and neven bother with anyone else, but you'll only be able to learn on your own only so far, and you certainly cannot see most of the end-game content and challenges unless you socialize to some degree. Most often to experience end-game content, you have to join a guild (a group of players, much like a team) and start participating in group runs through tougher dungeons.<br />
<br />
Obviously, careers are the same way. You can probably get by on your own for quite some time, but there will be many doors you simply can't open or even get near without socializing with others in the career. Whether that is simply networking to find new opportunities, gaining contacts you can turn to when you need assistance, or finding smart people from whom you can learn new skills and knowledge. Better yet, this also means socializing with people more "newb" than you are; which gives you a chance to reinforce your own knowledge by regurgitating it to others to help them.<br />
<br /></i> ]]></content:encoded>
</item>
<item>
		<title>terminal23: incomplete thoughts: really changing the game?</title>
		<link>http://www.terminal23.net/2010/09/really_changing_the_game.html</link>
		<pubDate>Thu, 02 Sep 2010 14:15:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/really_changing_the_game.html</guid>
		<content:encoded><![CDATA[	This is an incomplete post that I never published and don't see myself truly completing. And rather than keep it in my list of nagging unpublished things, I thought I'd release it to the wild that is the blogs.<br />
<br />
First, go read Rocky's piece over at fudsec <a href="http://fudsec.com/liberate-yourself-change-the-game-to-suit-you">on changing the game</a>. Then read <a href="http://securosis.com/blog/changing-the-game/">Mortman's response over at Securosis</a>. Those two links started whatever thoughts I had below...I think some are points the authors were making, and others are my own responses...but I don't recall. Any current thoughts I'll <b>bold</b>.<br />
<br />
<i>This quick, dirty synopsis is for my own benefit to better dissect the point of the article, and also demonstrate what I took away, in chunks.<br />
<br />
1. The Information Domain is manmade, and it is a domain where we can change the landscape, not be bound to changing for it.<br />
<br />
2. We're short-sighted, rather than long-sighted. We tackle immediate hurdles rather than perform city-planning.<br />
<br />
3. Need to change from short-term fixes to long-term strategy.<br />
<br />
4. 3 ways: leadership, research, information sharing.<br />
<br />
5.Leadership: No one is jumping to save us. We need to lead the way.<br />
<br />
6. "[Businesses] need to care much less about being compliant and more about being fundamentally secure - or if you prefer having better visibility into real risk [to the business, not necessarily to an asset]."<br />
<br />
7. Too much of what we measure is point-in-time.<br />
<br />
8. As infosec pros we have let compliance initiatives drive spending and have ridden along for the ride.<br />
<br />
9. We lack the knowledge of the business and how to apply what we do in a meaningful way to the business. <b>I still find this an arguable point. In some cases, the business needs to understand IT (and security) more to better understand business continuity... Nonetheless, this is usually the weakest point in topics like this, not because it is not true, but because it is arguable and situational. Can we always convince business to treat security more aligned with the business or part of the core business line? No. How often are we satisfied that security is good and top notch? Not often, if ever.</b><br />
<br />
10. Vendors fall into the hole of non-innovative solutions that are just meeting our needs, without pushing forward. Vendors ned to be thought-leaders. In turn, vendors need to listen to their customers and deduce their actual needs. Consultants need to listen better. <b>Vendors are in the same boat as internal security experts: trying to sell the idea. It would be far easier to be thought-leaders if security weren't already perceived as dragging ont he heels of innovation and itself being drug into the boardrooms by breaches/regulations. Huge point about consultants!!! Need to listen better and the industry needs to ditch or teach the charlatans.</b><br />
<br />
11. Get past the "way its been done."<br />
<br />
12. Research. We need to support research. Research should be revolutionary, not evolutionary.<br />
<br />
13. Information Sharing. Collaborate with industry competitors.<br />
<br />
<b>At this point my notes ended.</b></i> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Successful Attack Against a Quantum Cryptography System</title>
		<link>http://www.schneier.com/blog/archives/2010/09/successful_atta.html</link>
		<pubDate>Thu, 02 Sep 2010 13:46:00 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/successful_atta.html</guid>
		<content:encoded><![CDATA[	Clever: Quantum cryptography is often touted as being perfectly secure. It is based on the principle that you cannot make measurements of a quantum system without disturbing it. So, in theory, it is impossible for an eavesdropper to intercept a quantum encryption key without disrupting it in a noticeable way, triggering alarm bells. Vadim Makarov at the Norwegian University of... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=CgDzJKTNqjQ:OlaffV_fMDM:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>terminal23: thoughts on the 2010 verizon dbir</title>
		<link>http://www.terminal23.net/2010/09/thoughts_on_the_2010_verizon_d.html</link>
		<pubDate>Thu, 02 Sep 2010 12:19:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/thoughts_on_the_2010_verizon_d.html</guid>
		<content:encoded><![CDATA[	Over a month ago, the <a href="http://securityblog.verizonbusiness.com/2010/07/28/2010-dbir-released/">2010 Verizon DBIR</a> was released. I'm still reading through it, but wanted to point out a low and a high point on the report. The low point (and by low, I'm not saying a horrible point, but rather just the lowest point in an already excellent and needed report!) of the report is including a significant amount of US Secret Service data. While this may prove over the years to be a very good inclusion, for now the USSS data obviously influences the percentages and totals. Of course, Verizon's data set itself may have influences...so maybe the answer is to get more and more contributors and USSS is just the first.<br />
<br />
Now, the USSS dataset influence is addressed many times in the DBIR itself. Which actually brings up the high point: the presentation. I love the way this report is worded, almost conversationally. They are candid with the data, point out conclusions, and even fuzzy places where you should maybe take the resultant data with a grain of salt due to whatever reasons. I totally appreciate that! In past years, I could make some inferences from the data that were not covered in the text, but I feel like this year the authors did a great job of analyzing and conversing about the data. I don't actually feel like I can or need to infer my own conclusions. (Granted, you have to read the text to get that point, as the figures/graphs themselves can be misconstrued when out of context, in some cases.)<br />
<br />
Also, the cover has a <a href="http://securityblog.verizonbusiness.com/2010/08/11/dbir-cover-challenge-clues/">hidden message</a> again, this year. This continues to lend "geek cred" to this report, along with the conversationally honest writing. ]]></content:encoded>
</item>

<item>
		<title>Security Vulnerability Research &amp;amp; Defense: The Enhanced Mitigation Experience Toolkit 2.0 is Now Available</title>
		<link>http://blogs.technet.com/b/srd/archive/2010/09/02/enhanced-mitigation-experience-toolkit-emet-v2-0-0.aspx</link>
		<pubDate>Thu, 02 Sep 2010 12:00:00 -0500</pubDate>
		<guid>http://blogs.technet.com/b/srd/archive/2010/09/02/enhanced-mitigation-experience-toolkit-emet-v2-0-0.aspx</guid>
		<content:encoded><![CDATA[	<p>
  Today we are pleased to announce the availability of the Enhanced Mitigation Experience Toolkit (EMET) version 2.0.&nbsp; Users can <a href="http://go.microsoft.com/fwlink/?LinkID=200220&amp;clcid=0x409">click here to download the tool</a> free of charge.&nbsp;
</p>
<p>
  &nbsp;&nbsp;
</p>
<p>
  For those who may be unfamiliar with the tool, EMET provides users with the ability to deploy security mitigation technologies to arbitrary applications. &nbsp;This helps prevent vulnerabilities in those applications (especially line of business and 3rd party apps) from successfully being exploited. &nbsp;By deploying these mitigation technologies on legacy products, the tool can also help customers manage risk while they are in the process of transitioning over to modern, more secure products.&nbsp; In addition, it makes it easy for customers to test mitigations against any software and provide feedback on their experience to the vendor.
</p>
<p>
  &nbsp;
</p>
<p>
  Below is a screenshot of the tool, which features a brand new interface as part of this release.
</p>
<p>
  &nbsp;
</p>
<p>
  <a href="http://blogs.technet.com/cfs-filesystemfile.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/1803.EMT-v2-GUI.png"><img alt="" src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/8080.EMETv2.png" /></a>
</p>
<p>
  &nbsp;
</p>
<p>
  The installation package for EMET v2.0 includes a detailed user guide.&nbsp; A copy can also be found at the bottom of this post.&nbsp; It gives an overview of the tool, instructions on how to use it, answers to frequently asked questions, and caveats about the mitigations that users should be aware of.&nbsp; Please be sure to read the guide before using the tool.
</p>
<p>
  &nbsp;
</p>
<p>
  Additionally, the <a href="http://technet.microsoft.com/en-us/security/cc261637.aspx">BlueHat</a> team has helped us put together a training video on EMET v2.0.&nbsp; The video gives an even more in-depth look at some of the security mitigations offered by the tool.&nbsp; You can <a href="http://technet.microsoft.com/en-us/security/ff859539.aspx">watch the video online here</a>.
</p>
<p>
  &nbsp;
</p>
<p>
  To get more information on how this FREE tool can help you take advantage of the protections it offers please refer to our <a href="http://blogs.technet.com/b/srd/archive/2010/07/28/announcing-the-upcoming-release-of-emet-v2.aspx">previous blog post</a> announcing the upcoming release.&nbsp; That post also gives a rundown of all the changes that are new with the 2.0 version.
</p>
<p>
  &nbsp;
</p>
<p>
  As always, we welcome your feedback and would like to hear more about your experiences with EMET.&nbsp; Please feel free to e-mail us at <a href="mailto:switech@microsoft.com">switech@microsoft.com</a>
</p>
<p>
  &nbsp;
</p>
<p>
  - Andrew Roths and Fermin J. Serna
</p><img alt="" src="http://blogs.technet.com/aggbug.aspx?PostID=3350378" /> ]]></content:encoded>
</item>

<item>
		<title>terminal23: housekeeping - decompression</title>
		<link>http://www.terminal23.net/2010/09/housekeeping_decompression.html</link>
		<pubDate>Thu, 02 Sep 2010 11:21:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/housekeeping_decompression.html</guid>
		<content:encoded><![CDATA[	I apologize if you've submitted any recent comments. I've been swamped the past few months with work, and my free time has been spent decompressing with things like beer, pocasts, hookers, StarCraft 2, and so on. I just dumped about 10k comments which I quickly skimmed through, so I'm sure I dumped some legitimate ones on accident.<br />
<br />
Keeping up on the latest security happenings, comments being submitted, and my own postings has been spotty at best. Things are looking to settle down just a little bit here, so hopefully I can get my own news-reading caught up as well. My RSS feeds are utterly out of control! ]]></content:encoded>
</item>
<item>
		<title>terminal23: kidney punches from the windows dll hijacking vuln</title>
		<link>http://www.terminal23.net/2010/09/kidney_punches_from_the_window.html</link>
		<pubDate>Thu, 02 Sep 2010 11:01:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/kidney_punches_from_the_window.html</guid>
		<content:encoded><![CDATA[	There's been a surprising amount of discussion about the recent Windows DLL hijacking vulnerability, often focusing on whether this is a Big Deal or something stupid. I won't bother linking to anything or even joining in any further except to expound on <a href="http://www.terminal23.net/2010/08/the_wide_impact_of_windows_dll.html">my post earlier</a>.<br />
<br />
The DLL hijacking is interesting because, well...it's like walking up to someone you have no reason to mistrust. You shake his hand, but while you do so, someone (maybe his evil twin who was following him) wings a hook beyond your peripheral vision and WHAM! kidney punch. Now, good twin had no idea evil twin was around, and was sincere in his greeting and handshake. But you left yourself open by shaking that hand, and evil twin dropped you to a knee for it.<br />
<br />
We can often curse ourselves for shaking hands with the app/guy/file that throws the hook. You run an exe and that's your problem. You run a streamed media file with malicious code, and that's still mostly your problem (and partly the fault of the vulnerable app you used to open it). But in this case, you could open a completely innocent file, and get kidney punched.<br />
<br />
That's the important gist of the hijacking vuln, to me. That and the importance this places on patching 3rd-party Windows apps that are vulnerable to this method. ]]></content:encoded>
</item>

<item>
		<title>Justice League: Remediation – The Game</title>
		<link>http://www.cigital.com/justiceleague/2010/09/02/remediation-the-game/</link>
		<pubDate>Thu, 02 Sep 2010 09:50:48 -0500</pubDate>
		<guid>http://www.cigital.com/justiceleague/2010/09/02/remediation-the-game/</guid>
		<content:encoded><![CDATA[	<p>
  <em>(This is a guest post, contributed by Timothy Champagne, a consultant at Cigital.)</em>
</p>
<p>
  I have long been a fan of card games. During lunch breaks at work, my co-workers and I would often play such games to pass the time and socialize. I found myself thinking that this activity could not be unique to my office; countless others out there undoubtedly have similar routines. It occurred to me that there must be a way to harness this social gathering at work and turn it into a fun learning experience built around what I know best – software assurance and software security. After all, if people are going to play a card game, why not play one that can help ingrain the very ideas that Cigital has been trying to expound on for over a decade?
</p>
<p>
  <img src="http://www.cigital.com/images/remediation.gif" alt="Remediation" />So I began designing Remediation, a card game that pits web application companies focused on generating revenue against the threat of malicious users focused on negatively impacting that revenue for their own nefarious motives. This is the very scenario that we encounter at Cigital on a regular basis and a theme that can easily transcend the commercial world and find relevance within the Federal space… an area of particular interest to me due to my work with the <a href="http://www.cigital.com/news/index.php?pg=art&amp;artid=169">Application Software Assurance Center of Excellence (ASACoE)</a> for the US Air Force.
</p>
<p>
  Remediation has players compete to end up with the highest score while playing through real life software security scenarios. While taking on the role of either a company or a malicious user, the players take turns with the ultimate goal of playing the most revenue cards. The malicious users attack the company players with exploit cards, a <a href="http://www.owasp.org/index.php/SQL_Injection">SQL Injection</a> attack for example, and score points in the form of revenue that the company loses by having their web application taken offline. The company players will then play cards, like a Database Restore, to recover from these attacks so their web applications return online and generate revenue for their own scores. Additionally, the company players can choose to spend some of that gained revenue to play cards that represent an investment into advanced security techniques that can prevent specific attacks against their applications, such as the game’s namesake, a Vulnerability Remediation card. At its heart, Remediation conceptualizes how various exploits could affect a web application and what measures would need to be taken in order to recover from these situations.
</p>
<p>
  With its focus on software security themed gameplay, one of the primary goals for Remediation is for it to be useful as an educational tool. In today’s increasingly web-centric environment, it is more important than ever for developers to be able to think like an attacker and stay one step ahead of the threats that plague web applications every day; this game is designed to instill that mindset by presenting specific examples of how an attacker might target a system. As for managers, it is absolutely vital to understand how these risks might affect the successful conduction of business; the game works on this level by not only showing how these types of attacks can harm a company, but also how <a href="http://www.cigital.com/services/">Cigital’s service offerings</a> can help protect against these threats. By mirroring real life situations, Remediation strives to impart crucial skills that will help improve the players’ real world security posture outside the game.
</p>
<p>
  Of course an additional goal would be to have a fun game with replay value so that the game could have a life of its own and introduce future players down the road to software security and how Cigital fits into this picture. Email us at <a href="mailto:remediationthegame@cigital.com">remediationthegame@cigital.com</a> if you’re interested in getting a copy of the game for yourself.
</p> ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Cyber-Offence is the New Cyber-Defense</title>
		<link>http://www.schneier.com/blog/archives/2010/09/cyber-offence_i.html</link>
		<pubDate>Thu, 02 Sep 2010 07:33:08 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/cyber-offence_i.html</guid>
		<content:encoded><![CDATA[	This is beyond stupid: The Pentagon is contemplating an aggressive approach to defending its computer systems that includes preemptive actions such as knocking out parts of an adversary's computer network overseas—but it is still wrestling with how to pursue the strategy legally. The department is developing a range of weapons capabilities, including tools that would allow "attack and exploitation of... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=5JJDZaJELM0:b5ZCNkDLkx0:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>ha.ckers.org web application security lab: Throttling Traffic Using CSS + Chunked Encoding</title>
		<link>http://ha.ckers.org/blog/20100901/throttling-traffic-using-css-chunked-encoding/</link>
		<pubDate>Wed, 01 Sep 2010 21:17:13 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/throttling-traffic-using-css-chunked-encoding/</guid>
		<content:encoded><![CDATA[	<p>
  19 posts left…
</p>
<p>
  So Pyloris doesn’t work particularly well for port exhaustion on the server, but what if we can exhaust the connections on the client to better meter out traffic? That would make it easier for a MITM to see each individual request if it worked. So I started down a rather complicated path of using a mess load of link tags on an HTTP website trying to affect the connections on the HTTPS version of the same domain. No joy. It turns out that the limits placed on one port don’t affect what happens on another (at least in Firefox). So while I can exhaust all the connections to a domain over a single port I can’t do anything using HTTPS - or so it seemed (unless I was willing to muddy the water further by sending a bunch of requests that I knew are a certain size to the HTTPS site - which just seemed more painful than helpful).
</p>
<p>
  Then, based on some earlier research I stormed into id’s office and I started bitching that there was no point in trying to stop port exhaustion if they were going to allow tons of connections, just over multiple sockets anyway. As the words came out of my mouth I realized I had come up with the answer - a ton of webservers. I guessed that there must be some upper bound of outbound connections and it’s probably at or less than 130. You should have seen id’s face as I asked him to set up 130 connections / 6 connections per socket = 22 web-servers for me. Hahah… I thought he’d kill me.
</p>
<p>
  It turns out it’s nowhere near 130 open connections. Firefox sets a rather arbitrary 30 connection limit. So if you can create 5 open web-servers and exhaust 30 connections and only free up one long enough to allow the victim to download one request at a time, I think we’re in business. Makes sense in theory. The problem is that it’s REALLLLY slow. I mean… painful. In my testing it seemed more like the server was broken entirely from the victim’s perspective. But eventually… and in some cases I mean minutes later - it would load. I’m sure that the attack could be optimized to work based on the fact that no more packets are being sent when the image gets downloaded or whatever… which would signal the program to free up a connection. This is opposed to my crapola time based solution combined with chunked encoding to force the connection to stay open without downloading anything that I came up with for testing. So I bet this attack could work if someone put some tender loving care into it, but it was kind of a huge waste of time for me personally - and for poor id.
</p>
<p>
  Incidentally, for those who have never seen or met id, and would like to know a little about the other side of webappsec that I don’t talk about much here (the configuration, operating system and network), you’re chance is nearing. There’s a rumor that <a href="http://www.owasp.org/index.php/Lonestar_Application_Security_Conference_2010">he’ll be speaking at Lascon</a> in October. He’ll be talking on how he’s managed to secure ha.ckers.org for all these years despite how much of a target I’ve made it. <img src='http://ha.ckers.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=')' /> Should be fun.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Pyloris and Metering Traffic</title>
		<link>http://ha.ckers.org/blog/20100901/pyloris-and-metering-traffic/</link>
		<pubDate>Wed, 01 Sep 2010 20:56:29 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/pyloris-and-metering-traffic/</guid>
		<content:encoded><![CDATA[	<p>
  20 posts left…
</p>
<p>
  Pyloris is a python version of Slowloris, and since it is written in python it’s SSL version is thread safe. So what better way to lock up an SSL/TLS Apache install (given that Apache still hasn’t fixed their DoS)? Well, one of the big problems attackers have when trying to decipher SSL/TLS traffic is the fact that browsers not only send a lot of request down a single connection but they also connect use a bunch of open connections over separate sockets. What if we could use pyloris to exhaust all but one open socket?
</p>
<p>
  Well it turns out that while this sorta works, there are a lot of issues with the concept. Firstly, it requires Apache. Secondly the server can’t be using a load balancer (assuming the load balancer isn’t using Apache itself). Thirdly it requires that there are no other users on the system or there will be a seriously annoying user experience for the poor victim who can’t reach the site that the man in the middle is trying to decipher traffic from. Alas… So while this didn’t work particularly well in my testing, I’m certain with more thinking someone can figure out a way to do this.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: XSHM Mark 2</title>
		<link>http://ha.ckers.org/blog/20100901/xshm-mark-2/</link>
		<pubDate>Wed, 01 Sep 2010 20:48:20 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/xshm-mark-2/</guid>
		<content:encoded><![CDATA[	<p>
  21 posts left…
</p>
<p>
  If you’re familiar with <a href="http://www.owasp.org/index.php/Cross_Site_History_Manipulation_(XSHM)">XSHM</a> this is going to look awfully similar (but better). When a script creates a new popup (or tab) it retains control over where to send it at a later date. I talked about <a href="http://ha.ckers.org/blog/20091228/popup-focus-url-hijacking/">this concept before</a>. But let’s see what else can be done. What if the attacker uses the history.length function to calculate how many pages a user has visited after they left the tab for wherever they landed. The attacker could do something like this:
</p>
<p>
  a.location = 'data:text/html;utf-8,&lt;script&gt;alert(history.length);history.go(-1);&lt;/script&gt;';
</p>
<p>
  By setting either a recursive setTimeout or using some manual polling mechanism, the attacker can (in this case) cause a popup which monitors how many pages they’ve gone. Normally it wouldn’t cause a popup, the attacker would redirect to another domain that they had access to which would do the same history.length check. Voila. The user only sees a brief white flash and then the same page they were just on - as if nothing happened. They’d probably just think their browser is messing up again. This could be helpful in a number of esoteric situations where the number of pages visited may change, or you may want to force them through several flows (and back and forth again) all with a single mouse click - giving you authority to popup in the first place. The best part is that this will follow them while they surf for as long as both windows stay open.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Cookie Clobbering</title>
		<link>http://ha.ckers.org/blog/20100901/cookie-clobbering/</link>
		<pubDate>Wed, 01 Sep 2010 20:38:36 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/cookie-clobbering/</guid>
		<content:encoded><![CDATA[	<p>
  22 posts left…
</p>
<p>
  While thinking about <a href="http://ha.ckers.org/blog/20100901/mitm-ssl-and-session-fixation/">the previous issue</a> and listening to <a href="http://jeremiahgrossman.blogspot.com/">Jeremiah’s preso</a> and talking with the guys at Microsoft I got to thinking about cookie clobbering. Let’s say that Microsoft thinks HTTP cookies overwriting secure cookies is a big enough problem to fix. Let’s walk through the use cases. Let’s say there is a separate place for secure cookies that can’t be overwritten by non-secure cookies. Does that mean two cookies are replayed in HTTPS space, or that the HTTPS cookie always wins? Okay… let’s say it wins and the secure flag cookie cookie is the only one sent. Well let’s not forget about Jer’s cookie clobbering script.
</p>
<p>
  When an attacker forces overwriting of the cookie jar, they get the exact same effect. Now the victim has no cookies secure or otherwise if the global cookie jar stays the same size and it remains a LIFO system. So now you’re saying, well the attacker can just use a SSL/TLS enabled cookie clobbering scripts - you’re right! So now there has to be a per-site container… or something - and doesn’t that completely defeat the purpose of the upper limits on cookies anyway? Now DoS conditions become an issue with overwriting the disc with tons of huge cookies, and so on. Anyway… this probably needs a lot more thought, and I’m certainly not advocating “fixing” this, just to end up with a worse situation than we already have. But certainly secure cookies shouldn’t be clobbered by HTTP cookies - in my opinion.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: MITM, SSL and Session Fixation</title>
		<link>http://ha.ckers.org/blog/20100901/mitm-ssl-and-session-fixation/</link>
		<pubDate>Wed, 01 Sep 2010 20:25:44 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/mitm-ssl-and-session-fixation/</guid>
		<content:encoded><![CDATA[	<p>
  23 posts left…
</p>
<p>
  It’s been known for a long time that HTTP can set cookies that can be read in HTTPS space because cookies don’t follow the same origin policy in the way that JavaScript does. More importantly, HTTP cookies can overwrite HTTPS cookies, even if the cookies are marked as secure. I started thinking of a form of session fixation during our research that uses this to the attacker’s advantage. Let’s assume the attacker wants to get access to a user’s account that’s over SSL/TLS. Now let’s assume the website sets a session cookie prior to authentication and after authentication the site marks the cookie as valid for whatever username/password combo it receives.
</p>
<p>
  First, the attacker goes to the website before the victim gets there so he can get a session cookie. Then, if the victim is still in HTTP for the same domain the attacker can set a cookie that will replay to the HTTPS website. So the attacker sets the same cookie that he just received into the victim’s browser. Once the victim authenticates, the cookie that the attacker gave the victim (and knows) is now valid for the victim’s account. Now if the victim was already authenticated or had already gotten a session token, no big deal. The attacker overwrites the cookie, which at worst logs the user out. Once the victim re-authenticates, voila - session fixation. Now all the attacker has to do is replay the same cookie in his own browser and he’s in the user’s account.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Issues with Perspectives</title>
		<link>http://ha.ckers.org/blog/20100901/issues-with-perspectives/</link>
		<pubDate>Wed, 01 Sep 2010 20:12:58 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/issues-with-perspectives/</guid>
		<content:encoded><![CDATA[	<p>
  24 posts left
</p>
<p>
  When I told one of my guys about the <a href="http://ha.ckers.org/blog/20100822/mitm-dns-rebinding-ssltls-wildcards-and-xss/">double DNS rebinding</a> attack, he said, “Well it’s a good thing I use perspectives.” So that was my clue that I had better get familiar with the plugin if people are seriously relying on it for security. In the process we found a number of potential issues. For those of you who aren’t super clued in about this tool it was originally designed to handle situations where governments are tapping people using things like <a href="https://www.packetforensics.com/pfli5b.safe">Packet Forensics</a> where a valid certificate authority is being used to man in the middle someone or a group of individuals.
</p>
<p>
  First of all it’s easy to detect perspectives for a man in the middle. Perspectives sends a lot of HTTP traffic, which the attacker can easily read and figure out is related to perspectives. That may not seem important, because if an attacker knows that a user has it installed what can they really do? We’ll come back to this.
</p>
<p>
  Embedded content is not verified by perspectives, only the parent window. Because most websites (even HTTPS) use third party service providers, caching servers or whatever for static content, the attacker will simply MitMs the static servers serving up CSS, JavaScript or objects that are dynamic content once rendered. By modifying the response and including active content, anything that can be seen by the DOM is still accessible to the man in the middle. Kinda defeats the purpose of perspectives…
</p>
<p>
  Using the fact that an attacker knows that someone is using perspectives (which they can determine by forcing someone through an SSL/TLS link), the attacker can simply MITM only the embedded content. Of course there are changes a user can make to the settings and options to reduce this risk, but like all options, they’re probably not changed often and the defaults really aren’t good.
</p>
<p>
  Lastly, I tried perspectives against the double DNS rebinding issue, and unfortunately instead of the huge pop-down that would actually alert someone to the problem, because the attack uses a valid cert from a nearby sub-domain that perspectives has probably seen before it only gives the small warning that most people probably wouldn’t notice unless they were really paying attention.
</p> ]]></content:encoded>
</item>
<item>
		<title>ha.ckers.org web application security lab: Prior Knowledge Of Users Cert Warning Behavior</title>
		<link>http://ha.ckers.org/blog/20100901/prior-knowledge-of-users-cert-warning-behavior/</link>
		<pubDate>Wed, 01 Sep 2010 19:57:14 -0500</pubDate>
		<guid>http://ha.ckers.org/blog/20100901/prior-knowledge-of-users-cert-warning-behavior/</guid>
		<content:encoded><![CDATA[	<p>
  25 posts left
</p>
<p>
  One of the issues Josh and I talked about at Blackhat was how the SSL certificate warning message can be used to gain information about a user’s behavior and how that can be used against the user. Let’s say a man in the middle causes an error via proxying a well-known owner/subsidiary. For example let’s say https://www.youtube.com/ which most technical people know belongs to Google and which, incidentally causes SSL/TLS mismatch errors because it’s mis-configured. Experts who see such an error and investigate will think it’s just a dumb (innocent) error. Non-experts will click through immediately, because they always do when they see such things.
</p>
<p>
  By measuring the wait time the attacker can know which type of user the victim is - a technical one, or a novice. If the user is a novice the attacker knows they don’t have to worry anymore - they can deliver their snake oil cert later if the user goes through it quickly because that user’s behavior will most likely stay the same. Of course figuring out the timing might be a bit tricky because really new users will be awfully confused by cert warnings and will seem “slow” I’d bet. Anyway, something to investigate further.
</p> ]]></content:encoded>
</item>

<item>
		<title>terminal23: moaub has begun</title>
		<link>http://www.terminal23.net/2010/09/moaub_has_begun.html</link>
		<pubDate>Wed, 01 Sep 2010 14:18:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/moaub_has_begun.html</guid>
		<content:encoded><![CDATA[	The <a href="http://www.exploit-db.com/news/">Month of Abysssec Undisclosed Bugs (MOAUB)</a> has begun. Since this includes (or maybe fully encompasses) the people behind exploit-db and offensive security, we can probably expect plenty of explanation on the bugs, especially the planned binary analyses.<br />
<br />
Seeing things like this and the people behind it, it makes me a little annoyed to be in operations for an SMB. Ops means knowing a bit about a lot of things, but rarely having the time to go into the deep dives often necessary for real security knowledge. I envy and support anyone who has that ability and time! /whine ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: Wanted: Skein Hardware Help</title>
		<link>http://www.schneier.com/blog/archives/2010/09/wanted_skein_ha.html</link>
		<pubDate>Wed, 01 Sep 2010 13:17:40 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/wanted_skein_ha.html</guid>
		<content:encoded><![CDATA[	As part of NIST's SHA-3 selection process, people have been implementing the candidate hash functions on a variety of hardware and software platforms. Our team has implemented Skein in Intel's 32 nm ASIC process, and got some impressive performance results (presentation and paper). Several other groups have implemented Skein in FPGA and ASIC, and have seen significantly poorer performance. We... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=QwJn-uFITVE:qMT5QeHEyg0:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>terminal23: unprotecting excel sheets</title>
		<link>http://www.terminal23.net/2010/09/unprotecting_excel_sheets.html</link>
		<pubDate>Wed, 01 Sep 2010 10:46:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/09/unprotecting_excel_sheets.html</guid>
		<content:encoded><![CDATA[	Ever solve a problem, then 6 months later need to solve it again but don't recall how you solved it previously? That is the sort of housekeeping I'm doing with this post. I make no guarantee that the site or tool mentioned below is safe/secure for your use. Always take necessary precautions.<br />
<br />
Have an Excel file that has password protected sheets or workbooks? I found a handy set of macros to facilitate unprotecting such files over at straxx.com. To be safe, I'd suggest unlocking the files, copying the contents out to a new file, and make sure no strange macros get carried over. I didn't witness any, but better to be safe. And do this all on an expendable system. [excel password crack unprotect] ]]></content:encoded>
</item>

<item>
		<title>Schneier on Security: More Skein News</title>
		<link>http://www.schneier.com/blog/archives/2010/09/more_skein_news.html</link>
		<pubDate>Wed, 01 Sep 2010 06:01:50 -0500</pubDate>
		<guid>http://www.schneier.com/blog/archives/2010/09/more_skein_news.html</guid>
		<content:encoded><![CDATA[	Skein is my new hash function. Well, "my" is an overstatement; I'm one of the eight designers. It was submitted to NIST for their SHA-3 competition, and one of the 14 algorithms selected to advance to the second round. Here's the Skein paper; source code is here. The Skein website is here. Last week was the Second SHA-3 Candidate Conference.... <a href="http://feeds.feedburner.com/~ff/schneier/excerpts?a=Rcm8rajhXeg:azMMApr-cfE:dnMXMwOfBR0"><img alt="" src="http://feeds.feedburner.com/~ff/schneier/excerpts?d=dnMXMwOfBR0" /></a> ]]></content:encoded>
</item>

<item>
		<title>Liminal states: Women in technology startups: a few things you can do (DRAFT)</title>
		<link>http://www.talesfromthe.net/jon/?p=1576</link>
		<pubDate>Tue, 31 Aug 2010 22:20:35 -0500</pubDate>
		<guid>http://www.talesfromthe.net/jon/?p=1576</guid>
		<content:encoded><![CDATA[	<p>
  DRAFT!&nbsp; Work in progress, feedback welcome!<br />
  revised version intended for <a href="http://www.nwen.org/blog/">NWEN’s blog</a><br />
  <br />
  <img src="http://tctechcrunch.files.wordpress.com/2010/08/women.jpg" alt="Yes we can!" />
</p>
<blockquote>
  <p>
    It’s a numbers game. There are far fewer women in tech than men. So anyone genuinely interested in changing the ratio and evening out the balance, has to more than meet women halfway …
  </p>
  <p>
    – Cindy Gallop in <a href="http://www.wimnonline.org/WIMNsVoicesBlog/2010/08/29/to-techcrunchs-battle-of-the-sexes-no-ones-blaming-anyone/">No One’s Blaming Anyone</a> on <em>WIMN’s Voices</em>
  </p>
</blockquote>
<p>
  Shira Ovide’s <em>Wall Street Journal</em> article <a href="http://blogs.wsj.com/venturecapital/2010/08/27/addressing-the-lack-of-women-leading-tech-start-ups/">Addressing the Lack of Women Running Tech Startups</a> kicked off the latest women-in-technology firestorm, and Michael Arrington’s <em>TechCrunch</em> rant&nbsp; <a href="http://techcrunch.com/2010/08/28/women-in-tech-stop-blaming-me/">Too Few Women In Tech? Stop Blaming The Men.&nbsp; Or at least stop blaming me</a> sent it into overdrive.&nbsp;&nbsp; <a href="../?p=1618">The list of 30+ links on <em>Liminal States</em></a> includes views from the Seattle area community in Sasha Pasulka’s excellent <a href="http://www.seattle20.com/blog/Too-Few-Women-in-Tech-Stop-Telling-People-How-They-Should-Feel-About-It.aspx">Stop Telling People How They Should Feel About It</a> on <em>Seattle 2.0</em>, Cameron Sorden’s <a href="http://cameronsorden.blogspot.com/2010/09/women-in-tech-men-in-tech-and-blame.html">Women in Tech, Men in Tech, and the Blame Game</a> and my own &nbsp;<a href="http://www.talesfromthe.net/jon/?p=1552">Fretting, Asking, and Begging Isn’t a Plan</a><em>.</em>
</p>
<p>
  Good stuff!
</p>
<p>
  One consistent theme in the responses to Arrington’s post is that blame isn’t helpful.&nbsp; The underlying causes of gender inequity and other diversity problems in the tech industry are complex, including education, cultural norms, the advantages of the “old boys club”, and sexism.*&nbsp; &nbsp; Most people I talk to, no matter what their gender, agree that it would be a better if the industry and their organization were more balanced.**
</p>
<p>
  So how to make progress?&nbsp; Here are a few things each of us can do:
</p>
<ul>
  <li>Mentor women (suggested by Ja-Naé Duane in <a href="http://ja-nae.net/blog/5-simple-ways-to-help-women-win-as-tech-leaders">5 Simple Ways to Help Women as Tech Leaders</a>).&nbsp; Finding good mentors is a huge challenge for women, and Elizabeth Stark’s <a href="http://www.huffingtonpost.com/elizabeth-stark/mentors-matter_b_543491.html">The Gender Gap in Tech: Why Mentors Matter</a> describes why it’s so important.
  </li>
  <li>Reach out when you’re hiring.&nbsp; The <a href="http://geekfeminism.wikia.com/wiki/Hiring_discrimination#Solutions"><em>Geek Feminism Wiki’s</em> resource page</a> is a good starting point for this. At my most recent startup, we made sure to get our job descriptions&nbsp; reviewed by women and diversity experts to make sure they were equally inviting to women, and routinely posted them on <a href="http://www.digitaleveseattle.org/">Digital Eve Seattle</a> as well as other lists.&nbsp; And if any angels and VCs happen to be reading this, please pay attention: you’re in a uniquely leveraged position to encourage diversity, so please work towards having a diverse team yourselves as well as encouraging diversity in your companies.
  </li>
  <li>Reach out even when you’re not hiring.&nbsp; <a href="http://www.fastcompany.com/1685780/too-few-women-in-tech-stop-playing-the-blame-game">Allyson Kapin</a> (aka @WomenWhoTech) and <a href="http://babyfruit.typepad.com/mediagirl/2010/09/too-few-women-in-tech-stop-blaming-the-men.html">Aliza Sherman</a> both list some of the many organizations working in this space: Anita Borg Institute, She’s Geeky, Women Who Tech, National Women of Color Technology Conference, Women 2.0, Girls in Tech, Astia, Pipeline Women ….&nbsp; In Seattle, there’s <a href="http://techmavens.com/">TechMavens</a> and the <a href="http://www.pwocn.org/">Professional Women of Color Network</a> as well as Digital Eve.&nbsp; Get involved with them.&nbsp; If you’re looking for expert speakers at a conference or event, they’ve got plenty of good resources.&nbsp; And don’t forget Twitter; follow hashtags like&nbsp; #geekfeminism, #womaninnovator, and #fem2 and RT stuff you think people will find interesting.
  </li>
  <li>Get out of your cultural cocoon (as suggested by Carol Tran of&nbsp; <a href="http://chicmeetsgeek.com/site/">Chic Meets Geek</a> in this excellent&nbsp; <a href="http://www.youtube.com/watch?v=dTsvL0oUPio">video</a>).&nbsp; Shireen Mitchell points out that using social media to diversify your online network is only the first step; real world connections matter a lot too.&nbsp; Last month I went to a <a href="http://www.google.com/url?sa=t&amp;source=web&amp;cd=2&amp;ved=0CCMQFjAB&amp;url=http%3A%2F%2Fthecravecompany.com%2Fseattle%2F&amp;rct=j&amp;q=crave%20seattle&amp;ei=Or99TMWTCMGbnwe3v4CVCw&amp;usg=AFQjCNF92z2zjmEr92v_vFQbF16xQC8W5w&amp;sig2=8743tzQaOe7tdyNDOiaKtg&amp;cad=rja">CRAVE Seattle</a> networking event, and got to experience the role reversal of being one of only two guys in a room and realizing that everybody was looking at me and wondering what I was doing there — and met a bunch of people I never would have otherwise.
  </li>
  <li>Mention women, not just men:*** track the ratio of men to women that you mention in your email, blog posts, tweets, or <a href="../?p=70#comment-2497">“top 25″ lists</a> “.&nbsp; Is it lopsided?&nbsp; As K. Tempest Bradford describes <a href="http://geekfeminism.org/2010/08/30/on-influence-lists-women-and-the-confluence-thereof/">on <em>Geek Feminism</em></a>, it can happen easily enough: “when measuring the nebulous concept of ‘influence’ a lot of gut decisions are made that have more to do with personal perceptions than other factors.”&nbsp; If so, look for ways to bring balance.&nbsp; If you’re giving out awards, look at your committee: if they’re 80% male, then you probably won’t have a lot of women finalists and winners.
  </li>
</ul>
<p>
  Of course, these only scratch the tip of the iceberg.&nbsp; There are plenty more good suggestions in the articles and sites I link to above — and please drop your own in the comments!
</p>
<p>
  jon
</p>
<p>
  * Vivek Wadhwa’s <a href="http://techcrunch.com/2010/02/07/silicon-valley-you%E2%80%99ve-got-a-gender-problem-and-some-of-your-vc%E2%80%99s-still-live-in-the-past/">Silicon Valley: You and Some of Your VC’s have a Gender Problem</a>, Janine de Nysschen’s <a href="http://www.nyew.org/index.php/2010/04/why-men-get-vc-money-and-women-dont/">Why Men Get VC Money and Women Don’t….and How that is Changing</a>, and t<a href="http://geekfeminism.org/2010/05/31/ask-a-geek-feminist-the-definitive-women-in-csstem-resource-thread/">he definitive women in CS/STEM thread</a> on <em>Geek Feminism</em> have a lot of data, and if you’re not familiar with the issue are great starting points.
</p>
<p>
  ** Although if you’re an entrepeneur or investor reading this and don’t think diversity matters for you, I’d encourage you to think again.&nbsp; As Clara Byrne notes <a href="http://venturebeat.com/2010/09/02/women-in-tech-what-to-do-now/">on <em>VentureBeat</em></a>, female employees and co-founders are a competitive advantage; on <em>TechCrunch Europe</em>, Inmaculada Martinez goes into more detail in <a href="http://eu.techcrunch.com/2010/04/09/its-time-to-hire-more-women-in-startups-your-products-deserve-it/">It’s time to hire more women in startups – your products deserve it</a>. .&nbsp; Paying attention to diversity — gender, race, age, and all the other dimensions — opens new opportunities, broadens your hiring pool and investment options, helps you avoid blind spots, and results in products that are more appealing to everybody. &nbsp; It’s getting harder and harder to deny there’s a problem, and that <a href="http://www.talesfromthe.net/jon/?p=1552&amp;cpage=1#comment-87909">the advantages moving ahead will go to those who address it most quickly</a>.
</p>
<p>
  *** For more on this, see Shelley Powers’ <a href="http://burningbird.net/connecting/guys-dont-link/">Guys don’t link</a>,&nbsp; Susan Herring et al’s <a href="http://blog.lib.umn.edu/blogosphere/women_and_children.html">Women and children last: the discursive construction of Weblogs</a>.&nbsp; And as always, look for similar patterns — and take similar steps to improve the situation — with other dimensions of diversity like race and age as well.
</p>
<p>
  <em><a href="http://www.talesfromthe.net/jon/?page_id=191">Jon Pincus</a> is a Seattle-area strategist, writer, and activist, currently volunteering for NWEN and co-chairing the First Look Forum with Rochelle Whelan.</em>
</p> ]]></content:encoded>
</item>

<item>
		<title>terminal23: the wide impact of windows dll hijacking issue</title>
		<link>http://www.terminal23.net/2010/08/the_wide_impact_of_windows_dll.html</link>
		<pubDate>Tue, 31 Aug 2010 16:25:00 -0500</pubDate>
		<guid>http://www.terminal23.net/2010/08/the_wide_impact_of_windows_dll.html</guid>
		<content:encoded><![CDATA[	How can the recent <a href="https://www.microsoft.com/technet/security/advisory/2269637.mspx">Windows DLL hijacking</a> issue affect me? Or rather, can it be used to specifically target vulnerable applications?<br />
<br />
A <a href="http://seclists.org/fulldisclosure/2010/Aug/417">disclosure this afternoon involving KeePass</a> certainly does show you can target specific applications. For instance, if you can get someone with KeePass to attempt to open a KeePass file and load your malicious DLL, you can execute code...such as installing a keylogger/filemon to track what your victim uses to open that super-secret KeePass database.<br />
<br />
Note an important issue here: While this vulnerability was announced by Microsoft, Microsoft may not be able to fix this underlying issue. Which really breaks many vulnerability management practices in enterprises that don't do a good job keeping inventory of installed applications and their own updates/patches/vuln announcements. ]]></content:encoded>
</item>

<item>
		<title>Security Vulnerability Research &amp;amp; Defense: An update on the DLL-preloading remote attack vector</title>
		<link>http://blogs.technet.com/b/srd/archive/2010/08/31/an-update-on-the-dll-preloading-remote-attack-vector.aspx</link>
		<pubDate>Tue, 31 Aug 2010 16:00:00 -0500</pubDate>
		<guid>http://blogs.technet.com/b/srd/archive/2010/08/31/an-update-on-the-dll-preloading-remote-attack-vector.aspx</guid>
		<content:encoded><![CDATA[	<p>
  Last week, we released <a href="http://www.microsoft.com/technet/security/advisory/2269637.mspx">Security Advisory 2269637</a> notifying customers of a publicly disclosed remote attack vector to a class of vulnerabilities affecting applications that load dynamic-link libraries (DLL’s) in an insecure manner. At that time, we also <a href="http://blogs.technet.com/b/msrc/archive/2010/08/21/microsoft-security-advisory-2269637-released.aspx">released a tool</a> to help protect systems by disallowing unsafe DLL-loading behavior.
</p>
<p>
  Today we wanted to provide an update by answering several questions we have received from customers and addressing common misperceptions about the risk posed by this class of vulnerability.
</p>
<ul>
  <li>The user experience of the exploit in progress
  </li>
  <li>The dangers of untrusted, Internet-zone WebDAV
  </li>
  <li>Enabling the CWDIllegalInDllSearch protection tool
  </li>
</ul>
<p>
  <b>The user experience of the exploit in progress</b>
</p>
<p>
  <i>This class of vulnerabilities does not enable a “driveby” or “browse-and-get-owned” 0-click attack.</i> To be exploited, a victim would need to browse to a malicious WebDAV server or a malicious SMB server and double-click a file in the Windows Explorer window that the malicious server displays. Let’s walk through an example of what an attack might look like:
</p>
<p>
  First, the user browses to a malicious website:
</p>
<p>
  <img alt="" src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/6710.hacku.png" />
</p>
<p>
  The website would then attempt to display a new Windows Explorer window that points to a malicious WebDAV or SMB share. On systems running Protected Mode, Internet Explorer will require user consent to launch Windows Explorer, using a security warning like the one below. Protected Mode is enabled by default for Internet Explorer on Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2.
</p>
<p>
  <img alt="" src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/5008.protectedmode.png" />
</p>
<p>
  After the user allows Windows Explorer to launch (or if they have previously requested that Internet Explorer no longer display this warning), the user will be presented with a Windows Explorer dialog that is likely to look like the one below:
</p>
<p>
  <img alt="" src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/4075.hacku_2D00_explorer.png" />
</p>
<p>
  At this point, if the user were to double-click the data file on the share, the affected application could potentially run attacker code that is separately hosted on the same WebDAV server.
</p>
<p>
  <b>The dangers of untrusted, Internet-zone WebDAV</b>
</p>
<p>
  As described above, this class of vulnerabilities could allow malicious code to run if an attacker can convince a victim to do the following:
</p>
<ul>
  <li>Browse to a malicious, untrusted WebDAV server in the Internet Zone; and
  </li>
  <li>Double-click a file that appears by its extension and icon to be safe
  </li>
</ul>
<p>
  Unfortunately, based on attack patterns we have seen in recent years, we believe it is no longer safe to browse to a malicious, untrusted WebDAV server in the Internet Zone and double-click on <b><i>any</i></b> type of files. Attackers are clever, substituting dangerous file icons with safe, trusted file icons. They have even recently begun obfuscating the filename based on character encoding tricks (such as right-to-left character encoding). Their goal is to entice unsuspecting users into double-clicking on a malicious executable. With or without this new remote vector to the DLL Preloading issue, it’s very hard to make a trust decision given the amount of control an attacker has over the malicious WebDAV server browsing experience. We recommend users only double-click on file icons from WebDAV shares known to be trusted, safe, and not under the control of a malicious attacker.
</p>
<p>
  <b>Enabling the CWDIllegalInDllSearch protection tool</b>
</p>
<p>
  We have received several questions regarding the best way to enable the protection tool released on the Microsoft Download Center last week.
</p>
<p>
  First, you should know that downloading and installing the tool alone will not protect a workstation from vulnerable applications. It ships “off-by-default” and must be enabled either system-wide or for specific applications. After releasing this tool, we received a number of questions on how best to deploy it. We have now updated the KB article to address them. We encourage you to review the updated <a href="http://support.microsoft.com/kb/2264107">knowledge base article 2264107</a>.
</p>
<p>
  Secondly, customers have asked us to recommend the best setting among the three choices. We recommend one of two settings, depending on the specific risk about which you are concerned.
</p>
<ul>
  <li>Setting the CWDIllegalInDllSearch regkey to 2 system-wide will completely block any network-based attack. We’ve built an automated Fix-it solution to enable that. You can click the Fix-it graphic below on systems that have already installed the tool to set CWDIllegalInDllSearch = 2, blocking DLL loads from the current working directory for both WebDAV and SMB except in cases where the application is run from a WebDAV or SMB share.
  </li>
</ul>
<p>
  <a href="http://go.microsoft.com/?linkid=9742148"><img alt="" src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-61-47/8176.fixit.png" /></a>
</p>
<p>
  Note: The Fix-it itself does not install the <a href="http://support.microsoft.com/kb/2264107">workaround tool</a>. You’ll need to separately download and install the tool beforehand.
</p>
<ul>
  <li>To instead completely block all DLL-preloading attack vectors, including the threat of malicious files on a USB thumb drive or files arriving via email as a ZIP attachment, set CWDIllegalInDllSearch to 0xFFFFFFFF. This will address any DLL preloading vulnerabilities that may exist in applications running on your system. However, it may have some unintended consequences for applications that require this behavior, so we do recommend thorough testing.
  </li>
</ul>
<p>
  This section option can be enabled by following these steps:
</p>
<ul>
  <li>Install the tool from <a href="http://support.microsoft.com/kb/2264107">KB2264107</a>.
  </li>
  <li>Log on to your computer as an administrator.
  </li>
  <li>Open Registry Editor.
  </li>
  <li>Locate and then click the following registry subkey: HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession Manager
  </li>
  <li>Right-click Session Manager, point to New, and then click Dword Value.
  </li>
  <li>Type CWDIllegalInDllSearch, and then click Modify.
  </li>
  <li>In the Value data box, type 0xFFFFFFFF, and then click OK.
  </li>
</ul>
<p>
  While the impact of the above change seems to be low, a reader of this blog wrote in that he experienced a compatibility issue with the Outlook 2002 address book. If you experience issues such as this, they can be mitigated by setting a special policy for the affected binaries that overrides the default CWDIllegalInDllSearch. The following steps show how to do this for OUTLOOK.EXE:
</p>
<ul>
  <li>Log on to your computer as an administrator.
  </li>
  <li>Open Registry Editor.
  </li>
  <li>Locate and then click the following registry subkey: HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionImage File Execution OptionsOUTLOOK.EXE
  </li>
  <li>If a key with the application binary name does not exist, then you will have to create one.
  </li>
  <li>Right-click OUTLOOK.EXE, point to New, and then click Dword Value.
  </li>
  <li>Type CWDIllegalInDllSearch,and then click Modify.
  </li>
  <li>In the Value data box, type 2, and then click OK.
  </li>
</ul>
<p>
  This will still prevent OUTLOOK.EXE from loading DLL’s from a remote network share or WebDAV location, but it does not remove CWD from the library search path for this application altogether. This process can be repeated for all other applications that may no longer work correctly. As discussed, we don’t believe this will be common, but we do recommend testing.
</p>
<p>
  Thanks for your interest in this issue. Please send questions in to switech@microsoft.com.
</p>
<p>
  Jonathan Ness, MSRC Engineering<br />
  Maarten Van Horenbeeck, MSRC Program Manager
</p>
<p>
  *Posting is provided "AS IS" with no warranties, and confers no rights.*
</p><img alt="" src="http://blogs.technet.com/aggbug.aspx?PostID=3352902" /> ]]></content:encoded>
</item>

<item>
		<title>ModSecurity Blog: Advanced Feature of the Week: Transformation Functions</title>
		<link>http://blog.modsecurity.org/2010/08/advanced-feature-of-the-week-transformation-functions.html</link>
		<pubDate>Tue, 31 Aug 2010 15:47:00 -0500</pubDate>
		<guid>http://blog.modsecurity.org/2010/08/advanced-feature-of-the-week-transformation-functions.html</guid>
		<content:encoded><![CDATA[	<p>
  This week's feature is the effective use of <a href="http://www.modsecurity.org/documentation/modsecurity-apache/2.5.12/modsecurity2-apache-reference.html#transformation-functions">Transformation functions</a>.
</p>Reference Manual
<p>
  This excerpt is taken from the updated Reference Manual section of Ivan Ristic's book <a href="https://www.feistyduck.com/books/modsecurity-handbook/index.html">ModSecurity Handbook</a>.
</p>
<p>
  Transformation functions are used to alter input data before it is used in matching (i.e., operator execution). The input data is never modified, actually—whenever you request a trans- formation function to be used, ModSecurity will create a copy of the data, transform it, and then run the operator against the result.
</p>
<blockquote>
  <p>
    <em>Note</em>
  </p>
</blockquote>
<blockquote>
  <p>
    <em>There are no default transformation functions, as there were in the first generation of ModSecurity (1.x).</em>
  </p>
</blockquote>
<p>
  In the following example, the request parameter values are converted to lowercase before matching:
</p>
<pre>
SecRule ARGS "xp_cmdshell" <em>"t:lowercase"</em><br />
</pre>
<p>
  Multiple transformation actions can be used in the same rule, forming a transformation pipeline. The transformations will be performed in the order in which they appear in the rule.
</p>
<p>
  In most cases, the order in which transformations are performed is very important. In the following example, a series of transformation functions is performed to counter evasion. Per- forming the transformations in any other order would allow a skillful attacker to evade detection:
</p>
<pre>
SecRule ARGS "(asfunction|javascript|vbscript|data|mocha|livescript):"  
</pre>
<pre>
<em>"t:none,t:htmlEntityDecode,t:lowercase,t:removeNulls,t:removeWhitespace"</em><br />
</pre>
<blockquote>
  <p>
    <em>Warning</em>
  </p>
  <p>
    <em>It is currently possible to use SecDefaultAction to specify a default list of transfor- mation functions, which will be applied to all rules that follow the SecDefaultAction directive. However, this practice is not recommended, because it means that mistakes are very easy to make. It is recommended that you always specify the transformation&nbsp;functions that are needed by a particular rule, starting the list with t:none (which clears the possibly inherited transformation functions).</em>
  </p>
</blockquote><em>OWASP ModSecurity CRS</em>
<p>
  <em>The OWASP ModSecurity CRS makes extensive use of transformation functions. &nbsp;Each rule applies a specific transformation pipeline that was developed from user feedback and testing and aims to avoid false negative issues. &nbsp;The following example rule is taken from the modsecurity_crs_41_sql_injection.conf file:</em>
</p>
<pre>
<em>SecRule REQUEST_FILENAME|ARGS_NAMES|ARGS|XML:/* "bunionb.{1,100}?bselectb" 
 "phase:2,rev:'2.0.8',capture,t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase,t:replaceComments,t:compressWhiteSpace,ctl:auditLogParts=+E,pass,nolog,auditlog,msg:'SQL Injection Attack',id:'959047',tag:'WEB_ATTACK/SQL_INJECTION',tag:'WASCTC/WASC-19',tag:'OWASP_TOP_10/A1',tag:'OWASP_AppSensor/CIE1',tag:'PCI/6.5.2',logdata:'%{TX.0}',severity:'2',setvar:'tx.msg=%{rule.msg}',setvar:tx.sql_injection_score=+%{tx.critical_anomaly_score},setvar:tx.anomaly_score=+%{tx.critical_anomaly_score},setvar:tx.%{rule.id}-WEB_ATTACK/SQL_INJECTION-%{matched_var_name}=%{tx.0}"
</em>
</pre>
<p>
  <em>The goal of this transformation pipeline is to try and counter-act typical evasion attempts that are used by SQL Injection attacks (which we describe more in depth in the following section).</em>
</p><br />
<br />
So What?
<p>
  Why are transformation functions so important? &nbsp;One word - EVASIONS. &nbsp;We have blogged about the term <a href="http://blog.modsecurity.org/2010/04/impedance-mismatch-and-base64.html">Impedance Mismatch</a> <a href="http://blog.modsecurity.org/2007/02/dealing-with-im.html">many times</a> in the <a href="http://blog.modsecurity.org/2005/03/external-web-ap.html">past</a>. &nbsp;The issue is that there are many ways in which an attacker may be able to alter the format of an inbound payload, so that it may not match an input validation filtering scheme, however it is still functionally equivalent code and will be executed by the back-end application.
</p>
<p>
  <em>Example SQL Injection Evasion Techniques:</em>
</p>
<pre>
<em>delete from -- lowercase</em>
</pre>
<pre>
<em>DELETE FROM -- upper-case</em>
</pre>
<pre>
<em>deLeTe fRoM -- mixed-case</em>
</pre>
<pre>
<em>Delete From -- more than 1 space between keywords</em>
</pre>
<pre>
<em>DELETEtFROM -- t represents a TAB character<br /><br /></em>
</pre>
<pre>
<em>DELETE/* random data */ FROM -- use of SQL Comments</em>
</pre><em>Example Transformation Execution</em>
<p>
  <em>Let's take a look at an example SQL Injection attack payload:</em>
</p>
<pre>
<em>http://localhost/vulnerable_app.php?foo=1'%20UniOn%09(/*blah%20blah%20blah*/SeLeCt%20%20%20%20%20%20%20'1','2',PASSword%20from%20USERS)%20--%20-a<br /><br /></em>
</pre>
<p>
  <em>This payload has a number of the same evasion techniques described in the previous section. &nbsp;Let's take a look at the modsecurity debug log (set to level 9) and see how the transformation pipeline used in CRS rule id 959047 handles the payload:</em>
</p>
<pre>
<em>[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) urlDecodeUni: "1' UniOnt(/*blah blah blah*/SeLeCt '1','2',PASSword from USERS) -- -a"
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) htmlEntityDecode: "1' UniOnt(/*blah blah blah*/SeLeCt '1','2',PASSword from USERS) -- -a"
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) lowercase: "1' uniont(/*blah blah blah*/select '1','2',password from users) -- -a"
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) replaceComments: "1' uniont( select '1','2',password from users) -- -a"
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) compressWhitespace: "1' union ( select '1','2',password from users) -- -a"
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][4] Transformation completed in 36 usec.
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][4] Executing operator "rx" with param "\bunion\b.{1,100}?\bselect\b" against ARGS:foo.
[31/Aug/2010:11:34:17 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] Target value: "1' union ( select '1','2',password from users) -- -a"<br /><br /></em>
</pre>
<p>
  <em>As you can see from the debug_log, the ARGS:foo parameter payload data was normalized to remove the evasion techniques before the payload was inspected by the @rx operator.</em>
</p><em>Evading Transformation Pipelines</em>
<p>
  <em>While transformation pipelines work fairly well at identifying most evasion attacks, they are by no means perfect. &nbsp;In fact, attackers may abuse the fact that ModSecurity only applies the specified operator only once, at the end of the transformation pipeline. &nbsp;Here is an example attack payload that indeed evaded previous versions of the CRS which were only inspecting more generic payloads such as REQUEST_URI:</em>
</p>
<pre>
<em>http://localhost/vulnerable_app.php?foo=%2f*&amp;bar=%E2%80%98+UNION+SELECT+*+FROM+user+%26%23x2f*<br /><br /></em>
</pre>
<p>
  <em>The evasion trick this payload is attempting is to spread the SQL C-style comment across multiple parameter payloads. &nbsp;Let's look at how the previous CRS rule would have processed this REQUEST_URI payload and applied the transformation pipeline:</em>
</p>
<pre>
<em>[31/Aug/2010:11:56:15 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) urlDecodeUni: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"
[31/Aug/2010:11:56:15 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) htmlEntityDecode: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"
[31/Aug/2010:11:56:15 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) lowercase: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 union select * from user /*"
[31/Aug/2010:11:56:15 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) replaceComments: "/vulnerable_app.php?foo= "
[31/Aug/2010:11:56:15 --0400] [localhost/sid#10080d708][rid#1025d2aa0][/vulnerable_app.php][9] T (0) compressWhitespace: "/vulnerable_app.php?foo= "
</em>
</pre>
<p>
  <em>Opps... As you can see, once the replaceComments transformation function is applied, it effectively removes the SQLi payload before the operator is applied. &nbsp;This is a perfect example of Impedance Mismatch, were the WAF is normalizing data in a different way as the target application.</em>
</p>
<p>
  <em>So, how do we combat this evasion issue?</em>
</p><em>multiMatch Action</em>
<p>
  <em>By default, operators are only applied once after the entire transformation pipeline is completed. &nbsp;This is a sound approach for normal everyday use as it strikes a balance between detecting attacks and not adversely affecting performance. &nbsp;Keep in mind that there is a latency cost each time that ModSecurity has to apply an operator to data. &nbsp;</em>
</p>
<p>
  <em>There is a seldom used action called&nbsp;<a href="http://www.modsecurity.org/documentation/modsecurity-apache/2.5.12/modsecurity2-apache-reference.html#N11987">multiMatch</a>&nbsp;and its purpose is to change when operators are applied to data. &nbsp;</em>
</p>
<p>
  <em>With multiMatch, the operator is actually applied to data each time that the individual transformation function alters the data. &nbsp;With this approach, it is now possible to detect the previous SQL Injection bypass attempt. &nbsp;Here is how the multiMatch operator execution looks now:</em>
</p>
<pre>
<em>[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Executing operator "rx" with param "\bunion\b.{1,100}?\bselect\b" against REQUEST_URI_RAW.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] Target value: "/vulnerable_app.php?foo=%2f*&amp;bar=%E2%80%98+UNION+SELECT+*+FROM+user+%26%23x2f*"
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Operator completed in 1 usec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] T (0) urlDecodeUni: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Transformation completed in 42 usec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Executing operator "rx" with param "\bunion\b.{1,100}?\bselect\b" against REQUEST_URI_RAW.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] Target value: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Operator completed in 1 usec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] T (0) htmlEntityDecode: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Transformation completed in 78 usec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Executing operator "rx" with param "\bunion\b.{1,100}?\bselect\b" against REQUEST_URI_RAW.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] Target value: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 UNION SELECT * FROM user /*"[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Operator completed in 0 us
ec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] T (0) lowercase: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 union select * from user /*"
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Transformation completed in 109 usec.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][4] Executing operator "rx" with param "\bunion\b.{1,100}?\bselect\b" against REQUEST_URI_RAW.
[31/Aug/2010:16:22:45 --0400] [localhost/sid#10080d708][rid#1040020a0][/vulnerable_app.php][9] Target value: "/vulnerable_app.php?foo=/*&amp;bar=xe2x80x98 union select * from user /*"
</em>
</pre>
<p>
  <em>In order to balance out the latency hit and its chance for higher false positives, we have implemented use of the multiMatch action into the <a href="http://www.owasp.org/index.php/Category:OWASP_ModSecurity_Core_Rule_Set_Project">OWASP ModSecurity Core Rule Set</a> by only conditionally using it if the Admin configures the PARANOID_MODE variable in the modsecurity_crs_10_config.conf file. &nbsp;When this is set, many of the rules will then inspect more generic variables and use the multiMatch action. &nbsp;As indicated by the name, PARANOID_MODE is mainly meant for people who want to get more aggressive with detection and have a higher tolerance for false positives.</em>
</p>
<p>
  <em>Transformation Function Tips</em>
</p>
<p>
  <em>Here are a few recommended tips for using transformation functions.</em>
</p>
<p>
  Start with t:none
</p>
<p>
  Due to the fact that transformation functions pipelines are cumulative, it is possible that you could unintentionally inherit transformation functions from a previous SecDefaultAction. &nbsp;It is therefore good practice to start each transformation function pipeline with "t:none" as this will clear out any existing ones.
</p>
<p>
  Choose the right transformations
</p>
<p>
  There is no "one size fits all" magic transformation function pipeline. &nbsp;You need to analyze what type of attack you are targeting and then identify the methods in which attackers may try evade detection. &nbsp;For instance, the transformation pipelines for detecting Cross-site Scripting (XSS) is much different then what you would use for SQL Injection.
</p>
<p>
  Beware of performance
</p>
<p>
  The larger the payload is, the longer it will take to complete the transformation pipeline. &nbsp;This is not that big of a concern for inbound request data as they are generally small in size. &nbsp;Where you can run into higher latency hits is when you are attempting to inspect outbound data (RESPONSE_BODY variable). &nbsp;It is for this reason that you should try to limit the use of transformations when inspecting RESPONSE_BODY and instead specify mixed-case within your regular expression.
</p>
<p>
  <br />
  <br />
</p>
<p>
  <br />
  <br />
</p>
<p>
  <br />
  <br />
</p> ]]></content:encoded>
</item>

<item>
		<title>Dominic White's .tHE pRODUCT: A Response to Paul Rubin's "Ten Fallacies About Web Privacy"</title>
		<link>http://singe.za.net/blog/archives/1008-A-Response-to-Paul-Rubins-Ten-Fallacies-About-Web-Privacy.html</link>
		<pubDate>Tue, 31 Aug 2010 13:40:00 -0500</pubDate>
		<guid>http://singe.za.net/blog/archives/1008-A-Response-to-Paul-Rubins-Ten-Fallacies-About-Web-Privacy.html</guid>
		<content:encoded><![CDATA[	Paul Rubin had <a href="http://online.wsj.com/article/SB10001424052748704147804575455192488549362.html">a piece</a> in the Wall Street Journal describing 10 fallacies of Web Privacy. This is my response, and the start of my blogs official "privacy" category.<br />
<blockquote>
  <p>
    <em>1) Privacy is free.</em> Many privacy advocates believe it is a free lunch‚ - that is, consumers can obtain more privacy without giving up anything. Not so. There is a strong trade-off between privacy and information: The more privacy consumers have, the less information is available for use in the economy. Since information helps markets work better, the cost of privacy is less efficient markets.
  </p>
</blockquote>
<p>
  There are two problems with this statement. The first counter-fallacy is the idea that more information, any information, makes markets work better; that just isn't true. Take a simplistic example of someone who signs up for a golf magazine and is then spammed by so many adverts for golfing gear that they train their spam filter to block it. The company got some information, used it inappropriately, leading to the client making fewer purchases for no better reason than too much advertising. What's needed is a mechanism for the right (i.e. necessary to enable consented activities in the consumers interest) information to get to the right companies (i.e. not spammy affiliates or surveillance groups). This is exactly what privacy advocates are working for currently; what controls can enforce this rather than the overly permissive current state.<br />
</p>
<p>
  The second problem is that the cost goes both ways. Right now a consumer has to spend the effort in enforcing their privacy. The current technical complexities of, for example, ensuring cookies for services you use, are not used to correlate your identity across affiliate sites, is high and only performed by the few who understand the implications and care enough to do something about it. Thus, the cost (understanding, technical ability, actual work required) is too high for many consumers to reasonably enforce their own privacy. This cost needs to shift to companies in order to achieve a more reasonable middle ground.<br />
</p>
<blockquote>
  <p>
    <em>2) If there are costs of privacy, they are borne by companies.</em> Many who do admit that privacy regulations restricting the use of information about consumers have costs believe they are born entirely by firms. Yet consumers get tremendous benefits from the use of information.
  </p>
  <p>
    Think of all the free stuff on the Web: newspapers, search engines, stock prices, sports scores, maps and much more. Google alone lists more than 50 free services‚ - all ultimately funded by targeted advertising based on the use of information. If revenues from advertising are reduced or if costs increase, then fewer such services will be provided.
  </p>
</blockquote>
<p>
  I don't see fewer services, in return for more control of what information is collected and how it is used, as a poor trade off i.e. it's a cost most consumers would be willing to bear. If anything, efficiencies may be generated in the market with weaker services that exist purely as third party data collection points (e.g. spammers, personal data warehouses (e.g. Axciom) and other organisations that end up with data from our primary service providers that we would prefer didn't) being weeded out. It would be hard to argue that more privacy would result in all information supported services disappearing.<br />
</p>
<blockquote>
  <p>
    <em>3) If consumers have less control over information, then firms must gain and consumers must lose.</em> When firms have better information, they can target advertising better to consumers‚ - who thereby get better and more useful information more quickly. Likewise, when information is used for other purposes‚ - for example, in credit rating‚ - then the cost of credit for all consumers will decrease.
  </p>
</blockquote>Giving consumers more control of their information does not lead to firms having worse information. If anything the firms are likely to have access to higher quality information and avoid many of the poor inferences current data sets lead to (e.g. googling for "bomb making" means you're a terrorist). The key quality differentiator is that a consumer can target the intended use with the right information, due to the disclosure of intended use by the firm when gathering consent. The current situation is more akin to my bank knowing my shoe size, just because they can, and sharing that with affiliates; rather than the bank collecting credit rating specific data for their own calculations.
<blockquote>
  <p>
    <em>4) Information use is "all or nothing."</em> Many say that firms such as Google will continue to provide services even if their use of information is curtailed. This is sometimes true, but the services will be lower-quality and less valuable to consumers as information use is more restricted.
  </p>
  <p>
    For example, search engines can better target searches if they know what searchers are looking for. (Google's "Did you mean . . ." to correct typos is a familiar example.) Keeping a past history of searches provides exactly this information. Shorter retained search histories mean less effective targeting.
  </p>
</blockquote>
<p>
  Once again, we have the counter fallacy: "more information == higher quality service" coupled with a misunderstanding of what sort of control privacy advocates are looking for.
</p>
<p>
  First, a large amount of information currently collected is not collected for direct use with that service; while Google search does collect your search term, it also correlates that use with other services. If Google were to say "we collect exactly this information for this specific purpose, if you don't like it leave" that would be a huge improvement over the current vague statement of "we collect some information, we share some of it, if you don't like it leave, but we'll still try to track you around the web."
</p>
<p>
  Second, privacy advocates, for the most part, have no problem with Google collecting search terms and using that data for the typo correction example above. The problem is strongly associating those terms with an identity and then barely anonymising them. It would be quite possible for Google to collect the search terms and provide typo correction without knowing UserX searched for that term.<br />
</p>
<blockquote>
  <p>
    <em>5) If consumers have less privacy, then someone will know things about them that they may want to keep secret.</em> Most information is used anonymously. To the extent that things are "known" about consumers, they are known by computers. This notion is counterintuitive; we are not used to the concept that something can be known and at the same time no person knows it. But this is true of much online information.
  </p>
</blockquote>
<p>
  This "fallacy" is phrased incorrectly. It should be "<em>If consumers have less privacy, then someone *could* know things about them they may want to keep secret.</em>" This is not a fallacy. Sure, for the most part there isn't a sweaty sysadmin reading each of my Yahoo mails (although research by others suggests there may be), but if a sysadmin/private investigator/government organisation wanted to they could. If the information is stored and identified then at some point someone will want to consume it. My experience in information security tells me that you can't provide perfect protection, and as the <a href="http://www.financialexpress.com/news/rim-offers-solution-to-intercept-blackberry/661766/">Saudi/RIM lawful intercept saga</a> indicates, gov pressure to be able to violate your privacy/secrecy/confidentiality wins. As the <a href="https://www.eff.org/deeplinks/2010/01/google-china-unanswered-questions">Google/China hack indicates</a>, lawful intercept gets used by the bad guys too.<br />
</p>
<p>
  What's more, the advanced data analytics performed by the likes of Facebook and Google allow additional secret information, that <a href="http://www.schneier.com/blog/archives/2009/04/identifying_peo.html">you may not have intentionally disclosed</a> about you, to be discerned. In short, if the information isn't stored, it can't be compromised.<br />
</p>
<blockquote>
  <p>
    <em>6) Information can be used for price discrimination (differential pricing), which will harm consumers.</em> For example, it might be possible to use a history of past purchases to tell which consumers might place a higher value on a particular good. The welfare implications of discriminatory pricing in general are ambiguous. But if price discrimination makes it possible for firms to provide goods and services that would otherwise not be available (which is common for virtual goods and services such as software, including cell phone apps) then consumers unambiguously benefit.
  </p>
</blockquote>It may be because I'm not an economist but it sounds like Rubin makes a weak point (coupled with my observation in parenthesis) here: "Differential pricing is bad (mostly to the poor), but some good could come from it (mostly to the rich), so it's okay." The way I see it, if one side has perfect information about the other, but not vice versa, then the negotiation is flawed and will not work to mutal benefit. Even if you could argue that this is not true, people who take steps to prevent their information from being collected and tagged with their identity would be in a stronger bargaining position and would benefit more than the consumers who didn't.<br />
<blockquote>
  <p>
    <em>7) If consumers knew how information about them was being used, they would be irate.</em> When something (such as tainted food) actually harms consumers, they learn about the sources of the harm. But in spite of warnings by privacy advocates, consumers don't bother to learn about information use on the Web precisely because there is no harm from the way it is used.
  </p>
</blockquote>It's true, harm from privacy violations is difficult to asses. If only someone wrote <a href="http://www.amazon.com/Understanding-Privacy-Daniel-J-Solove/dp/0674027728">a book about it</a> providing some sort of <a href="http://www.law.upenn.edu/journals/lawreview/articles/volume154/issue3/Solove154U.Pa.L.Rev.477(2006).pdf">comprehensive taxonomy of privacy harms</a>. In short, it is very short sighted of Rubin to claim that violations of online privacy cannot lead to harm.<br />
<blockquote>
  <p>
    <em>8) Increasing privacy leads to greater safety and less risk.</em> The opposite is true. Firms can use information to verify identity and reduce Internet crime and identity theft. Think of being called by a credit-card provider and asked a series of questions when using your card in an unfamiliar location, such as on a vacation. If this information is not available, then less verification can occur and risk may actually increase.
  </p>
</blockquote>The <a href="http://www.wired.com/politics/security/commentary/securitymatters/2008/03/securitymatters_0306">panopticon is a well understood and flawed model</a>. Giving firms and governments all the information reduces consumer liberty and gives firms/governments all the power. There needs to be a balance; banks can't have "anonymous" banking with them, and governments can't allow "anonymous" through their borders. However, governments shouldn't be able to ask banks about all their customers because they feel like create some sort of creepy <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Total_Information_Awareness">total awareness office</a>. If anything allowing consumers more control over their information and firms/governments less control makes it easier for consumers to keep those firms/governments honest leading to a more efficient market.<br />
<blockquote>
  <p>
    <em>9) Restricting the use of information (such as by mandating consumer "opt-in") will benefit consumers.</em> In fact, since the use of information is generally benign and valuable, policies that lead to less information being used are generally harmful.
  </p>
</blockquote>I'm calling wild assertion on this one. While the mass of information gathered is likely used for benign purposes, the exceptions which cause harm and the potential for this harm to occur if no controls are in place, is enough to justify their existence. That's why even though the majority of the populace don't commit crimes, we still have police for the few who do.
<blockquote>
  <p>
    <em>10) Targeted advertising leads people to buy stuff they don't want or need.</em> This belief is inconsistent with the basis of a market economy. A market economy exists because buyers and sellers both benefit from voluntary transactions. If this were not true, then a planned economy would be more efficient‚ - and we have all seen how that works.
  </p>
</blockquote>
<p>
  If Communism is to economists as Nazism is to moralists, then I'm calling <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Godwins_Law">Godwins Law</a> (I know, I lose). That being said, I'm not going to defend this point, as it's a dumb one. Targeted advertising is much better than untargeted advertising. Guess what's better for the consumer? NO ADVERTISING coupled with easy ways of finding out information on products they actually want to purchase. The only reason I allow advertising (and sometimes click the ads) is for sites I want to support who use ad-revenue, for the rest, there's ad block. But I try not to let any of them profile me to offer targeted ads, yet somehow I am still fully empowered to both find products I want, research them in detail and purchase them from companies selling them.
</p>
<p>
  This brings us to the end. In short, I disagree with everything Rubin says. He misunderstands that privacy advocates are looking for a balance of controls, not extremes, and makes unvalidated assertions about how information inherently leads to all sorts of good economic things. He also fails to consider abuses of information, which are the specific cases privacy advocates are trying to protect against.<br />
</p> ]]></content:encoded>
</item>


</channel>
</rss>
