PDA

View Full Version : Exodus Password Decryption



SyntaXmasteR
06-10-2005, 02:06 PM
After analyzing a few exodus passwords i found the patterns that are used to encrypt the passwords that are stored on the local computer. If you would like the patterns PM me.

datzrott_alizee
03-25-2014, 02:05 PM
Not to resurrect a topic from the grave, but I found this on Google and wanted to follow up on it.

Exodus encodes passwords in its configuration file using Base64.

The relavent piece of code is:

ptag := tag.GetFirstTag('password');
if (ptag.GetAttribute('encoded') = 'yes') then
Password := DecodeString(ptag.Data)
else
Password := ptag.Data;

Which begins on line *750 in /svn/v_0_*0_0_0/jopl/PrefController.pas.

Hope this helps someone else in the future trying to decode the passwords Exodus stores in its configuration files.