<?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>JW Network Consulting &#187; Web Application Security</title>
	<atom:link href="http://www.jwnetworkconsulting.com/category/security/web-application-security/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jwnetworkconsulting.com</link>
	<description>Watching the network so you don't have to.</description>
	<lastBuildDate>Thu, 22 Jul 2010 01:23:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>New Open Source Project Created &#8211; Reconnoiter</title>
		<link>http://www.jwnetworkconsulting.com/security/web-application-security/new-open-source-project-created-reconnoiter</link>
		<comments>http://www.jwnetworkconsulting.com/security/web-application-security/new-open-source-project-created-reconnoiter#comments</comments>
		<pubDate>Wed, 16 Sep 2009 05:07:03 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Web Application Security]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[penetration testing]]></category>
		<category><![CDATA[web app security]]></category>

		<guid isPermaLink="false">http://www.jwnetworkconsulting.com/?p=268</guid>
		<description><![CDATA[Earlier this month I decided to take the scripts for username generation and roll them into an open source project.  There were a couple of reasons for doing so.  First, I needed source control hosting and SourceForge provides that for free as long as you release the project to the public.  Second, I want to [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month I decided to take the scripts for username generation and roll them into an open source project.  There were a couple of reasons for doing so.  First, I needed source control hosting and SourceForge provides that for free as long as you release the project to the public.  Second, I want to expand the scope of it to go beyond what I&#8217;ve done so far.  It&#8217;s great that people have found these scripts useful, but its hardly rocket science.  This should give me some more room to explore and share with others.</p>
<p>If you would like to check out the project, you can search for &#8220;Reconnoiter&#8221; on sourceforge.net or you can just follow this link:</p>
<p><a href="http://sourceforge.net/projects/reconnoiter/">http://sourceforge.net/projects/reconnoiter/</a></p>
<p>One last note.  There are some changes in the 0.2 release of Reconnoiter that may be useful.  I found a nasty bug in the Yahoo script that needed to be fixed badly.  That&#8217;s been done and committed to the release.  Last, I made the output a lot more useful.  There was no filtering at all for results that included HTML code in them.  This caused some obviously bad usernames.  Unless you logged in as &#8220;&lt;b&gt;jwood&lt;/b&gt;&#8221; often.  To help with that I&#8217;ve added some filtering which should improve the quality of the results.  Enjoy!</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/open+source' rel='tag' target='_self'>open source</a>, <a class='technorati-link' href='http://technorati.com/tag/penetration+testing' rel='tag' target='_self'>penetration testing</a>, <a class='technorati-link' href='http://technorati.com/tag/web+app+security' rel='tag' target='_self'>web app security</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.jwnetworkconsulting.com/security/web-application-security/new-open-source-project-created-reconnoiter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>URL Encoder and Decoder</title>
		<link>http://www.jwnetworkconsulting.com/security/web-application-security/url-encoder-and-decoder</link>
		<comments>http://www.jwnetworkconsulting.com/security/web-application-security/url-encoder-and-decoder#comments</comments>
		<pubDate>Mon, 13 Oct 2008 01:16:15 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://sysadmins.dyndns.org/?p=76</guid>
		<description><![CDATA[I frequently have to do a quick bit of URL encoding and decoding as part of my daily routine. I&#8217;ve been using a particular site for most of this, but I&#8217;ve never really become comfortable with putting some of these things into someone else&#8217;s web site. So I used the code as found here and [...]]]></description>
			<content:encoded><![CDATA[<p><script src="/javascript/encoder.js" type="text/javascript"></script></p>
<p>I frequently have to do a quick bit of URL encoding and decoding as part of my daily routine.  I&#8217;ve been using a particular site for most of this, but I&#8217;ve never really become comfortable with putting some of these things into someone else&#8217;s web site.  So I used the code as found <a href="http://meyerweb.com/eric/tools/dencoder/">here</a> and created my own page to use.  I don&#8217;t have to search for it now and that&#8217;s fairly appealing too.  Enjoy.</p>
<form> <textarea id="dencoder" cols="65" rows="10"></textarea></p>
<div>
<input onclick="decode()" type="button" value="Decode" />
<input onclick="encode()" type="button" value="Encode" /></div>
</form>
<ul>
<li>Input a string of text and encode or decode it as you like.</li>
<li>Handy for turning encoded JavaScript URLs from complete gibberish into readable gibberish.</li>
<li>If you&#8217;d like to have the URL Decoder/Encoder for offline use, just view source and save to your hard drive.</li>
</ul>
<p>The URL Decoder/Encoder is licensed under a Creative Commons<a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/"> Attribution-ShareAlike 2.0</a> License.</p>
<p><img src="http://creativecommons.org/images/public/somerights.gif" border="0" alt="Creative Commons License" /></p>

<!-- start wp-tags-to-technorati 1.01 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.jwnetworkconsulting.com/security/web-application-security/url-encoder-and-decoder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
