sethserver / mysql

MySQL

How to Create a New User

MySQL

It's generally considered bad form to use the root MySQL user to manage and query your database. One of the first things I do after spinning up a MySQL database is create users with varying degrees of permissions. read on »

How to Prevent SQL Injection

MySQL

SQL Injection is a type of attack that allows malicious users to inject SQL statements into non-validated queries. This can be used to read and modify data in your database. read on »