<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Man Vs WebApp</title>
	<atom:link href="http://www.manvswebapp.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.manvswebapp.com</link>
	<description>Web Application Security Blog and Podcast</description>
	<lastBuildDate>Tue, 21 Feb 2012 22:42:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<!-- podcast_generator="podPress/8.8.10.13" -->
	<copyright>2006-2012 </copyright>
	<managingEditor>mightyseek@gmail.com (Dan Kuykendall)</managingEditor>
	<webMaster>mightyseek@gmail.com (Dan Kuykendall)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://www.manvswebapp.com/images/itunescover144.jpg</url>
		<title>Man Vs WebApp</title>
		<link>http://www.manvswebapp.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:new-feed-url>http://www.manvswebapp.com/feed/podcast</itunes:new-feed-url>
	<itunes:subtitle>A podcast dedicated to Web Application Security</itunes:subtitle>
	<itunes:summary>A podcast about web application security, as well as general web application development issues. The primary focus is on security with an effort to explain things so that anyone can understand them since security issues affect everyone across an organization. Hopefully this show will be a resource for everyone involved in a software development project.</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Technology">
		<itunes:category text="Tech News" />
	</itunes:category>
	<itunes:category text="Education">
		<itunes:category text="Training" />
	</itunes:category>
	<itunes:category text="Technology" />
	<itunes:author>Dan Kuykendall</itunes:author>
	<itunes:owner>
		<itunes:name>Dan Kuykendall</itunes:name>
		<itunes:email>mightyseek@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.manvswebapp.com/images/itunescover.jpg" />
		<item>
		<title>Watch your SaaS: Partial parameter checking or The case of the unfinished homework</title>
		<link>http://www.manvswebapp.com/watch-saas-case-unfinished-homework</link>
		<comments>http://www.manvswebapp.com/watch-saas-case-unfinished-homework#comments</comments>
		<pubDate>Mon, 20 Feb 2012 14:18:39 +0000</pubDate>
		<dc:creator>Dan Kuykendall</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Watch Your SaaS]]></category>
		<category><![CDATA[Web App Sec]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=936</guid>
		<description><![CDATA[&#8220;Laws are like sausages. It&#8217;s better not to see them being made.&#8221; - Otto von Bismarck I&#8217;m not sure how many of you have kids or how diligent they are with their homework but I&#8217;m sure you&#8217;ve heard stories of parents observing &#8230; <a href="http://www.manvswebapp.com/watch-saas-case-unfinished-homework">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Laws</em> are like <em>sausages</em>. It&#8217;s better not to see them being made.&#8221;</p>
<p>- Otto von Bismarck</p>
<p>I&#8217;m not sure how many of you have kids or how diligent they are with their homework but I&#8217;m sure you&#8217;ve heard stories of parents observing that their kids have finished their homework in a remarkably short period of time.  However, upon investigation, you quickly discover that your child has only finished half of their homework.</p>
<p>Sadly, this state of affairs can also true for SAAS providers offering web application scanning services.  Only half of the work gets done, resulting in rapid, but inaccurate scans and potentially vulnerable websites that are given clean bills of health by the scanning company.</p>
<h2>Taking shortcuts</h2>
<p>Properly configured web vulnerability scanners should test parameters by locating all of the parameters on a page and then making attacks against individual parameters at a time.  So if there are 10 parameters, you do an attack against parameter 1 and put acceptable values into the other 9 parameters to successfully complete the form request.</p>
<p>Why can&#8217;t you just attack all 10 at once?  Well, let&#8217;s say that parameter 1 is vulnerable and parameters 2 -10 have good filters. If you attack parameter one with an attack that works (i.e. the application does not recognize it) and parameter 2 with an attack that trips the filter in the application, the application will quite likely appear to not be vulnerable.</p>
<p>Now the problem is that if you are testing various attacks (SQL Injection, Blind SQL Injection, Cross Site Scripting, etc.) you will have dozens of attacks of each class against each parameter.  Your total attacks per parameter will exceed 100 and if you have 10 parameters on a page (which you will likely have in a signup form, for example), you will have over a thousand attacks for that page. On top of that, some of these attacks, like blind SQL, will have multiple requests per attack.</p>
<h2>Performance vs comprehensiveness</h2>
<p>Many SaaS vendors want to complete scans fast to make them look more impressive. The problem is that in order to accomplish, you have to cheat.</p>
<p>To speed up a scan, you might only test the first parameter or the first three or whatever and then skip testing the rest of the parameters.  If the customer doesn&#8217;t test the site and doesn&#8217;t get hacked, no one is the wiser if those untested parameters are vulnerable.</p>
<p>Does this matter?  Is it possible that one of parameters 4-10 is vulnerable if 1-3 are not?  In a word, yes.  Different parameter types (dates, text fields, numerical values, etc.) will have different filters.  Just because a developer got 1 right doesn&#8217;t mean that he got them all correct.  We&#8217;ve seen numerous cases where one parameter is 100% clean and others are full of holes.  You have to thoroughly test every parameter.</p>
<h2>Letting those POSTs get away with murder</h2>
<p>Since dealing with forms on web pages can be difficult and there is a possibility that they could modify data in the database behind the web application, some SaaS solutions don&#8217;t even attack them. So <span style="text-decoration: underline;">this means all the inputs from the forms never get tested.</span></p>
<p>On many of the sites we have tested over the last decade, the form inputs sent over POST have been some of the most critical attack points with some of the worst vulns and often the most important areas to test on a website. Not testing them is the same as locking your doors, but leaving your windows wide open.</p>
<h2>How can you assess your vendor</h2>
<p>Ask your vendor the hard questions, such as:</p>
<p>1. How many parameters do they attack per page? Are there limits they impose.</p>
<p>2. Ask them to demonstrate that only one parameter at a time gets attacked while the other fields having good data. Heck, ask them to put these answers in the Statement of Work (SOW).</p>
<p>3. Confirm that they attack forms and POST data. Ask them to demonstrate it or test it yourself with a trial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/watch-saas-case-unfinished-homework/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSA 2012: NT Objectives hosts ISE® VIP wine tasting reception &amp; book signing with Kevin Mitnick</title>
		<link>http://www.manvswebapp.com/rsa-2012-nt-objectives-hosts-ise-vip-wine-tasting-reception-book-signing-kevin-mitnick</link>
		<comments>http://www.manvswebapp.com/rsa-2012-nt-objectives-hosts-ise-vip-wine-tasting-reception-book-signing-kevin-mitnick#comments</comments>
		<pubDate>Sat, 18 Feb 2012 16:00:11 +0000</pubDate>
		<dc:creator>Matthew Cohen</dc:creator>
				<category><![CDATA[NT OBJECTives]]></category>
		<category><![CDATA[RSA]]></category>
		<category><![CDATA[Ghost in the Wires]]></category>
		<category><![CDATA[Kevin Mitnick]]></category>
		<category><![CDATA[RSA 2012]]></category>
		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=932</guid>
		<description><![CDATA[We are looking forward to RSA 2012 in San Francisco. We are excited to be hosting a VIP reception and a book signing with Kevin Mitnick with T.E.N and their ISE® Alumni VIP Hosts. Tuesday, February 28th, 2012 6:00 pm – 8:00 pm Restaurant &#8230; <a href="http://www.manvswebapp.com/rsa-2012-nt-objectives-hosts-ise-vip-wine-tasting-reception-book-signing-kevin-mitnick">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We are looking forward to <a href="http://www.rsaconference.com/events/2012/usa/mightier.htm">RSA 2012</a> in San Francisco. We are excited to be hosting a VIP reception and a book signing with <a href="http://mitnicksecurity.com/">Kevin Mitnick</a> with <a href="http://www.techexecnetworks.com/">T.E.N</a> and their ISE® Alumni VIP Hosts.</p>
<ul>
<li>Tuesday, February 28<sup>th</sup>, 2012</li>
<li>6:00 pm – 8:00 pm</li>
<li><a href="http://maps.google.com/maps?q=Restaurant+Lulu,+Folsom+Street,+San+Francisco,+CA&amp;hl=en&amp;sll=37.783986,-122.40131&amp;sspn=0.007131,0.009495&amp;vpsrc=0&amp;hq=Restaurant+Lulu,+Folsom+Street,+San+Francisco,+CA&amp;t=m&amp;z=15">Restaurant LuLu</a></li>
</ul>
<div><strong><a href="http://www.iseprograms.com/RSA2012.asp#NTO">Register now!</a></strong></div>
<p>Each guest will receive a complimentary copy of <a href="http://www.nytimes.com/2011/08/14/books/review/ghost-in-the-wires-by-kevin-mitnick-with-william-l-simon-book-review.html">Ghost in the Wires</a>, enjoy tasting some rare wines from Europe&#8217;s finest boutique wineries with me and have the opportunity to  connect with leading CISOs.</p>
<p>The wines have been selected by NTO&#8217;s own wine geek, <a title="Matthew Cohen" href="http://www.manvswebapp.com/author/mcohen">me</a>, and come from San Francisco&#8217;s hottest wine bar, <a title="Terroir Wine Bar" href="http://www.terroirsf.com/">Terroir</a>. These are “<a title="Natural Wine" href="http://rockssandfruit.blogspot.com/2010/08/lets-drink-some-fing-natural-wine.html" target="_blank">natural” wines</a> (<em><strong>WARNING</strong></em>: That links to a video that unnecessarily overuses and abuses of the f-bomb, but it is the best explanation of natural wines and its entertaining as well.) made with minimal intervention to preserve their unique flavor profiles and as such, are favored by industry insiders and wine geeks.</p>
<p>As the ISE® VIP Programs have been oversubscribed in previous years due to limited availability and strong interest, we recommend that you register early.</p>
<p>Hope to see you there!</p>
<p><a href="http://www.iseprograms.com/RSA2012.asp#NTO">More information on the NTObjective&#8217;s ISE VIP Reception and Book Signing</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/rsa-2012-nt-objectives-hosts-ise-vip-wine-tasting-reception-book-signing-kevin-mitnick/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NT OBJECTives Positioned in the “Visionaries” Quadrant of the Magic Quadrant for Dynamic Application Security Testing (DAST)</title>
		<link>http://www.manvswebapp.com/nt-objectives-positioned-visionaries-quadrant-magic-quadrant-dynamic-application-security-testing-dast</link>
		<comments>http://www.manvswebapp.com/nt-objectives-positioned-visionaries-quadrant-magic-quadrant-dynamic-application-security-testing-dast#comments</comments>
		<pubDate>Fri, 17 Feb 2012 17:37:41 +0000</pubDate>
		<dc:creator>Matthew Cohen</dc:creator>
				<category><![CDATA[NT OBJECTives]]></category>
		<category><![CDATA[Web App Sec]]></category>
		<category><![CDATA[Application Security]]></category>
		<category><![CDATA[Dynamic Application Security Testing]]></category>
		<category><![CDATA[Gartner]]></category>
		<category><![CDATA[Magic Quadrant]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=1018</guid>
		<description><![CDATA[Recent Gartner research positioned NT OBJECTives in the Visionaries quadrant for Dynamic Application Security Testing(DAST).(i) Gartner&#8217;s report was published in December and is now available to all Gartner subscribers. Analysts Neil MacDonald and Joseph Feiman state in the report that &#8230; <a href="http://www.manvswebapp.com/nt-objectives-positioned-visionaries-quadrant-magic-quadrant-dynamic-application-security-testing-dast">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recent <a href="http://www.gartner.com/technology/home.jsp">Gartner</a> research positioned <a href="http://ntobjectives.com">NT OBJECTives</a> in the Visionaries quadrant for <a href="http://blogs.gartner.com/neil_macdonald/2012/01/04/the-market-for-dynamic-application-security-testing-is-anything-but-static-2/">Dynamic Application Security Testing(DAST)</a>.(i) <a href="http://www.gartner.com/DisplayDocument?ref=clientFriendlyUrl&amp;id=1883624">Gartner&#8217;s report </a>was published in December and is now available to all Gartner subscribers.</p>
<p>Analysts <a href="http://blogs.gartner.com/neil_macdonald">Neil MacDonald</a> and <a href="http://www.gartner.com/AnalystBiography?authorId=10326">Joseph Feiman</a> state in the report that “Dynamic Application Security Testing (DAST) solutions should be considered mandatory to test all Web-enabled enterprise applications, as well as packaged and cloud-based application providers.” They go on to note that “the market is maturing, with a large number of established providers of products and services.”(ii)</p>
<p>We consider our positioning in the “Visionaries” quadrant by Gartner confirmation of our mission and ability to deliver <a href="http://ntobjectives.com/software">technologies</a> and <a href="http://ntobjectives.com/services">services</a> that solve today’s toughest application security software challenges. Web application security represents one of the greatest security challenges facing the information technology industry today. We will continue to innovate and deliver the products today’s security teams need. In the months ahead, we are excited to launch a number of products that will further enhance our market position and help our customers.</p>
<p>In the report, <a href="http://www.gartner.com/AnalystBiography?authorId=7299">MacDonald</a> and <a href="http://www.gartner.com/AnalystBiography?authorId=10326">Feiman</a> also note that “as organizations have improved the security of their network, desktop and server infrastructures, there has been a shift to application-level attacks as a way to gain access to the sensitive and valuable information they handle, or to use a breach of an application to gain access to the system underneath. In addition, there has been a shift in attacker focus from mass &#8220;noisy&#8221; attacks to financially motivated, targeted attacks. As a result of these trends, application security has become a top investment area for information security organizations, whether improving the security of applications developed in-house, procured from third parties or consumed as a service from cloud providers.”(iii)<br />
Gartner clients may view a copy of the Magic Quadrant for Dynamic Application Security Testing (DAST) report via Neil MacDonald’s blog, “<a href="http://blogs.gartner.com/neil_macdonald/2012/01/04/the-market-for-dynamic-application-security-testing-is-anything-but-static-2/">The Market for Dynamic Application Security Testing is Anything but Static</a>”.</p>
<p>Disclaimer:<br />
Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings. Gartner research publications consist of the opinions of Gartner&#8217;s research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.</p>
<p><a href="http://ntobjectives.com">About NT Objectives</a><br />
NT OBJECTives, Inc brings together an innovative collection of experts in information security to provide a comprehensive suite of technologies and services to solve today’s toughest application security challenges. NT OBJECTives solutions are well known as the most comprehensive and accurate Web Application security solutions available. NT OBJECTives is privately held with headquarters in Irvine, CA.</p>
<p>(i) Gartner “Magic Quadrant for Dynamic Application Security Testing” by Neil MacDonald and Joseph Feiman, December 27,2011<br />
(ii) Gartner “Magic Quadrant for Dynamic Application Security Testing” by Neil MacDonald and Joseph Feiman, December 27,2011<br />
(iii) Gartner “Magic Quadrant for Dynamic Application Security Testing” by Neil MacDonald and Joseph Feiman, December 27,2011</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/nt-objectives-positioned-visionaries-quadrant-magic-quadrant-dynamic-application-security-testing-dast/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surviving the Week &#8211; 02/17/2012</title>
		<link>http://www.manvswebapp.com/surviving-week-02172012</link>
		<comments>http://www.manvswebapp.com/surviving-week-02172012#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:15:39 +0000</pubDate>
		<dc:creator>Dan Kuykendall</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Surviving The Week]]></category>
		<category><![CDATA[Web App Sec]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=1036</guid>
		<description><![CDATA[The NTO team keeps growing and the demands of running the business and supporting our customers is keeping me busy&#8230; and its a blast. But now its good to be getting back to these weekly postings. On to the news, so &#8230; <a href="http://www.manvswebapp.com/surviving-week-02172012">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The NTO team keeps growing and the demands of running the business and supporting our customers is keeping me busy&#8230; and its a blast. But now its good to be getting back to these weekly postings.</p>
<p>On to the news, so I can help keep you all informed about the important news in web app security.</p>
<ul>
<li><a href="http://edition.cnn.com/2012/02/15/tech/web/government-online-id/index.html" target="_blank">Will a standardized system for verifying Web identity ever catch on?</a> - Maybe the question is &#8220;Do we even want a standardized system for verifying Web Identity?&#8221; I for one see stuff like this everyday, and if the FBI&#8217;s site can be hacked, who is going to promise the security of OpenID? It will just become the single place an attacker has to attack to get access to everyone&#8217;s confidential/private data.</li>
<li><a href="http://shreeraj.blogspot.in/2012/02/csrf-with-upload-xhr-l2-html5-and.html" target="_blank">CSRF with upload – XHR-L2, HTML5 and Cookie replay</a> - XHR-Level 2 calls embedded in an HTML5 browser can open a cross domain socket and deliver an HTTP request. Cross-domain calls will abide by CORS, but browsers end up  generating preflight requests to check policy and based on that, will allow cookie replay. Interestingly, multi-part/form-data requests will go through without the preflight check and “withCredentials” allow cookie replay. This is how some new cutting edge attacks are going to be performed.</li>
<li><a href="https://blog.whitehatsec.com/vote-now-top-ten-web-hacking-techniques-of-2011/" target="_blank">Vote Now! Top Ten Web Hacking Techniques of 2011</a> &#8211; This is an incredibly useful survey that they do each year. So, please vote to help the community get an idea of what is interesting and important to you.</li>
<li><a href="http://www.cio.com/article/700421/Twitter_Enables_HTTPS_By_Default" target="_blank">Twitter Enables HTTPS By Default</a> &#8211; As sites like Google, Facebook and now Twitter start pushing all traffic to HTTPS, I fear that users will mistake this for real security. <em>&#8220;Oh, I can put all my information on Facebook/Twitter/etc now because they are &#8216;secure&#8217;. See there is even a little padlock icon in my browser when I go to those sites, just like the bank.&#8221; &#8211; FAIL</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/surviving-week-02172012/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Julian Assange &#8211; Hacker of the Year?</title>
		<link>http://www.manvswebapp.com/julian-assange</link>
		<comments>http://www.manvswebapp.com/julian-assange#comments</comments>
		<pubDate>Thu, 16 Feb 2012 00:49:35 +0000</pubDate>
		<dc:creator>Matthew Cohen</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=899</guid>
		<description><![CDATA[On Dan and Jim&#8217;s recent podcast, I learned that Julian Assange had been declared Hacker of the Year. Assange is certainly a person that elicits strong opinions out of people, one way or another. Much ink has been spilt over &#8230; <a href="http://www.manvswebapp.com/julian-assange">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On Dan and Jim&#8217;s <a href="http://www.manvswebapp.com/an-information-security-place-podcast-episode-01-for-2012">recent podcast</a>, I learned that <a href="http://www.guardian.co.uk/media/julian-assange">Julian Assange</a> had been declared Hacker of the Year. <a href="http://www.guardian.co.uk/media/julian-assange">Assange</a> is certainly a person that elicits strong opinions out of people, one way or another.</p>
<p>Much ink has been spilt over personal privacy in the modern age &#8211; most of it has been over whether we have any expectation of <span style="text-decoration: underline;">personal</span> privacy in our lives.  I emphasize the word personal because it is generally agreed that it would be nice if we had personal privacy.  That is I really do not want my credit card data, my health data and my banking information splattered all over.  Without getting too far into this, I can agree that many of us have made the affirmative decision to, wittingly or unwittingly, to broadcast a ton of personal information about ourselves on the Internet through Facebook, Foursquare and the like.  The argument is generally about whether we have any hope of maintaining the privacy of our personal information in this day and age.</p>
<p>But that is not what is interests me about <a href="http://www.guardian.co.uk/media/julian-assange">Assange</a> and his potential copycats.  The area of privacy that Assange has threatened is more corporate privacy.  I should say enterprise because this would include government and nonprofit but corporate privacy sounds better.</p>
<p>Assange, as we know, has facilitated the dissemination of private enterprise communications for all the world to see.  His motivations are very clear; he seeks to expose wrongdoers by providing evidence of evil deeds.  For the sake of argument, let us agree that, in the words of Richard Nixon, &#8220;mistakes were made&#8221; by the enterprises exposed by Mr. Assange.  Let us also assume, for the sake of argument, that Mr. Assange&#8217;s motives were pure and he does this for the sole purpose of punishing the wicked and discouraging bad behavior in the future.  While i have not met Mr. Assange, I actually have no reason to doubt this.</p>
<p>My question is this: do we have any right to or expectation of corporate privacy?</p>
<p>This is a trickier question than one of personal privacy.   Almost all enterprises have policies that explicitly state that our communications over media owned by them (e.g. E-Mail) are owned by the enterprise.  Having said that, there is an implicit expectation of the confidentiality of certain communications between parties in the corporate world.</p>
<p>Some examples come to mind where corporate privacy is beneficial to us as a society.</p>
<ul>
<li>Communications About Personnel</li>
<li>Personal Information (e.g.Health Information)</li>
<li>Corporate Secrets</li>
<li>Sensitive Information</li>
</ul>
<p>Now I am sure that Mr. Assange would agree with most or all of these points.  I have never met Mr. Assange and can&#8217;t state with any certainty how he would respond but a possible response would be that he should be trusted to weigh these risks and decide what and should not be published based on the benefits of the dissemination and the potential harm.</p>
<p>I would also point out that we are entering a brave new world of whistleblower disclosures.  journalists have long reported on instances of whistleblowing but they very carefully extract documents as opposed to disseminating vast quantities of microdata as Mr. Assange has.  Additionally, journalists (at least in the US) are exposed to potential litigation if they cause harm by their actions.  Mr. Assange has intentionally (by his own admission) set up in jurisdictions to minimize his risk of litigation.</p>
<p>My question is, is that really how we as a civilized society (or at least a society striving to be civilized) wants a decision that has potentially significant impact on corporate privacy to be made?</p>
<p>For the sake of argument, let&#8217;s look at another decision that we make.  Punishment.  There are millions of criminals in this country and others that violate the understood morals of the society in which they live.  Do we allow individuals to decide to punish them?  If I see someone stealing an old woman&#8217;s purse, do I grab him and lock him in my basement?  Of course the answer is no.  We have a codified system of laws and a judicial system made up of individuals who effect judgement and punishment of criminals.  We do not leave these decisions to individual people or groups of people.</p>
<p>One can argue that Mr. Assange is basically a whistleblower (or a facilitator of whistleblowers).  A whistleblower is someone who reports wrongdoing.  There is some degree of legal protection for whistleblowers both in the US and internationally and I am personally certainly  on board with the idea of exposing evildoers.</p>
<p>I guess that my question is whether dumping E-Mails on the Internet is the optimal way to do this.  The question is, is there a better solution?  The irony is that I think that the security community has actually already come up with a better solution.  When a security researcher discovers a vulnerability, most will contact the vendor. The vendor is supposed to investigate the claim and crate and release a patch before the researcher releases the exploit.  Now this system doesn&#8217;t always work perfectly but it at least allows the responsible party to do the right thing before the world knows that their system can be hacked.</p>
<p>Maybe this is a better model for whistleblowers.   If a crime is committed, the evidence can be sent to the appropriate government authorities with a reasonable deadline for action.  The government should be able to act while using its resources to scrub the communications and minimize the damage to corporate privacy.  If the government fails to act and cannot convince the Assange&#8217;s of the world of their reasoning, then all bets are off.  This problem, of course, becomes much trickier if the wrongdoer is the government but the government does have mechanisms to investigate itself.  This idea is admittedly a Devil&#8217;s Bargain but it may be better than the situation we find ourselves in today.  If Mr. Assange and his imitators continue to have success, it may be better for governments to try to strike deals with them rather than risk widespread dissemination of confidential information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/julian-assange/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tales from the Web Scanning Front: Why is This Scan Taking So Long?</title>
		<link>http://www.manvswebapp.com/tales-from-the-web-scanning-front-why-is-this-scan-taking-so-long</link>
		<comments>http://www.manvswebapp.com/tales-from-the-web-scanning-front-why-is-this-scan-taking-so-long#comments</comments>
		<pubDate>Tue, 10 Jan 2012 12:00:51 +0000</pubDate>
		<dc:creator>Matthew Cohen</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[NT OBJECTives]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tales from the Web Scanning Front]]></category>
		<category><![CDATA[Web App Sec]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=885</guid>
		<description><![CDATA[As CEO, I&#8217;m constantly emphasizing the importance of customer support and trying to attend several support calls each week to stay on top of our support quality and what customers are asking. Surprisingly, application scan times are one of the &#8230; <a href="http://www.manvswebapp.com/tales-from-the-web-scanning-front-why-is-this-scan-taking-so-long">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As CEO, I&#8217;m constantly emphasizing the importance of customer support and trying to attend several support calls each week to stay on top of our support quality and what customers are asking.</p>
<p>Surprisingly, application scan times are one of the most common issues raised by customers.  Occasionally, scans will take days or even weeks.</p>
<p>At this point, I would say that in almost all cases, there is an issue that lies within the application&#8217;s environment as opposed to a something within the software.</p>
<p>First some background on <a href="http://en.wikipedia.org/wiki/Web_application_security_scanner">web application security scanners</a>. Web scanners first crawl websites, enumerate attack points and then create custom attacks based on the site.  So, for example, if I have a small site with 200 attackable inputs and each one can be attacked 200 ways, with each attack requiring 2 requests, I have 200*200*2 or 80,000 requests to assess that site.</p>
<p>Now <a href="www.ntobjectives.com/ntospider">NTOSpider</a> can be configured to use up to 64 simultaneous requests so depending on the response time from the server, you can run though requests very quickly.  Assuming, for example, 10 requests a second, that&#8217;s 600 per minute, 36,000 per hour and you can get through that site in 2.22 hours.</p>
<p>The problem is that quite often the target site is not able to handle 10 or even 1 request per second.  Some reasons can include:</p>
<ul>
<li><strong>Still in development - </strong>The site is in development and has limited processing power and/or memory.</li>
<li><strong>Suboptimal optimization</strong> - The site is not built to handle a high level of traffic and this has not yet shown up in QA.  We were on the phone with a customer last month who allowed us to look at the server logs and we saw that one process involved in one of our requests was chewing up 100% of the CPU for 5 seconds.  Another application was re-adding every item to the database each time the shopping cart was updated (as opposed to just the changes) and our 5,000 item cart was severely stressing the database.</li>
<li><strong>Middleware</strong>  Not to bash any particular vendor (Coldfusion) but some middleware is quite slow.</li>
</ul>
<p>So let&#8217;s look at our 80,000 request example from above and assume that our site can only handle 1 request per second.  Our 2.2 hour scan time balloons to 22 hours.  For our 5 second response in bullet 2, we get to 4.6 days for our little site.  The good news is that <a href="www.ntobjectives.com/ntospider">NTOSpider</a> can be configured to slow itself down so as to not DOS the site (this is our Auto-Throttle feature).  The bad news is that it will take some time.</p>
<p>So what&#8217;s a poor tester to do?</p>
<ul>
<li><strong>Beefier hardware</strong>  If you are budgeting for a web scanner,  consider spending a couple of extra thousand dollars on some decent hardware to test your apps. (Note &#8211; a modern laptop with optimal ram for the OS you are running &#8211; 32-bit OS = 4 Gigs of ram / 64-Bit OS = 8 Gigs of ram &#8211; will solve 90% of all performance issues.)</li>
<li><strong>Scheduling</strong>  In some cases, you can schedule scans so that even if they are longer, you can still get things done in time.</li>
<li><strong>Segmenting</strong>  In some cases, if you know that only a portion of the site has changed, you can target the scan to test only that subset and dramatically reduce scan time.</li>
<li><strong>Code Augmentation</strong>  Not to put too fine a point on it, but if a single request is taking 5 seconds to process, a hacker can DOS your site by hand.  You might want the developers to look at adjusting the code.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/tales-from-the-web-scanning-front-why-is-this-scan-taking-so-long/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A non-security geek way to question the Iran drone hack</title>
		<link>http://www.manvswebapp.com/a-non-security-geek-way-to-question-the-iran-drone-hack</link>
		<comments>http://www.manvswebapp.com/a-non-security-geek-way-to-question-the-iran-drone-hack#comments</comments>
		<pubDate>Mon, 09 Jan 2012 20:03:52 +0000</pubDate>
		<dc:creator>Jim Broome</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Iran drone hack]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=844</guid>
		<description><![CDATA[So, over the past few days we’ve seen several articles about the recent/potential hacking of one of our military UNAV planes over Iran.  Naturally the security geek in me has been piqued to learn more details about how this was &#8230; <a href="http://www.manvswebapp.com/a-non-security-geek-way-to-question-the-iran-drone-hack">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>So, over the past few days we’ve seen several articles about the recent/potential hacking of one of our military <a href="http://www.wired.com/dangerroom/2011/12/iran-drone-hack-gps/">UNAV planes over Iran</a>.  Naturally the security geek in me has been piqued to learn more details about how this was done.In the latest information, one of the Iranian engineers talks about jamming the command and control signals to the <a href="http://u-nav.com/">plane</a> and forcing it to go into auto-pilot mode. Then hacking the plane at its weakest point, aka its GPS system. As a security minded person, I can make lots of arguments on the technical and security related challenges of these statements. However as a big radio frequency (RF) and remote control (RC) enthusiast, I  wanted to talk to a few points of this proposed attack and what may or may not be possible.</div>
<div></div>
<div><strong>Command and Control Jamming</strong>- If  you are into RC planes and are big on electronics then finding out that there are kits out there already to build your own small scale UNAV system is nothing new. <a href="http://u-nav.com/">U-Nav.com (www.u-nav.com)</a> has been in business for years and makes some of the best solutions for building solutions on the small scale.  Their latest kit includes using XBee based radios or modems to send command and control information to the UNAV system from the ground station.  As described in the Iranian attack, once this signal is jammed, the software goes into auto-pilot mode.  This auto-pilot mode usually instructs the aircraft to fly home or to a pre-determined GPS <a href="http://en.wikipedia.org/wiki/Waypoint">waypoint</a> and hover (fly in circles) around the <a href="http://en.wikipedia.org/wiki/Waypoint">waypoint</a> until the command and control connection are re-established or perform a controlled crash (typically a flat spin) once power has been depleted to the craft.</div>
<div>
<p>Reading up on the latest Info-warfare solutions that we theorize that Iran has at their disposal, it looks as if they have the proper surface-to-air platforms to use to perform this attack. Just keep in mind that jamming most RF signals is entirely possible, just by broadcasting “noise” on the same set of frequencies that the RF receiver is trying to listen in on.</p>
<p><strong><a href="http://www.economist.com/node/18304246">GPS Jamming</a></strong> &#8211; GPS jamming is extremely easy.  Heck you can now find complete kits on the Internet to perform just about any jamming you need.  Worried about privacy issues, install a jammer. Worried that law enforcement has installed a GPS or Lo-jack tracker on your car, install a jammer. Yep, its that easy.</p>
<p><strong>Note</strong> &#8211; Just remember that it is illegal for you to build or use one in the US (as well as many other countries).</p>
<p><strong>Waypoint Hacking</strong> &#8211; This is the most interesting point of the Iranian hack. According to some of the articles, Iran claims to have altered the GPS signal going to the UNAV system and giving the plane enough information to land safely at a location in Iran.  What is impressive here are the technical challenges to perform this hack:</p>
<ul>
<li><strong>Pushing updated data to the craft</strong> &#8211; The part I struggle with the most, is the claim that a ground-based tracking station/platform was used to performed this attack.  As I stated, jamming is rather easy.  But jamming while also updating coordinates is complex&#8230; especially when doing this to a craft that is above your elevation, fling at 200+ MPH, and you are overriding a signal coming from a satellite that is located above both you and the target. I’d love to hear from any military types on this capability.  But as stated, its one heck of a hurdle to overcome.</li>
</ul>
<ul>
<li><strong>Knowing the Waypoint to Spoof/Alter</strong> &#8211; To have the plane land at a location of your choosing assumes you know where its original destination was located at to begin with.  Since Iran stated they analyzed several previously crashed aircraft, I’ll have to assume they were able to gather this information through these or more traditional information gathering efforts..aka &#8211; everyone in the region knows all the planes come from 1 or 2 bases.</li>
</ul>
<ul>
<li><strong>Overriding The Waypoint</strong> &#8211; The other part I struggle with in the articles is the statement that Iran chose where to land the plane. This basically assumes that they tricked the plane into thinking it was over Afghanistan instead of Iran and was to land at its pre-determined waypoint.  All jokes aside about both places being mostly desert, still the locations are not identical.  To do this part of the attack, you have to overide not only the physical location but also important factors such as the topology of the landing site&#8230; aka altitude, approach angle, and wind direction.</li>
</ul>
<p>It is these last three challenges that make me question the validity of the “hack” that took place, at least as described so far.  But since I know the challenges, I’m also eager to hear on the techniques and solutions to overcome these hurdles. As always, I’ll wait to hear more before giving a final verdict, but just wanted to open up a discussion on the basic hurdles that needed to be overcome for this attack to work.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/a-non-security-geek-way-to-question-the-iran-drone-hack/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Information Security Place Podcast – Episode 01 for 2012 &#8211; Breach Report</title>
		<link>http://www.manvswebapp.com/an-information-security-place-podcast-episode-01-for-2012</link>
		<comments>http://www.manvswebapp.com/an-information-security-place-podcast-episode-01-for-2012#comments</comments>
		<pubDate>Fri, 06 Jan 2012 19:50:10 +0000</pubDate>
		<dc:creator>Dan Kuykendall</dc:creator>
				<category><![CDATA[Infosec Place]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web App Sec]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=904</guid>
		<description><![CDATA[Wow! Six Months…and two job changes later, we are finally back to recording! YEAH!….Here the latest show from our intrepid hosts. Show Notes: InfoSec News Update – The Hacker News Hacking Awards: Best of Year 2011 Japan’s Anti-Virus Virus Nginx &#8230; <a href="http://www.manvswebapp.com/an-information-security-place-podcast-episode-01-for-2012">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow! Six Months…and two job changes later, we are finally back to recording! YEAH!….Here the latest show from our intrepid hosts.</p>
<p><strong>Show Notes:</strong></p>
<p><strong></strong><strong>InfoSec News Update –</strong></p>
<ul>
<li><a href="http://thehackernews.com/2012/01/hacker-news-hacking-awards-best-of-year.html">The Hacker News Hacking Awards: Best of Year 2011</a></li>
<li><a href="http://nakedsecurity.sophos.com/2012/01/03/japan-cyber-weapon-bad/">Japan’s Anti-Virus Virus</a></li>
<li><a href="http://www.infoworld.com/t/application-servers/nginx-overtakes-microsoft-no-2-web-server-183079">Nginx (pronunciation: “engine-ex”) becomes #2 web server</a></li>
<li><a href="http://www.ynetnews.com/articles/0,7340,L-4170465,00.html">Saudi hackers break into Israeli site</a></li>
<li><a href="http://www.darkreading.com/compliance/167901112/security/news/232301224/three-surefire-ways-to-tick-off-an-auditor.html">3 Surefire Ways to Tick Off an Auditor</a></li>
<li><a href="http://milo2012.wordpress.com/2011/12/26/owasp-ajax-crawling-tool-good-companion-tool-to-burpsuite/">OWASP AJAX Crawling Tool</a> – <a href="https://www.owasp.org/index.php/OWASP_AJAX_Crawling_Tool">Link2</a></li>
</ul>
<p><strong>Discussion Topic – </strong>2012 Breach Report</p>
<ol>
<li><a href="http://www.darkreading.com/authentication/167901072/security/attacks-breaches/232301315/care2-discloses-breach-company-has-nearly-18-million-members.html">Care2 Discloses Breach; Company Has Nearly 18 Million Members</a></li>
<li><a href="http://blogs.computerworld.com/19507/double_wham_bam_antisec_hacks_dumps_ca_ny_law_enforcement_emails">AntiSec hit California and NY Law Enforcement Sites</a></li>
<li><a href="http://www.darkreading.com/authentication/167901072/security/privacy/232301084/anonymous-nabs-50-000-credit-card-numbers-from-security-think-tank.html">Anonymous Nabs 50,000 Credit Card Numbers From Security Think Tank</a></li>
</ol>
<p><strong>Music Notes: </strong>Special Thanks to the guys at <a href="http://www.rivetheadonline.com/">RivetHead</a> for use of their tracks</p>
<ul>
<li>Intro – RivetHead – <a href="http://itunes.apple.com/us/album/the-13th-step/id276876886?uo=4">“</a>The 13th Step”</li>
<li>News Bed – RivetHead - <a href="http://itunes.apple.com/us/album/rivethead/id205559395?uo=4">“Beautiful Disaster”</a></li>
<li>Discussion Bed – RivetHead - <a href="http://itunes.apple.com/us/album/rivethead/id205559395?uo=4">“Difference”</a></li>
<li>Outro – RivetHead – <a href="http://itunes.apple.com/us/album/zero-gravity/id327357104?uo=4">“Zero Gravity”</a></li>
<li><strong>Tour Dates:</strong>
<ol>
<li>Jan 6 – Dallas – Curtain Club</li>
<li>Jan 27 – Dallas – Trees</li>
<li>Jan 28 – Dallas – Trees</li>
<li>Mar 2 – Dallas – Curtain Club – <strong>7th Album CD Release Party</strong></li>
<li>Mar 3 – Houston – BFE Rock Club</li>
<li>Mar 24 – Fort Worth – The Rail Club</li>
<li>May 5 – Dallas – Renos Chop Shop</li>
</ol>
</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/an-information-security-place-podcast-episode-01-for-2012/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<enclosure url="http://www.manvswebapp.com/podpress_trac/feed/904/0/AnInformationSecurityPlacePodcast-Episode01-2012.mp3" length="63572096" type="audio/mpeg" />
		<itunes:duration>0:32:04</itunes:duration>
		<itunes:subtitle>Wow! Six Months…and two job changes later, we are finally back to recording! YEAH!….Here the latest show from our intrepid hosts.
Show Notes:
InfoSec News Update –

The Hacker News Hacking Awards: Best of Year 2011
Japan’s Anti-Virus Virus
N[...]</itunes:subtitle>
		<itunes:summary>Wow! Six Months…and two job changes later, we are finally back to recording! YEAH!….Here the latest show from our intrepid hosts.
Show Notes:
InfoSec News Update –

The Hacker News Hacking Awards: Best of Year 2011
Japan’s Anti-Virus Virus
Nginx (pronunciation: “engine-ex”) becomes #2 web server
Saudi hackers break into Israeli site
3 Surefire Ways to Tick Off an Auditor
OWASP AJAX Crawling Tool – Link2

Discussion Topic – 2012 Breach Report

Care2 Discloses Breach; Company Has Nearly 18 Million Members
AntiSec hit California and NY Law Enforcement Sites
Anonymous Nabs 50,000 Credit Card Numbers From Security Think Tank

Music Notes: Special Thanks to the guys at RivetHead for use of their tracks

Intro – RivetHead – “The 13th Step”
News Bed – RivetHead - “Beautiful Disaster”
Discussion Bed – RivetHead - “Difference”
Outro – RivetHead – “Zero Gravity”
Tour Dates:

Jan 6 – Dallas – Curtain Club
Jan 27 – Dallas – Trees
Jan 28 – Dallas – Trees
Mar 2 – Dallas – Curtain Club – 7th Album CD Release Party
Mar 3 – Houston – BFE Rock Club
Mar 24 – Fort Worth – The Rail Club
May 5 – Dallas – Renos Chop Shop



&#160;</itunes:summary>
		<itunes:keywords>Network, Podcasts, Security</itunes:keywords>
		<itunes:author>Dan Kuykendall</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>no</itunes:block>
	</item>
		<item>
		<title>Assessing risk before you buy software: Is company risk inversely related to company size</title>
		<link>http://www.manvswebapp.com/assessing-risk-before-you-buy-software-is-company-risk-inversely-related-to-company-size-2</link>
		<comments>http://www.manvswebapp.com/assessing-risk-before-you-buy-software-is-company-risk-inversely-related-to-company-size-2#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:09:15 +0000</pubDate>
		<dc:creator>Matthew Cohen</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[NT OBJECTives]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=854</guid>
		<description><![CDATA[Software purchase risk assessment I recently stumbled across this article which got me thinking about the risks organizations take when they buy technology products and what kind of risk assessment process is conducted. Our company sells application security assessment software &#8230; <a href="http://www.manvswebapp.com/assessing-risk-before-you-buy-software-is-company-risk-inversely-related-to-company-size-2">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div><strong>Software purchase <a href="http://en.wikipedia.org/wiki/Risk_assessment">risk assessment</a></strong></div>
<div>I recently stumbled across this article which got me thinking about the risks organizations take when they buy technology products and what kind of <a href="http://en.wikipedia.org/wiki/Risk_assessment">risk assessment</a> process is conducted. Our company sells <a href="http://en.wikipedia.org/wiki/Software_security">application security</a> assessment software to people who are experts at managing<a href="http://en.wikipedia.org/wiki/IT_risk"> IT security risk</a>, so I&#8217;m curious to hear what others think.</div>
<div></div>
<div><a href="http://finance.yahoo.com/news/11-companies-edge-2012-003300230.html"> 11 Companies On the Edge in 2012</a><br />
#8 on the list.<br />
<a href="http://www.hp.com/"> Hewlett-Packard</a>. Stock decline: 38 percent.<br />
“HP is on its third CEO in less than two years, with the turnover reflecting strategic confusion that has impaired earnings, enraged shareholders and raised concerns that HP is too unwieldy to be run effectively. With operations in many business and consumer markets, HP has numerous competitors that have been nibbling market share, leading to disappointing results likely to continue into 2012. Some analysts worry that a heavy focus on acquisitions in recent years has left holes in HP&#8217;s new-product pipeline. New CEO <a href="http://en.wikipedia.org/wiki/Meg_Whitman">Meg Whitman</a> may enjoy a bit of a honeymoon, but she&#8217;ll need to prove herself by the second half of 2012.”</div>
<p>First, I’d like to clear the air in the spirit of full disclosure.</p>
<div>
<ol>
<li>I have nothing against technology conglomerates and believe that they fill an essential role in our economy.</li>
<li>At various times in my own company’s history, HP and its subsidiaries have been customers, partners and vendors.</li>
<li>I have personally purchased and used many HP products over the years and am a fan of Meg Whitman for her work at eBay.</li>
<li>My company directly competes with HP in the application security space as I mentioned.</li>
<li>I am co-CEO of a privately held company that has been profitable for over six years.  Now on with the post.</li>
</ol>
<p>The common wisdom seems to be that when purchasing technology products there is little or no risk with large firms and significant risk with smaller firms.</p>
<p>In my experience, this isn&#8217;t really true.</p>
<p>Let’s look at the varying types of risk in purchasing technology (this is not specific to application security technology)</p>
<ul>
<li><strong>Technology and Support Team Risk</strong> &#8211; With any technology, particularly complex technologies, there is a huge risk that the team responsible for creating that technology will change for the worse, and later versions of the product will get worse over time after the customer has spent a significant amount of money for a perpetual license where the product is supposed to last 3-5 years or more.  Customers expect to be able to get ongoing support for the product that they have purchased. This is particularly important with more complex products.</li>
</ul>
<div>In building application security software, for example, building and maintaining a team of top developers is crucial because the industry-specific knowledge requried to create a leading product requires years of coding and domain expertise as is the case in many industries.</div>
<div></div>
<ul>
<li><strong>Bankruptcy Risk</strong> &#8211; Obviously, if a company goes bankrupt and is dissolved, there will be no further upgrades or support.</li>
<li><strong>Strategic Risk</strong> &#8211; Companies can decide that the product purchased by the customer does not meet its overall strategy and end-of-life the product. Upgrades will be limited and support will likely wither during the last years of the product’s life.</li>
<li><strong>Layoff Risk</strong> -When companies effect layoffs, products can suffer, which impacts both the technology on an ongoing basis as well as the support.</li>
<li><strong>Risk of Sale</strong> &#8211; When private companies sell to larger companies, there is always the risk that technology and support teams will leave. This can even be the case if their shares vest over time if there are significant cultural or power conflicts or if the incentives are insufficient.</li>
</ul>
<p>Let’s look at these risk factors by firm size, profitability and recency of technology acquisition:</p>
<p><span style="text-decoration: underline;"><strong>Unprofitable Private Companies</strong></span></p>
<ul>
<li><strong>Technology and Support Team Risk</strong> &#8211; Generally this risk is less because the core team has a significant equity stake in the company and will stay so long as the company has funding.</li>
<li><strong>Bankruptcy Risk</strong> &#8211; This is the most significant risk. Pre-profitable companies rely on investors to fund losses and investors can be fickle. If funding dries up, the company can be forced to sell (in which case the team may leave) or liquidate.</li>
<li><strong>Strategic Risk</strong> &#8211; Smaller companies typically have few products so this is a minimal risk.</li>
<li><strong>Layoff Risk</strong> &#8211;  Smaller companies can cut back on growth if they cannot raise funds, harming development and support.</li>
<li><strong>Risk of Sale</strong> &#8211; This is a significant risk.</li>
</ul>
<p><strong><span style="text-decoration: underline;">Profitable Private Companies</span></strong></p>
<ul>
<li><strong>Technology and Support Team Risk</strong> &#8211; Generally low because of equity incentives. Support can suffer with rapid growth.</li>
<li><strong>Bankruptcy Risk</strong> &#8211; Less than for unprofitable private companies for obvious reasons.</li>
<li><strong>Strategic Risk</strong> &#8211; Again, generally a minimal risk.</li>
<li><strong>Layoff Risk</strong> &#8211; This can be a risk, although less than for unprofitable private companies.</li>
<li><strong>Risk of Sale</strong> &#8211; This is the most significant risk. Most private companies do not go public and there is always the risk that the founders of a profitable private company of sufficient size will cash in and move to an island, harming the technical and support capabilities behind the product.</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Large Company with Newly Acquired Technology</strong></span></p>
<ul>
<li><strong>Technology and Support Team Risk</strong> &#8211; This is a significant risk.  Technology companies suffer significant attrition in their technical staffs post-acquisition.  Some founders leave because it is more lucrative to be an entrepreneur and some leave because they no longer have to work. For others, the work at large companies is not challenging enough and the entrepreneur in them feels stifled.</li>
<li><strong>Bankruptcy Risk</strong> &#8211; Generally minimal.</li>
<li><strong>Strategic Risk</strong> -This is a small risk short term.  See below for the longer term risks.</li>
<li><strong>Layoff Risk</strong> &#8211; This is potentially a significant risk depending on the financial profile of the company.</li>
<li><strong>Risk of Sale</strong> &#8211; Less of a risk than for smaller companies.</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Large Company with Longstanding Technology</strong></span></p>
<ul>
<li><strong>Technology and Support Team Risk</strong> &#8211; After a while, the creators of the technology leave and are replaced by a team that wants to work at a larger company.  This can be good or bad but is generally somewhat stable.</li>
<li><strong>Bankruptcy Risk</strong> &#8211; Generally minimal.</li>
<li><strong>Strategic Risk</strong> &#8211; This is a huge risk.  Large companies go through strategic review constantly.  Many products exist as parcels in larger groups controlled by a single executive or executive team.  When turnover occurs, priorities change and centi-million dollar acquisitions can be written off like week old bananas.  We were partnered with a company that wrote off a $150 million acquisition after 3 years because it didn’t make strategic sense.</li>
<li><strong>Layoff Risk</strong> &#8211; When large companies are in financial trouble, they tend to cut across the Board which can significantly impact product quality and support both from a pure numbers as well as a morale standpoint.</li>
<li><strong>Risk of Sale</strong> &#8211; Less of a risk than for smaller companies.</li>
</ul>
<p>To sum up, the issue of company risk in technology purchases is far more complex than is ordinarily assumed.  The saying, “no one ever got fired for buying IBM” may not necessarily be true.  Conversely, I’m not arguing that buying from small companies because they are small makes any more sense than buying from large companies because they are large. IT professionals must evaluate the risks of the companies with whom they are doing business on a case by case basis.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/assessing-risk-before-you-buy-software-is-company-risk-inversely-related-to-company-size-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surviving the Week – 12/09/2011</title>
		<link>http://www.manvswebapp.com/surviving-the-week-12092011</link>
		<comments>http://www.manvswebapp.com/surviving-the-week-12092011#comments</comments>
		<pubDate>Sat, 10 Dec 2011 16:57:34 +0000</pubDate>
		<dc:creator>Dan Kuykendall</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Surviving The Week]]></category>
		<category><![CDATA[Web App Sec]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[NT OBJECTives]]></category>
		<category><![CDATA[SQL Injection]]></category>

		<guid isPermaLink="false">http://www.manvswebapp.com/?p=835</guid>
		<description><![CDATA[Sorry I missed last week, this one will cover the last two weeks. NT OBJECTives Releases SQL Invader - NTO SQL Invader finally makes it easy to exploit a SQL Injection vuln from a clean graphical interface. Check out the video &#8230; <a href="http://www.manvswebapp.com/surviving-the-week-12092011">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sorry I missed last week, this one will cover the last two weeks.</p>
<ul>
<li><a href="http://www.ntobjectives.com/sqlinvader">NT OBJECTives Releases SQL Invader</a> - NTO SQL Invader finally makes it easy to exploit a SQL Injection vuln from a clean graphical interface. Check out the <a href="http://www.ntobjectives.com/research/sqlinvader-intro">video demonstration</a>.</li>
<li><a href="http://bit.ly/s4C4ky">Santa&#8217;s CISO failed him!</a> &#8211;  Another major data leak for 2011</li>
<li><a href="http://thehackernews.com/2011/12/mysqlcom-once-again-compromised-using.html">MySQL.com Once again Compromised using Sql Flaw</a> &#8211; The article says it well &#8220;MySql website is pretty embarrassed for not securing its own database’s properly&#8221;.</li>
<li>HTML5</li>
<ul>
<li><a href="http://net-security.org/article.php?id=1656">Top 10 HTML5 threats and attack vectors</a> &#8211; HTML5 is going to be a treasure trove of attack vectors over the next 2+ years. Heres a good start on a list.</li>
<li><a href="http://www.xbiz.com/articles/141515">HTML5 Security Concerns Complicate Deployment Plans</a> &#8211; Finally people are starting to slow down the wagon to make sure we arent making things worse.</li>
</ul>
<li><a href="http://packetstormsecurity.org/news/view/20280/Its-Ba-ack.-Exploit-Revives-Slain-Browser-History-Bug.html">It&#8217;s ba-ack. Exploit revives slain browser history bug</a> &#8211; Im glad to see this type of research being done, because sometimes we assume one style of change will fix a thing, but thats rarely the case in the end.</li>
<li><a href="http://www.troyhunt.com/2011/11/owasp-top-10-for-net-developers-part-9.html">OWASP Top 10 for .NET developers part 9: Insufficient Transport Layer Protection</a> &#8211; Great write up on making sure the transport layer is secured, and how to recognize when its not.</li>
<li><a href="http://thehackernews.com/2011/12/critical-zero-day-vulnerability-in.html">Critical Zero-day Vulnerability in Adobe Reader</a> &#8211; Another week, another critical flow in adobe.</li>
<li><a href="http://thehackernews.com/2011/12/yahoo-messenger-0-day-exploit-allow.html">Yahoo Messenger 0-Day Exploit allow status message hijacking</a> &#8211; This is cool because its basically an XSS attack against the yahoo messenger.</li>
<li><a href="http://thehackernews.com/2011/11/millions-of-printers-open-to.html">Millions of printers open to devastating hack attack</a> &#8211; Said best by Steve Tornio on twitter &#8220;My HP all-in-one printer barely even works. Asking them to code securely is not likely to end well.”</li>
<li><a href="http://www.securityfocus.com/archive/1/520653">Cross-Site Scripting vulnerabilities in HP Network Node Manager i 9.10</a> &#8211; While on the topic of HP, heres an Interesting application XSS filter in the GET request evaded by new line characters %0D%0A and XSS filter didn’t exist for POST request. Good bypass!!</li>
<li><a href="http://thehackernews.com/2011/12/dns-cache-poisoning-attack-on-google.html">DNS cache poisoning attack on Google, Gmail, YouTube, Yahoo, Apple</a> - Nothing new, but a reminder of how much we trust in DNS and how easy it is to screw with.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manvswebapp.com/surviving-the-week-12092011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

