decrypt coc coc password | XenArmor https://xenarmor.com Wed, 13 Nov 2019 08:22:35 +0000 en-US hourly 1 https://xenarmor.com/wp-content/uploads/2018/12/favicon-120x120.png decrypt coc coc password | XenArmor https://xenarmor.com 32 32 How to Recover Saved Passwords in Coc Coc Browser https://xenarmor.com/how-to-recover-saved-passwords-in-coc-coc-browser/ https://xenarmor.com/how-to-recover-saved-passwords-in-coc-coc-browser/#respond Wed, 13 Nov 2019 08:18:29 +0000 https://xenarmor.com/?p=15756 This research article shows you all password secrets of Coc Coc browser including where all your website passwords are stored, how it is stored and how to recover it automatically. Coc Coc Browser Password Secrets Coc Coc browser stores all your website login passwords in the “Login Data” file at following location [Windows Vista/7/8/10] C:\Users\Administrator\AppData\Local\CocCoc\Browser\User Data\Default\ [Windows XP/2003] C:\Documents and Settings\Administrator\Local Settings\Application Data\CocCoc\Browser\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) Here action_url, username_value and password_value refers to website login link, username and encrypted password respectively. Coc Coc 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 on another computer. Hence Coc Coc Browser password recovery has to be performed on the same computer as same user. How to Decrypt Coc Coc Browser Passwords Coc Coc Browser 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 Coc Coc Browser passwords. 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...

Continue Reading

The post How to Recover Saved Passwords in Coc Coc Browser first appeared on XenArmor.]]>
https://xenarmor.com/how-to-recover-saved-passwords-in-coc-coc-browser/feed/ 0