a heads up on my knowledge: I'm used to building relatively basic PHP apps with MySQL, besides that I don't have huge programming experience.
I'm just starting to build a fairly simple web application where data is stored in a database using php and mysql in one part of the country, and retrieved in another part. The data will contain personal information that must, under no circumstances, be accessed by a third party. And there may be cases where a third party will actively try to access that information. Let's assume its the names of witnesses. This is a system done on a low-budget in a development country without any sort of witness protection.
One of the measures I want to take is to anonymise the data before ever putting it in the database, I'm assuming that's the safest and most low-cost. Besides that, what measures can I take to reduce the chance of hackers getting access to these people's data?
If I use intense encryption on the data before storing it, the people entering it and the ones retrieving it will need to have the encryption key, right? That's an issue since many people will be entering/retrieving data, creating vulnerabilities. If the key is stored on the server, e.g. in the code, it won't be much of a protection, right? Or can the code be made to be fairly hacker-safe?
I read in some forum an old post, where someone suggests:
Webserver<==>Application server ( in DMZ)<==>database server (behind 2nd Firewall) with an application that precludes & prevents SQL injection & similar defenses. In such a scenario, no hacker can get close to the database itself.
Is that true? Would three physical servers be needed for that?
Best, D