How to decrypt a sqlite3 database?

0

Where I work there is an application that allows you to generate some spreadsheets with private data of the institution and some members of it based on a configuration that is extracted from a database in sqlite.

The program to generate the spreadsheet asks you for the database, you select it and until here everything is fine.

The drawback is when you want to load the database, since it verifies if you have a hardware key (Sentinel Super Pro) that contains the password of the database in sqlite.

The problem: They recently stole the hardware key (thinking it was a usable usb) and the program is not allowing the spreadsheets to be generated since the database with the configurations is encrypted, and there is no way to load its configuration (until now they tell me that it can not be loaded, since, I thought to recreate it from scratch)

The way to access said database was done only through the application, so, there are no decrypted backups.

Try to access using SQLite but it is encrypted with SQLCipher.

How can I decrypt the database?

    
asked by Victor Alvarado 21.03.2018 в 13:08
source

0 answers