Re: [PHP] FileZilla Password Decoder --- $i think therefore $i am

2007-10-11 Thread Amos Vryhof
Thanks! That Helped Immensely. the final function is below (with a little documentation)... I'll post my final converter somewhere soon... it's done, and works. // Decodes a FileZilla 2 password function DecodePassword($strPass) { // The Encryption Salt for FileZilla 2 Passwords $str

Re: [PHP] FileZilla Password Decoder --- $i think therefore $i am

2007-10-11 Thread Jochem Maas
Amos Vryhof wrote: > Good Morning everyone, > > > def DecodePassword( strPass): > """Decode a filezilla password""" > strKey = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ" > > nPassLen = len(strPass) / 3 > nOffset = nPassLen % len(strKey) > > strDecodedPass = "" >

[PHP] FileZilla Password Decoder

2007-10-11 Thread Amos Vryhof
Good Morning everyone, This week, I switched from FileZilla 2 to FileZilla 3, and much to my dismay the import function doesn't import the local and remote folders properly. Looking at the FZ2 and FZ3 XML files, it appears that it would be a simple task to write a converter that does. I hav