Google News
logo
Cyber Security - Interview Questions
What is SQL injection and how it can be prevented?
SQL Injection (SQLi) is a type of code injection attack where it manages to execute malicious SQL statements to control a database server behind a web application. Attackers mostly use this to avoid application security measures and thereby access, modify, and delete unauthorized data.
 
The following ways will help you to mitigate or prevent SQL injection attacks :
 
* Include Prepared Statements (with Parameterized Queries)
* Use Stored Procedures
* Validate user input
* Hide data from the error message
* Update your system
* Store database credentials separate and encrypted
* Disable shell and any other functionalities you don’t need
Advertisement