Reputation: 2213
I'm trying to do vulnerability assessment on Android devices. I'd like to know if , with root permission, there's a way to view all the words saved in the cache of the Android keyboard (all the word that are suggested while typing).
Upvotes: 3
Views: 5379
Reputation: 3404
For Google's Gboard app, the path is /data/data/com.google.android.inputmethod.latin/files/cache . Files here in .dict and .acc format exists containing the data of typing of respective languages, one is using with the app.
One will need root access to go to that path and open the files.
Upvotes: 2