<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Decrypting Filezilla Passwords with PHP</title>
	<atom:link href="http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php</link>
	<description>Wootten's Weblog</description>
	<pubDate>Tue, 06 Jan 2009 15:43:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Ian</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-37917</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Tue, 28 Oct 2008 12:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-37917</guid>
		<description>Hey Martin, thanks for that, I'm sure others will find it useful.</description>
		<content:encoded><![CDATA[<p>Hey Martin, thanks for that, I&#8217;m sure others will find it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Haynes</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-37910</link>
		<dc:creator>Martin Haynes</dc:creator>
		<pubDate>Mon, 27 Oct 2008 19:30:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-37910</guid>
		<description>Thanks, Ian.  Big help.  Here's a simple java re-write that I created to recover my own lost login.


public class SimpleDecryptor {

	public static void main(String[] args) {

		// Encryption Key for FileZilla 2.x Passwords
	final String key = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
	
	// encoded ascii character length
	final int bytesize = 3;

	// init with FileZilla encoded password
	String pswd = "";

	// Find the offset position in the key for this pass
	int offset = (pswd.length() / bytesize) % key.length();

	String decode = "";

	//parse encrypted password in three character ascii-encoded chunks
	for (int i = 0; i  " + decode);
	}
}</description>
		<content:encoded><![CDATA[<p>Thanks, Ian.  Big help.  Here&#8217;s a simple java re-write that I created to recover my own lost login.</p>
<p>public class SimpleDecryptor {</p>
<p>	public static void main(String[] args) {</p>
<p>		// Encryption Key for FileZilla 2.x Passwords<br />
	final String key = &#8220;FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ&#8221;;</p>
<p>	// encoded ascii character length<br />
	final int bytesize = 3;</p>
<p>	// init with FileZilla encoded password<br />
	String pswd = &#8220;&#8221;;</p>
<p>	// Find the offset position in the key for this pass<br />
	int offset = (pswd.length() / bytesize) % key.length();</p>
<p>	String decode = &#8220;&#8221;;</p>
<p>	//parse encrypted password in three character ascii-encoded chunks<br />
	for (int i = 0; i  &#8221; + decode);<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-36868</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 06 Sep 2008 15:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-36868</guid>
		<description>@Roger - Hey thats great, glad it helped you.</description>
		<content:encoded><![CDATA[<p>@Roger - Hey thats great, glad it helped you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Heathcote</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-36866</link>
		<dc:creator>Roger Heathcote</dc:creator>
		<pubDate>Sat, 06 Sep 2008 09:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-36866</guid>
		<description>Hi Ian, thanks for that. I’ve just written a post on my new blog about this issue and the new FileZilla 3. I have translated your code into python at the bottom of it... 

http://movingtoubuntu.technicalbloke.co.uk/filezilla_ftp</description>
		<content:encoded><![CDATA[<p>Hi Ian, thanks for that. I’ve just written a post on my new blog about this issue and the new FileZilla 3. I have translated your code into python at the bottom of it&#8230; </p>
<p><a href="http://movingtoubuntu.technicalbloke.co.uk/filezilla_ftp" rel="nofollow" >http://movingtoubuntu.technicalbloke.co.uk/filezilla_ftp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-34611</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Thu, 17 Jul 2008 14:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-34611</guid>
		<description>Hey that's awesome. Glad you like it. People might be interested to know a password recovery program also exists - its over at &lt;a href="http://www.devpro.it/filezilla_pr/" rel="nofollow"&gt;devpro.it/filezilla_pr&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hey that&#8217;s awesome. Glad you like it. People might be interested to know a password recovery program also exists - its over at <a href="http://www.devpro.it/filezilla_pr/" rel="nofollow" onclick="javascript:urchinTracker ('/outbound/comment/www.devpro.it');">devpro.it/filezilla_pr</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neal</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-34610</link>
		<dc:creator>Neal</dc:creator>
		<pubDate>Thu, 17 Jul 2008 14:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-34610</guid>
		<description>Thanks.
A great help.
Just follwed your instructions and used Excel (not a php'er)
Saved me the $17 registration for the recovery program :)</description>
		<content:encoded><![CDATA[<p>Thanks.<br />
A great help.<br />
Just follwed your instructions and used Excel (not a php&#8217;er)<br />
Saved me the $17 registration for the recovery program <img src='http://www.ianwootten.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-26282</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 27 Feb 2008 10:39:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-26282</guid>
		<description>No, not fake - just a funny 5 minutes (or more like 1 day) after activating a bad plugin, sorry!</description>
		<content:encoded><![CDATA[<p>No, not fake - just a funny 5 minutes (or more like 1 day) after activating a bad plugin, sorry!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akash</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-26279</link>
		<dc:creator>Akash</dc:creator>
		<pubDate>Wed, 27 Feb 2008 09:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-26279</guid>
		<description>Where is the code/sample/idea. I am unable to find anything. Is this fake?</description>
		<content:encoded><![CDATA[<p>Where is the code/sample/idea. I am unable to find anything. Is this fake?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-26087</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 22 Feb 2008 10:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-26087</guid>
		<description>Yeah, I'd imagine that may be due to the lovely automatic formatting of wordpress.</description>
		<content:encoded><![CDATA[<p>Yeah, I&#8217;d imagine that may be due to the lovely automatic formatting of wordpress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.ianwootten.co.uk/2008/01/05/decrypting-filezilla-passwords-with-php#comment-26085</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 22 Feb 2008 10:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ianwootten.co.uk/2008/01/06/decrypting-filezilla-passwords-with-php/#comment-26085</guid>
		<description>Ah, fixed it... problem with the ""'s!</description>
		<content:encoded><![CDATA[<p>Ah, fixed it&#8230; problem with the &#8220;&#8221;&#8217;s!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
