Web injections, also known as Structured Query Language injections (SQLi), are cyber-attacks that deal with web application databases. A hacker can use various SQLi methods to bypass a website security for authorization and recover data and information from the entire database or delete certain records. A compromised database can also be manipulated where additional content was added or modified.
What are web injections?
How SQL injections work
To conduct any SQL injection, we must first find an entry point in the website or web application where we can input a query like the following:
Use the following pseudo code to see how this works on the backend:
#Define Post name = request.POST['username'] pwd = request.POST['password'] # Vulnerable...