Hi there. This is the last part of this tutorial where I tell you a few things about securing PHP on the server, about securing MySQL and Apache.
OBS: If you don’t administer your own server, this information will be useful to you while shopping for a Web host, so you better continue reading.
Before starting this [...]
Posts Tagged ‘securing your php application’
Securing PHP Applications Part III – Securing PHP on the server / Securing MySQL and Apache
October 13th, 2010
1 Comment
Securing PHP Applications Part II – Securing PHP code
September 28th, 2010
2 Comments
5. SQL injections
What is it?
This type of attack is one of the most common attacks. SQL injections occur after two failures of the part of developers: failure to filter data as it enters the application (filter input) and failure to escape data as it is sent to the database (escape output). For example, let’s suppose we [...]