Recently it has been discovered that "sloppy" programming in the Skype program has created a vulnerability which could allow other rogue applications access to the SQLite database to retrieve personal information. (source: wired.com)
The articles I am reading states that the data was left unencrypted in the db (which I understand), but I don't understand how another application could access it. I was under the impression that applications run in their own sandbox and cannot access other files in other directories.
Its good timing to read this article for me because I am about to begin storing some information in an SQLite database for my application, and was wondering what I need to do programmatically to secure my SQLite db (its not sensitive data that needs to be encrypted but I want to practice good standards).