Interception of the database encryption password
INFO | |||
Detection method | DAST API |
Description
The application uses the SQLCipher library to encrypt the database. When creating or opening a database, a password is used, which is then used to encrypt the data. Password interception is not a vulnerability if measures to detect application tooling are used with tools such as Frida or Xposed and the root access check is performed.
The intercepted password is used by Mobix to determine its reliability and search for its value in the collected data.
Recommendations
To protect against runtime password interception, it is necessary to use protection measures to detect application tooling and root access detection. One of the good ways is to use the DetectFrida and DetectMagiskHide. These libraries implement checks in native code. This makes their analysis and modification much more difficult.
Links
1. https://github.com/sqlcipher/android-database-sqlcipher
2. https://github.com/darvincisec/DetectMagiskHide
3. https://github.com/darvincisec/DetectFrida
4. https://darvincitech.wordpress.com/2019/12/23/detect-frida-for-android/
5. https://darvincitech.wordpress.com/2019/11/04/detecting-magisk-hide/