decrypt ftp explorer password | XenArmor https://xenarmor.com Thu, 26 Sep 2019 11:22:44 +0000 en-US hourly 1 https://xenarmor.com/wp-content/uploads/2018/12/favicon-120x120.png decrypt ftp explorer password | XenArmor https://xenarmor.com 32 32 How to Recover Saved Passwords in FTP Explorer https://xenarmor.com/how-to-recover-saved-passwords-in-ftp-explorer/ https://xenarmor.com/how-to-recover-saved-passwords-in-ftp-explorer/#respond Thu, 19 Sep 2019 21:38:27 +0000 https://xenarmor.com/?p=14716 This research article exposes the password secrets of FTP Explorer application. It shows all interesting details including where all your FTP passwords are stored, how it is stored and how to recover it automatically. FTP Explorer Password Secrets FTP Explorer stores all your FTP login passwords at following location [Windows Vista/7/8/10] C:\Users\[user_name]\Appdata\Roaming\FTP Explorer\profiles.xml [Windows XP/2003] C:\Documents and Settings\[user_name]\Application Data\FTP Explorer\profiles.xml This XML file contains list of all the FTP server configurations. Here is the sample of one of the FTP site entry, <ftpx_xenarmor.com> <Name>xenarmor.com</Name> <Host>xenarmor.com</Host> <Login>xenuser1</Login> <EncryptedPassword>1</EncryptedPassword> <Password>01000000D08C9DDF0115D1118C7A00C04FC297EB01000000(truncated)</Password> <LocalPath>C:\Users\Administrator\Downloads</LocalPath> <RemotePath></RemotePath> <Anonymous>0</Anonymous> <Default>0</Default> <Port>21</Port> </ftpx_xenarmor.com> Here “Host”, “Login” & “Password” fields refer to FTP server, username & encrypted password respectively. EncryptedPassword field indicates if password is encrypted or stored in clear text. FTP Explorer uses Windows DPAPI algorithms to encrypt the FTP password. You can see more technical details in the sample code below. How to Decrypt FTP Explorer Passwords Here is sample C++ program to decrypt the above FTP password using CryptUnprotectData function. void DecryptPassword(char *passData, int passLen, char *password, int length) { DATA_BLOB DataPassword; DATA_BLOB DataOutput; DataPassword.cbData = passLen; DataPassword.pbData = (BYTE *) passData; if( CryptUnprotectData(&DataPassword, NULL, 0, 0, 0, 0, &DataOutput) == FALSE ) { printf("CryptUnprotectData failed with error 0x%.8x", GetLastError()); return; } memcpy(password, DataOutput.pbData, DataOutput.cbData); password[DataOutput.cbData] = 0; printf("Decrypted Password is %s ", password); } How to Recover FTP Explorer Passwords Automatically Here is simple way to recover all your FTP Explorer passwords without worrying about where it is stored and how to decrypt it. You can use our FTP Password Recovery Pro software to instantly & easily recover all your saved FTP login passwords from FTP Explorer as shown in video below, Here are the simple steps to recover all your saved passwords, Step 1: Download & Install FTP Password Recovery Pro from here Step 2:...

Continue Reading

The post How to Recover Saved Passwords in FTP Explorer first appeared on XenArmor.]]>
https://xenarmor.com/how-to-recover-saved-passwords-in-ftp-explorer/feed/ 0