recover comodo password | XenArmor
https://xenarmor.com
Mon, 30 Sep 2019 16:53:05 +0000en-US
hourly
1 https://xenarmor.com/wp-content/uploads/2018/12/favicon.pngrecover comodo password | XenArmor
https://xenarmor.com
3232How to Recover Saved Passwords in Comodo Dragon Browser
https://xenarmor.com/how-to-recover-saved-passwords-in-comodo-dragon-browser/
https://xenarmor.com/how-to-recover-saved-passwords-in-comodo-dragon-browser/#respondSun, 22 Sep 2019 08:49:58 +0000https://xenarmor.com/?p=14803This research article shows you all password secrets of Comodo Dragon browser including where all your website passwords are stored, how it is stored and how to recover it automatically. Comodo Browser Password Secrets Comodo browser stores all your website login passwords in the “Login Data” file at following location [Windows Vista/7/8/10] C:\Users\[user_name]\AppData\Local\Comodo\Dragon\User Data\Default\ [Windows XP/2003] C:\Documents and Settings\[user_name]\Local Settings\Application Data\Comodo\Dragon\User Data\Default\ This “Login Data” file is stored in SQLite database format. It contains database table called “logins” where each website login details are stored. Here are some of the interesting fields stored in this table, origin_url - main link of the website action_url - login link of the website username_element - name of the username field in the website username_value - username used for login password_element - name of the password field in the website password_value - password used for login (encrypted) date_created - date when it is stored times_used - how many times this password is used blacklisted_by_user - set to 1 means password is never stored Here action_url, username_value and password_value refers to website login link, username and encrypted password respectively. Comodo browser encrypts the website password using Windows DPAPI (Data Protection API) functions. These DPAPI functions perform encryption of password using user and machine specific data. As a result encrypted password cannot be decrypted by another user or another computer. Hence Comodo browser password recovery has to be performed on the same computer as same user. How to Decrypt Comodo Browser Passwords Comodo uses Windows DPAPI function, CryptProtectData to encrypt the website password. We can decrypt this password using the function called CryptUnprotectData. Here is the sample C++ program to decrypt the website passwords from Comodo browser. void DecryptPassword(char *passData, int passLen, char *password, int length) { DATA_BLOB DataPassword; DATA_BLOB DataOutput; DataPassword.cbData = passLen; DataPassword.pbData =...