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

<channel>
	<title>Web Admin Blog &#187; Software and Tools</title>
	<atom:link href="http://www.webadminblog.com/index.php/category/software-and-tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webadminblog.com</link>
	<description>Real Web Admins.  Real World Experience.</description>
	<lastBuildDate>Wed, 25 May 2011 03:02:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Static Application Vulnerability Testing: Binary Scanning vs Source Code Scanning</title>
		<link>http://www.webadminblog.com/index.php/2010/07/22/static-application-vulnerability-testing-binary-scanning-vs-source-code-scanning/</link>
		<comments>http://www.webadminblog.com/index.php/2010/07/22/static-application-vulnerability-testing-binary-scanning-vs-source-code-scanning/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 16:16:56 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[Static Analysis]]></category>
		<category><![CDATA[Web Application Security]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[versus]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[white]]></category>

		<guid isPermaLink="false">http://www.webadminblog.com/?p=474</guid>
		<description><![CDATA[I had a meeting yesterday with a vendor who sells a SaaS solution for binary application vulnerability testing. They tell a very interesting story of a world where dynamic testing ("black box") takes place alongside static testing ("white box") to give you a full picture of your application security posture. They even combine the results [...]]]></description>
			<content:encoded><![CDATA[<p>I had a meeting yesterday with a vendor who sells a SaaS solution for binary application vulnerability testing.  They tell a very interesting story of a world where dynamic testing ("black box") takes place alongside static testing ("white box") to give you a full picture of your application security posture.  They even combine the results with some e-Learning aspects so that developers can research the vulnerabilities in the same place they go to find them.  In concept, this sounds fantastic, but I quickly turned into a skeptic and as I dug deeper into the details I'm not sure I like what I found.</p>
<p>I wanted to make sure I fully understood what was going on under the hood here so I started asking questions about the static testing and how it works.  They've got a nice looking portal where you name your application, give it a version, assign it to a group of developers, and point it to your compiled code (WAR, EAR, JAR, etc).  Once you upload your binaries, their system basically runs a disassembler on it to get it into assembly code.  It's then at this level that they start looking for vulnerabilities.  They said that this process takes about 3 days initially and then maybe 2 days after the first time because they are able to re-use some data about your application.  Once complete, they say they are able to provide you a report detailing your vulnerabilities and how to fix them.</p>
<p>The thing that immediately struck me as worth noting here was the 2-3 day turnaround.  This means that our developers would need to wait a fairly substantial amount of time before getting any feedback on the vulnerability status of their code.  In a world full of Agile development, 2-3 days is a lifetime.  Compare that to static source code testing where you get actionable results at compile time.  The edge here definitely goes to source code testing as I believe most people would prefer the near-instant gratification.</p>
<p>The next thing worth noting was that they are taking binary files and disassembling them in order to find vulnerabilities.  This lends itself to one major issue which is how can you determine with any accuracy the line number of a particular vulnerability written in let's say Java from assembly code generated by disassembling the binaries.  By default, it's simply not possible.  This vendor claimed that they can by adding in some debug strings at compile time, but even then I'd contend that you're not going to get much.  I'm guessing they have some heuristics that are able to tell what function generated a set of assembly code, but I'm extremely skeptical that they can do anything with variable names, custom code functions, etc.  I've seen some source code scanners, on the other hand, that not only tell you what line of code is affected, but are able to give you an entire list of parameters that have been consequently affected by that vulnerability.  The edge here definitely goes to source code testing.</p>
<p>The main benefit that I can see with binary testing vs source code testing is that we can test code that we didn't write.  Things like APIs, third-party applications, open source, etc are all things that we now have visibility into.  The only problem here is that while we now can see the vulnerabilities in this software, they are unfortunately all things that we can't directly influence change in, unless we want to send our developers off to work on somebody else's software.  I'd argue that scanning for vulnerabilities in that type of code is their responsibility, not ours.  Granted, it'd be nice to have validation that there aren't vulnerabilities there that we're exposing ourselves to by uptaking it, but in all honesty are we really going to take the time to scan somebody else's work?  Probably not.  The edge here goes to binary testing with the caveat being that it's in something that I frankly don't care as much about.</p>
<p>This isn't the complete list of pros and cons by any means.  It's just me voicing in writing some concerns that I had about the technology while talking to this particular vendor.  In my opinion, the benefits of doing source code testing far outweigh any benefits that we could get from testing compiled binary files.  What do you think about the benefits of one versus the other?  I'd certainly love for someone to try to change my mind here and show me where the real value lies in binary testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2010/07/22/static-application-vulnerability-testing-binary-scanning-vs-source-code-scanning/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Oracle + BEA Update</title>
		<link>http://www.webadminblog.com/index.php/2009/07/16/oracle-bea-update/</link>
		<comments>http://www.webadminblog.com/index.php/2009/07/16/oracle-bea-update/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 22:15:25 +0000</pubDate>
		<dc:creator>Ernest</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[bea]]></category>
		<category><![CDATA[fusion]]></category>
		<category><![CDATA[OAS]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.webadminblog.com/?p=290</guid>
		<description><![CDATA[A year ago I wrote about Oracle's plan on how to combine BEA Weblogic and OAS.   A long time went by before any more information appeared - we met with our Oracle reps last week to figure out what the deal is.  The answer wasn't much more clear than it was way back last year.  [...]]]></description>
			<content:encoded><![CDATA[<p>A year ago I <a href="http://www.webadminblog.com/index.php/2008/07/02/oracle-bea/">wrote about Oracle's plan on how to combine BEA Weblogic and OAS</a>.   A long time went by before any more information appeared - we met with our Oracle reps last week to figure out what the deal is.  The answer wasn't much more clear than it was way back last year.  They do certainly want some kind of money to "upgrade" but it seems poorly thought through.</p>
<p>OAS came in various versions - Java, Standard, Standard One, Enterprise, and then the SOA Suite versions.  The new BEA, now "Fusion Middleware 11g" comes in different versions as well.</p>
<ul>
<li>WLS Standard</li>
<li>WLS Enterprise - adds clustering, costs double</li>
<li>WLS Suite - adds Coherence, Enterprise Manager, and JRockit realtime, costs quadruple</li>
</ul>
<p>But they can't tell us what OAS product maps to what FMW version.</p>
<p>There is also an oddly stripped down "Basic" edition which noted as being a free upgrade from OAS SE but it strips out a lot of JMS and WS stuff; there's an entire slide of stuff that gets stripped out and it's hard to say if this would be feasible for us.</p>
<p>As for SOA Suite, "We totally just don't know."</p>
<p>Come on Oracle, you've had a year to get this put together.  It's pretty simple, there's not all that many older and newer products.  I suspect they're being vague so they can feel out how much $$ they can get out of people for the upgrade.  Hate to break it to you guys - the answer is $0.  We didn't pay for OAS upgrades before this, we just paid you the generous 22% a year maintenance <a href="http://www.informationweek.com/news/global-cio/interviews/showArticle.jhtml?articleID=218101578">that got you your 51% profit margin this year.</a> If you're retiring OAS for BEA in all but name, we expect to get the equivalent functionality for our continued 22%.</p>
<p>Oracle has two (well, three) clear to dos.</p>
<p>1.  Figure out what BEA product bundles give functionality equivalent to old OAS bundles</p>
<p>2.  Give those to support-paying customers</p>
<p>3.  Profit.  You're making plenty without trying to upcharge customers.  Don't try it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2009/07/16/oracle-bea-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Apache Error Codes By URL</title>
		<link>http://www.webadminblog.com/index.php/2009/02/13/customizing-apache-error-codes-by-url/</link>
		<comments>http://www.webadminblog.com/index.php/2009/02/13/customizing-apache-error-codes-by-url/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 16:12:07 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[apache ErrorDocument custom error page htaccess content]]></category>

		<guid isPermaLink="false">http://www.webadminblog.com/?p=183</guid>
		<description><![CDATA[I've had a couple of discussions lately about customized Apache error pages that prompted me to do a little bit of research on it.  What I've come up with is somewhat interesting so I thought I'd share it with everyone.  First, it is not technically possible to tell Apache to serve up a different error [...]]]></description>
			<content:encoded><![CDATA[<p>I've had a couple of discussions lately about customized Apache error pages that prompted me to do a little bit of research on it.  What I've come up with is somewhat interesting so I thought I'd share it with everyone.  First, it is not technically possible to tell Apache to serve up a different error page for image content than for html content than for php content since the only command Apache accepts for this is of the "ErrorDocument error-code document" format.  That said, if you allow .htaccess overrides on a particular directory, then you can specify your ErrorDocument directive in there as well; overriding the default error handling specified in the httpd.conf file.  An example:</p>
<p>In my httpd.conf file I have all 404's going to errorpage.cgi with the following line:</p>
<p>ErrorDocument 404 /cgi-bin/errorpage.cgi</p>
<p>I'm a good little code monkey and put all of my images in a /images directory under the DirectoryRoot.  By default, if I were to hit a non-existent image in that directory, I would get the default error message defined in the httpd.conf file.  If that image were referenced in an html page that I hit, I now download the html page plus the errorpage.cgi page for the bad image reference, introducing one whole page's worth of additional overhead.</p>
<p>But since I was a good code monkey and put all of my images in a /images directory, the fix for this is really simple.  I create a .htaccess file inside of my /images directory and add the following line to it:</p>
<p>ErrorDocument 404 "404 - Image does not exist       &lt;-- Note: No end quote is intentional</p>
<p>Now, if I hit http://www.mysite.com/badpage.html I get the errorpage.cgi page, but if I hit http://www.mysite.com/images/badimage.jpg I get a short and sweet message saying "404 - Image does not exist".  I haven't tested this yet to see how it works when you are using something like mod_oc4j to send certain URLs to an application server, but it's possible that this could work there too if Apache checks for existing static URLs before passing requests to the app server.  Further testing could be useful there.</p>
<p>So there you have it.  I can't tell Apache to serve up different error pages based on the URL or file type, but if I'm diligent about putting different files under different directories, I can effectively do the same thing using .htaccess files.  Woot!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2009/02/13/customizing-apache-error-codes-by-url/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome Hates You (Error 320)</title>
		<link>http://www.webadminblog.com/index.php/2008/12/18/google-chrome-hates-you-error-320/</link>
		<comments>http://www.webadminblog.com/index.php/2008/12/18/google-chrome-hates-you-error-320/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 23:18:19 +0000</pubDate>
		<dc:creator>Ernest</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[error]]></category>

		<guid isPermaLink="false">http://www.webadminblog.com/?p=162</guid>
		<description><![CDATA[The 1.0 release of Google Chrome has everyone abuzz.  Here at NI, loads of people are adopting it.  Shortly after it went gold, we started to hear from users that they were having problems with our internal collaboration solution, based on the Atlassian Confluence wiki product.  They'd hit a page and get a terse error, [...]]]></description>
			<content:encoded><![CDATA[<p>The 1.0 release of Google Chrome has everyone abuzz.  Here at NI, loads of people are adopting it.  Shortly after it went gold, we started to hear from users that they were having problems with our internal collaboration solution, based on the Atlassian Confluence wiki product.  They'd hit a page and get a terse error, which if you clicked on "More Details" you got the slightly more helpful, or at least Googleable, string  "Error 320 (net::ERR_INVALID_RESPONSE): Unknown error."</p>
<p>At first, it seemed like if people reloaded or cleared cache the problem went away.  It turned out this wasn't true - we have two load balanced servers in a cluster serving this site.  One server worked in Chrome and the other didn't; reloading or otherwise breaking persistence just got you the working server for a time.  But both servers worked perfectly in IE and Firefox (every version we have lying around).</p>
<p>So we started researching.  Both servers were as identical as we could make them.  Was it a Confluence bug?  No, we have phpBB on both servers and it showed the same behavior - so it looked like an Apache level problem.</p>
<p>Sure enough, I looked in the logs.  The error didn't generate an Apache error, it was still considered a 200 OK response, but when I compared the log strings the box that Chrome was erroring on showed that the cookie wasn't being passed up; that field was blank (it was populated with the cookie value on the other box and on both boxes when hit in IE/Firefox).  Both boxes had an identically compiled Apache 2.0.61.  I diffed all the config files- except for boxname and IP, no difference.  The problem persisted for more than a week.</p>
<p>We did a graceful Apache restart for kicks - no effect.  Desperate, we did a full Apache stop/start - and the problem disappeared!  Not sure for how long.  If it recurs, I'll take a packet trace and see if Chrome is just not sending the cookie, or sending it partially, or sending it and it's Apache jacking up...  But it's strange there would be an Apache-end problem that only Chrome would experience.</p>
<p>I see a number of posts out there in the wide world about this issue; people have seen this Chrome behavior in YouTube, Lycos, etc.  Mostly they think that reloading/clearing cache fixes it but I suspect that those services also have large load balanced clusters, and by luck of the draw they're just getting a "good" one.</p>
<p>Any other server admins out there having Chrome issues, and can confirm this?  I'd be real interested in knowing what Web servers/versions it's affecting.  And a packet trace of a "bad" hit would probably show the root cause.  I suspect for some reason Chrome is partially sending the cookie or whatnot, choking the hit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/12/18/google-chrome-hates-you-error-320/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using Proxies to Secure Applications and More</title>
		<link>http://www.webadminblog.com/index.php/2008/10/31/using-proxies-to-secure-applications-and-more/</link>
		<comments>http://www.webadminblog.com/index.php/2008/10/31/using-proxies-to-secure-applications-and-more/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 15:27:15 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[Web Application Security]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[proxies]]></category>
		<category><![CDATA[ratproxy]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[tamperdata]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webscarab]]></category>

		<guid isPermaLink="false">http://www.webadminblog.com/?p=159</guid>
		<description><![CDATA[I've been really surprised that for as long as I've been active with OWASP, I've never seen a proxy presentation.  After all, they are hugely beneficial in doing web application penetration testing and they're really not that difficult to use.  Take TamperData for example.  It's just a firefox plugin, but it does header, cookie, get, [...]]]></description>
			<content:encoded><![CDATA[<p>I've been really surprised that for as long as I've been active with OWASP, I've never seen a proxy presentation.  After all, they are hugely beneficial in doing web application penetration testing and they're really not that difficult to use.  Take TamperData for example.  It's just a firefox plugin, but it does header, cookie, get, and post manipulation just as well as WebScarab.  Or Google Ratproxy, which works in the background while you browse around QA'ing your web site and gives you a nice actionable report when you're done.  I decided it was time to educate my peers on the awesomeness of proxies.</p>
<p>This past Tuesday I presented to a crowd of about 35 people at the Austin OWASP Meeting.  The title of my presentation was "Using Proxies to Secure Applications and More".  Since so many people came up to me afterward telling me what a great presentation it was and how they learned something they can take back to the office, I decided (with a little insistance from Ernest) that it was worth putting up on SlideShare and posting to the Web Admin Blog.</p>
<p>The presentation starts off with a brief description of what a proxy is.  Then, I talked about the different types of proxies.  Then, the bulk of the presentation was just me giving examples and demonstrating the various proxies.  I included anonymizing proxies, reverse proxies, and intercepting proxies.  While my slides can't substitue for the actual demo, I did try to include in them what tool I used for the demo.  If you have any specific questions, please let me know.  All that said, <a href="http://www.slideshare.net/jsokol/using-proxies-to-secure-applications-and-more-presentation" target="_blank">here's the presentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/10/31/using-proxies-to-secure-applications-and-more/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An Evaluation of Rapid7 NeXpose</title>
		<link>http://www.webadminblog.com/index.php/2008/08/18/an-evaluation-of-rapid7-nexpose/</link>
		<comments>http://www.webadminblog.com/index.php/2008/08/18/an-evaluation-of-rapid7-nexpose/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 19:15:08 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Dynamic Analysis]]></category>
		<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[Web Application Security]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[nexpose]]></category>
		<category><![CDATA[PCI]]></category>
		<category><![CDATA[rapid7]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[scanner]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tactics]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://webadminblog.com/?p=41</guid>
		<description><![CDATA[I've been focusing a lot of my time lately on our PCI initiatives.  One sub-topic that I've spent a particularly large amount of time on has been Requirement 11.2 which says that you need to have internal and external network vulnerability scans performed by a scan vendor qualified by PCI.  We already employ one such [...]]]></description>
			<content:encoded><![CDATA[<p>I've been focusing a lot of my time lately on our PCI initiatives.  One sub-topic that I've spent a particularly large amount of time on has been Requirement 11.2 which says that you need to have internal and external network vulnerability scans performed by a scan vendor qualified by PCI.  We already employ one such tool, but I've been working to evaluate several other vulnerability scanning tools to see where our current tool is at in comparison.  I'll post my evaluations of each of these tools in time, but for now I'll start with my evaluation of Rapid7 NeXpose.</p>
<p><span id="more-41"></span></p>
<p>First off, I had never heard of the company before, but they were among the cheaper options of what I evaluated and apparently are doing some good things.  They got the SC Magazine recommendation for the month of August 2008 and they received a 5-star overall rating in said magazine.  The problem came as soon as I started talking to their salesperson.  From the start, the guy was coming off like a used car salesman asking questions like "What would it take to get you to buy by the end of this month?"  This was before I even saw an evaluation of the product.  From that point forward, I don't think a week went by where I didn't hear from the salesperson.  "How's the evaluation going?  Do you think you're going to buy?"  It got annoying very quickly.</p>
<p>The evaluation of the product went fairly smoothly.  My biggest gripe was that the company claimed that they did everything that Qualys does and more (they even forwarded me a press release on it), but ultimately failed to deliver on that promise when I found something rather large that Qualys finds and NeXpose does not.  To their benefit, Rapid7 had engineers and developers calling me and asking about the issue trying to get it into their system for me.  That was pretty cool, but ultimately they're getting paid to find these vulnerabilities for us.  You would think that they'd at least have all of the CVE items in their scanning tool.</p>
<p>My missing Qualys vulnerability aside, the NeXpose tool found plenty of issues.  This was both a positive and a negative since a lot of what it found had to do with a single vulnerability being exposed over and over through our site's faceted navigation.  It would have been nice if the scanner recognized that since it made the results look a lot worse than it actually is.  Also, when going through the results, I noticed quite a few false positives.  It seemed like most of these were due to the scanner just looking at a version number in a header instead of actually trying to test the vulnerability.  It found issues with Apache modules that we didn't even have enabled.</p>
<p>My favorite thing about the Rapid7 NeXpose vulnerability scanning tool was the reporting.  They provide some very good reports in there by default.  I found the "Remediation Plan Report" to be particularly interesting as it provided you with their suggested path to remediate our vulnerabilities most effeciently and effectively.  Was it better than the reporting that I've seen in other products?  Maybe, maybe not.</p>
<p>Anyway, my evaluation of Rapid7 NeXpose was coming to a close when I got a call from the salesperson last week.  It went something like this...</p>
<blockquote><p><strong>Salesperson:</strong> "Did you hear we got a recommendation from SC Magazine?  Yeah, things are busy here.  Your evaluation is taking longer than normal and I know you've had several issues with the product, do you think you're going to buy it?"</p>
<p><strong>Me:</strong> "Nope, hadn't heard about the SC Magazine thing.  We've definitely worked through some issues.  Overall, the evaluation went well and I like the product.  Once I finish the other evaluations I'm working on, I'll let you know our decision."</p>
<p><strong>Salesperson:</strong> "Well, with the amount of business we're getting with the SC Magazine article, I don't have time for you.  Feel free to call me back if you decide to buy our product, otherwise, good luck."</p></blockquote>
<p>What do you say to that?  I got dumped by a salesperson, who I kept dropping hints to leave me alone to do my evaluation, because I was taking up too much of his time?  It's a little difficult to do an unbiased review after that, but I tried my best.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/08/18/an-evaluation-of-rapid7-nexpose/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Google Ratproxy</title>
		<link>http://www.webadminblog.com/index.php/2008/07/22/google-ratproxy/</link>
		<comments>http://www.webadminblog.com/index.php/2008/07/22/google-ratproxy/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 20:02:56 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[Web Application Security]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[ratproxy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://webadminblog.com/?p=30</guid>
		<description><![CDATA[If you are responsible for developing or maintaining a website and haven't checked out Ratproxy yet, you're missing out. Before I start spouting off about just how cool and useful this tool is, I suppose I should first tell you what a proxy is. In a nutshell, a proxy is an application that runs local [...]]]></description>
			<content:encoded><![CDATA[<p>If you are responsible for developing or maintaining a website and haven't checked out Ratproxy yet, you're missing out.  Before I start spouting off about just how cool and useful this tool is, I suppose I should first tell you what a proxy is.  In a nutshell, a proxy is an application that runs local on your computer and intercepts requests and responses between your web browser and the web server.  In almost all cases, the proxy has the ability to manipulate the conversation going on between the two.  Things like modifying your cookies, changing POST and GET parameters, and finding hidden fields are made uber-easy with the assistance of a proxy.</p>
<p><span id="more-30"></span></p>
<p>I don't claim to be an expert on proxies, but I have used several in the past including OWASP WebScarab and Paros.  While both of these tools provide features as described above, Ratproxy takes a very different approach.  You start up your proxy and tell the browser to pass requests through it.  Simple enough.  Then you just start surfing your website as though you were a regular user.  In the background, Ratproxy is collecting all sort of useful information about the website.  When you're done surfing the site, you run the report which comes out as a nice web page full of useful information about the site.  It'll show you pages vulnerable to CSRF, XSS, and a host of other security vulnerabilities.  It ranks then based on high, medium, and low impact and provides very good explanations of the issues it has found.</p>
<p>The Ratproxy tool has ports for Mac OS/X, Linux, and Cygwin (Windows).  When I first tried to compile it in Cygwin, I had all sorts of error messages, but then I found <a href="http://www.butterdev.com/web-security/2008/07/google-ratproxy-web-application-security-audit-tool/" target="_blank">this very help web page</a> that told me exactly what libraries Cygwin was missing in order for me to compile it correctly.  Part two of that article even goes on to tell you how to begin using Ratproxy.</p>
<p>To many, Web Application Security is a scary thing that takes a lot of time and effort to figure out how to do things right, but it doesn't have to be.  You also don't have to pay an arm and a leg to do a decent security audit of your website.  Start today by downloading Ratproxy and get a feel for how secure your site is without paying a dime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/07/22/google-ratproxy/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Oracle + BEA = ?</title>
		<link>http://www.webadminblog.com/index.php/2008/07/02/oracle-bea/</link>
		<comments>http://www.webadminblog.com/index.php/2008/07/02/oracle-bea/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 21:04:46 +0000</pubDate>
		<dc:creator>Ernest</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[bea]]></category>
		<category><![CDATA[j2ee]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://webadminblog.com/?p=27</guid>
		<description><![CDATA[We use Oracle Application Server as our Java app server at NI. Yeah, yeah, I'll wait till you stop laughing. Why not JBoss or WebLogic or WebSphere? Well, a couple reasons. We made the decision five years ago, and JBoss wasn't solid then, and we needed J2EE support so plain Tomcat wasn't enough. And we're [...]]]></description>
			<content:encoded><![CDATA[<p>We use Oracle Application Server as our Java app server at NI.  Yeah, yeah, I'll wait till you stop laughing.</p>
<p>Why not JBoss or WebLogic or WebSphere?  Well, a couple reasons. We made the decision five years ago, and JBoss wasn't solid then, and we needed J2EE support so plain Tomcat wasn't enough.  And we're a huge Oracle shop and figured that if we were using the same app server on the Web and our ERP tiers there'd be leverage in terms of developer knowledge etc.   Would we make that same decision today?  I'm not sure about that (I can hear my team members shouting "hell no" over the cube walls).   Although since we've also gone with Oracle's SOA suite for ESB and BPEL it would be harder to switch.  But still tempting - Oracle has done a horrible job in getting their app server supported by other vendors.  Every time we buy something and look at the supported app server section of their support matrix, and we ask "What about Oracle's OAS?" we get expressions of mixed horror and pity from the supplier.  (I liked it when the Chinese technical guy from one eComm vendor we had in responded to this question with, "You know, the Tomcat is good, and free!  Maybe you use that!")</p>
<p>Anyway, Oracle bought BEA a while back, which got keen interest from us.  Stay with Oracle *and* use a good app server that other people support?   Tempting!   But Oracle's been farting around for six months without coming out with a statement on what this will mean for the products.  Oracle's finally done <a href="http://www.oracle.com/pls/ebn/live_viewer.main?p_direct=yes&amp;p_shows_id=6580928" target="_blank">a Webcast describing their strategy</a>.  Well, it's half marketing and a celebration of how many million dollars they have.  But there's also a lot of product strategy in there.  I'll sum it up for you because the damn webcast is nearly two hours long, and I don't want other people to have to waste that much time on it.  Unless you like to hear someone go on about "strategic clarity" and "customer profiles," in which case this is two hours of bliss for you and you should watch it.   Although I also had the stream break a bunch of times while watching.   Who the heck uses RealPlayer any more?   Anyway, here's a list of the interesting product facts from the Webcast.   Some are marked with their timestamp if you want to fast forward to them and see more.</p>
<p><span id="more-27"></span></p>
<p><strong>Interesting Facts From the Oracle-BEA Strategy Roadmap Webcast</strong></p>
<p>1.  All the BEA dev community stuff, forums, etc. will be subsumed into Oracle's.  That's sad, as Oracle's Web site is one of the worst implemented community sites on the Web.  And I'm worried at Oracle's ability to truly support Fusion Middleware.  Still at this late date, if you try to file a Sev1 SR with Oracle about your app server, it asks you "Is your database down?" as the criteria to accept it as Sev1.  Middleware is a poor stepbrother on all of their online systems, perhaps the BEA user base will press them into doing better.</p>
<p>2.  "Vast majority" of sales, support, and R&amp;D staff from BEA are being retained.</p>
<p>3.  Lots more info to come at OpenWorld in September and in some city events  (see oracle.com/events/welcomeBEA - closest one to us is Dallas).</p>
<p>4.  They say they're not going to just discontinue anything BEA, they'll support everything.  Three levels to describe the disposition of each product - "Strategic Products" (use BEA and integrate into Fusion), "Continue &amp; Converge" (rewrite it to integrate into Fusion) and "Maintenance" (just supporting it, mainly just stuff BEA had already EOLed).</p>
<p>5.  Development Tools (25:00) - Their stated vision is a single complete &amp; integrated dev environment, moving more toward "declarative" (aka visual, aka BPEL) development.  So they're going with JDeveloper, ADF, and the new "Oracle Eclipse Pack" as the "Strategic" items.  BEA Workshop's going into that.  BEA was the second largest contributor to Eclipse.  Thus by "complete and integrated" they mean "we'll continue to confusingly support both Eclipse and JDeveloper."  Sigh.</p>
<p>6.  App servers (29:30) - and a "transaction processing monitor" for C/C++/COBOL.  (huh?)  Oh, Tuxedo they mean. The strategic products are: BEA Tuxedo, BEA JRockit/realtime/liquid VM, WebLogic Server, Toplink, and Coherence.   OAS/OC4J is listed as "Continue &amp; Converge", which he explains as putting TopLink into WebLogic.  So...  <strong>OC4J is out, WebLogic is in! </strong>Woo!  (My team members come and cluster excitedly around my computer at this revelation.)  And they're going to go mainly JRockit for JVM, seems like - they say "We'll continue to support Sun's JVM...  On Solaris."</p>
<p>They will continue to support OAS for those poor hapless ebusiness customers, there's no "forced migration" (but encouraged) there.</p>
<p>I cannot state how happy this is making me.</p>
<p>7.  SOA!  (39:00) "Now, it's all hot pluggable, you can mix and match, please don't hurt me."</p>
<p>Strategic products: Oracle Data Integrator, Oracle ESB ("unified" with AquaLogic ESB), Oracle BPEL, Complex Event Processor ("integrated" with WebLogic Event Server), and BAM.  BEA WL-Integration is "C&amp;C" and Cyclone is EOL.  So "all Oracle baby."</p>
<p>Oh, actually, as he explains "unifying" the ESBs he means that pretty much putting AquaLogic on the Oracle SCA runtime and adding some of the Oracle functions, and the converged result will be a free upgrade for either customer.  Nice.</p>
<p>And "integrated" event processor means really doing both, because WebLogic's is lighter/easier and Oracle's is heavier/more. (I'm unfamiliar with this space.  Hmm.)</p>
<p>We use Oracle's SOA, so we use their ESB and BPEL products - I think we own the BAM but so far don't find it all that useful.  For us the transition will be an ESB upgrade, which should be a lot less intrusive than an BPEL upgrade.</p>
<p>8.  Business Process Management.  Why is this listed different from SOA/BPEL?  They get into depth on system-centric (e.g. order to cash), human-centric, document-centric (CMS), and decision-centric processes but say they want one product that will do them all.  He describes some mutant hybrid of Oracle BPA designer, BEA BPM designer, "converged" Oracle/AquaLogic BPM, Oracle Document Capture &amp; Imaging, Oracle Business Rules, Oracle Business Activity Monitoring (BAM), and WebCenter portal for viewing.  This is going to be a mess, and I'll bet their "integration" here has 5 years to go before being worthy of the name.</p>
<p>9.  Enterprise 2.0 and Portals.  IMO Oracle "gets" Web 2.0 less than any of the big tech companies, so let's see what they have to say.  They want one process to develop rich media, RIAs, enterprise portals, and social computing, with unified search and content management.</p>
<p>(You need to thank me for not having to listen to the labored ten minute "Web 2.0" scenario walkthrough where people use "forums" and "tags" and "RSS" other newfangled things...)</p>
<p>Strategic</p>
<ul>
<li>Oracle Universal Content Management for CM.  A big "bah" from me here.</li>
<li>Oracle WebCenter Framework.  Portal, the least valuable part of any suite. Oracle's been trying to shove Portal down our throats for 5 years.  We've given in and done POCs three times, and each time it's collapsed under its own weight.</li>
<li>WebCenter Spaces &amp; Suite.  I'm sure their solution here is just lovely, since I've never heard of it.</li>
<li>BEA Ensemble and Pathways - light-weight REST portal assembly.  Hmmm, maybe should <a href="http://www.internetnews.com/dev-news/article.php/3667966" target="_blank">look at this</a>.  I see it's marketed as a mashup tool though, which isn't a good sign.</li>
</ul>
<p>C&amp;C</p>
<ul>
<li>BEA WL-Portal</li>
<li>BEA AL-User Interaction</li>
</ul>
<p>So in other words "we haven't been a player in Web 2.0 and aren't about to start." OK, fair enough.</p>
<p>10.  Identity Management (1:08:00).  We've been looking at this product suite; I'm not sure it's the best SSO solution out there but for someone with Oracle ERP it's mighty compelling.  They've come a long way from the old DB-based OID/SSO crap they tried to sell a couple years ago.</p>
<p>Strategic products:</p>
<ul>
<li>OID (Oracle's LDAP)</li>
<li>Oracle Identity Manager (account provisioning)</li>
<li>Oracle Role Manager ("business role" provisioning)</li>
<li>Oracle Access Manager (SSO)</li>
<li>Oracle Adaptive Access Manager (risk-based strong authentication)</li>
<li>BEA AL-Enterprise Security (authorization centralization)</li>
<li>Oracle Identity Federation</li>
</ul>
<p>Aka "Give us <em>one meeeeeeellion dollars</em>."   That's the big problem with all this, you pretty much have to go all in on it and it needs a large team and lots of money to implement.</p>
<p>11.  Systems Management (1:13:00).  They even play in this space?  Oh, they mean Enterprise Manager (sigh).</p>
<p>Strategic Products:</p>
<ul>
<li>EM Provisioning Pack (currently we just turn EM off on OAS, it's worthless)</li>
<li>EM Configuration Pack, BEA Guardian integrated.  We should look at this, currently doing builds, refreshes, etc. is a pain.</li>
<li>EM Diagnostics Pack - adding App Diagnostics for Java and JRockit Mission Control.  So far EM's Java app management is a joke, but perhaps the addition of these two (mainly MC) will help, they should be good.</li>
<li>EM Management Pack for SOA (we looked at this and it's worthless)</li>
<li>EM Management Pack for Identity</li>
<li>EM Management Pack for BI</li>
</ul>
<p>12.  SOA Governance (1:18:00).  Promoting reuse/portfolioing, operational control/policy.  Ah, it's always better to buy expensive software than to think for five damn minutes about a process.  But I'm not bitter.</p>
<ul>
<li>BEA AquaLogic Enterprise Repository (portfolio)</li>
<li>Oracle Service Registry (UDDI), "partnership with HP" he says.  ?</li>
<li>OWSM (Web service security)</li>
<li>EM Service Level Management Pack (bah)</li>
<li>EM SOA Management Pack (worthless, see above)</li>
</ul>
<p>13.  Service Delivery Platform (1:23).  Weird term for verticals, mainly telecom.  I hesitate to even try to describe this stuff but for some reason you might use Oracle to deliver residential VOIP or PBX technology.  If you're insane.  They are uptaking the WebLogic SIP server, FYI.</p>
<p>Summary (1:28).  They still are looking at Fusion Middleware as the overall suite and taking an integration approach.  No change to the Fusion adoption strategy as a result, and some BEA bits are already certified by Oracle Applications.  The new technologies should be 'transparent' to Apps customers, or are external addons.  There is no forced migration to WebLogic for Oracle Apps, but it will be an option.  In other words, don't get scared.  (Not that we feel forced to upgrade to <em>anything</em> with our Oracle Apps install...  The risk of upgrade keeps us on the oldest versions possible.)</p>
<p>Pricing is undergoing an upheaval, supposed to be "simplified" - in some cases it is, like single global pricing, but in some cases not, like going to their weird CPU/named user scheme.</p>
<p>They are rebranding and rereleasing the BEA products as 10gR3. and certifying everything under the BEA variant of 10gR3, and then the 11gR1/R2 will be more of a merge of the two branches.</p>
<p>And that's it!  Overall positive from my point of view.</p>
<p><a href="http://www.oracle.com/goto/july1" target="_blank">Would you like to know more?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/07/02/oracle-bea/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Blogging Tip</title>
		<link>http://www.webadminblog.com/index.php/2008/06/24/quick-blogging-tip/</link>
		<comments>http://www.webadminblog.com/index.php/2008/06/24/quick-blogging-tip/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 16:28:31 +0000</pubDate>
		<dc:creator>Ernest</dc:creator>
				<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://webadminblog.com/?p=21</guid>
		<description><![CDATA[All yesterday I was being annoyed by the need to write up my blog posts in another editor and paste them over into WordPress.  You have to do that because composing text longer than about 3 sentences in a browser window is taking your life in your hands.  But I discovered even in cutting and [...]]]></description>
			<content:encoded><![CDATA[<p>All yesterday I was being annoyed by the need to write up my blog posts in another editor and paste them over into WordPress.  You have to do that because composing text longer than about 3 sentences in a browser window is taking your life in your hands.  But I discovered even in cutting and pasting from Wordpad you get bullshit formatting inserted that drives the TinyMCE editor crazy.  And Notepad was giving me line break problems.  (And it needs not be said that you should never ever paste from Word...)</p>
<p>But Robert cued me in to <a href="http://www.stevemiller.net/puretext/" target="_blank">PureText,</a> which is a little Windows addon that strips all formatting from text when you cut/paste it for you.  By default you Windows+V instead of Control+V and voila, no crap.  Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/06/24/quick-blogging-tip/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Log Management for Dummies (aka Splunk)</title>
		<link>http://www.webadminblog.com/index.php/2008/05/22/log-management-for-dummies/</link>
		<comments>http://www.webadminblog.com/index.php/2008/05/22/log-management-for-dummies/#comments</comments>
		<pubDate>Thu, 22 May 2008 18:25:37 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Log Management]]></category>
		<category><![CDATA[Software and Tools]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[PCI]]></category>
		<category><![CDATA[splunk]]></category>

		<guid isPermaLink="false">http://webadminblog.com/?p=4</guid>
		<description><![CDATA[Logs are one thing that I think are severely underutilized by most systems administrators. Most of us have taken the first step by actually logging the data, but neglect organizing it into any sort of manageable form. You'll probably argue that any hardcore *nix admin would be able to take the raw logs using grep, [...]]]></description>
			<content:encoded><![CDATA[<p>Logs are one thing that I think are severely underutilized by most systems administrators. Most of us have taken the first step by actually logging the data, but neglect organizing it into any sort of manageable form. You'll probably argue that any hardcore *nix admin would be able to take the raw logs using grep, cut, awk, and a handful of other *nix power tools and turn it into consumable information, but that'll only get you so far.</p>
<p>Several months ago we evaluated a bunch of log management solutions with several goals in mind. We wanted a solution that was agile enough to be able to take in a wide variety of log formats as well as configuration files. It needed to shield sensitive information (passwords, credit card information, etc) from unauthorized users. It needed to provide us with a customizable interface where we could report on all of the log data it gathered. Lastly, it needed to provide our customers (developers) with the ability to self-service their own log files. After evaluating most of the major players in the log management arena, we found our ideal solution in a product called <a href="http://www.splunk.com" target="_blank">Splunk</a>.</p>
<p>The first thing I noticed when evaluating Splunk was that they're not like everyone else. They're not trying to sell you some sort of logging appliance and they offer their software free for customers with 100 MB/day or less worth of logging. Getting Splunk installed was a breeze. You can have it up and running in minutes. It truly is Log Management for Dummies in that respect, but under the hood there is a highly configurable and customizable tool with an API that you could use to write your own applications to examine log files.</p>
<p>At this point I've mucked around with Splunk for a few months and our configuration is pretty intense. I've added in custom indexes to make my custom dashboards load faster. I've set Splunk up to create queryable metadata fields based on information in the logs. I've added filters for custom timestamps and auditing so we can tell if a log file has been modified. I've even set up a "deployment server" to distribute Splunk's configuration bundles to my various types of servers.  This brings me to the one drawback of Splunk: Upgrading.  Rumor has it that they are working on making it easier to upgrade from one version to the next, but for the time being it involves logging in to each server, stopping Splunk, upgrading the files, and restarting Splunk again.  If you only had to upgrade every once in a while it would be fine, but they maintain a very active development team so I find myself constantly wanting to upgrade to get the latest bug fixes and features.</p>
<p>Other than that, Splunk does exactly what I tell it to do. It grabs all of our logs and presents them in a single intuitive interface. Think of it as a search engine for log and configuration files. Then, once I have the log data in front of me, I can create custom reports based on that data. If I want to, I can even alert based on information Splunk finds in my logs (send an e-mail to a developer every time their application throws an error message). Oh, did I mention that Splunk has a PCI Dashboard that you can install for free? Ask those other guys how much they charge for their PCI solution.</p>
<p>The next time you have some free time be sure to download Splunk and install it on one of your development servers. You won't be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webadminblog.com/index.php/2008/05/22/log-management-for-dummies/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

