thank you for this one ... i didn't dl nor tested it ... i'll just wanna let you know ...
hxxp://lab.artlung.com/other/ws_ftp_password_decoder/check out this one ... its written in simple javascript ... u can use it online if you want, no need to DL anything ... and btw you can see what the decoder does!
CODE
<script language="Javascript" type="text/javascript">
<!--
function wsFTP_decoder(myString) {
if (myString.indexOf('PWD=', 0) == -1 || myString.length-37<0)
{
alert("ENTRY NOT VALID: be sure to enter the whole line, including 'PWD='");
}
else
{
myPassword=myString.substring(37,myString.length);
var x= "";
for (var i = 0; i<myPassword.length/2; i++)
{
document.forms[0].decoded_entry.value = "";
var myCharacter=myPassword.substring(i*2,i*2+2);
var myParsed=myString.substring(5+i,6+i);
var myClearText=parseInt("0x"+myCharacter) -i -1 -((47+parseInt("0x"+myParsed))%57);
x = x+String.fromCharCode(myClearText);
document.forms[0].decoded_entry.value = x;
}
}
}
// -->
</script>