ITA-Dnipro / Dp-230-Golang-Retraining

1 stars 0 forks source link

Investigate how SQL injection works. #3

Closed avobl closed 2 years ago

avobl commented 2 years ago

SQL Injection is a vulnerability by which an attacker executes malicious SQL queries on the backend database by manipulating the input to the application. Any input field like credit card number, account number, etc., which extracts data from the database by using where clause are the candidates of SQL injection. In addition, to form fields, an attacker can use hidden fields and query strings for successful exploitation.

Examples of SQL injection Blind SQL Injection

sql-injection-01