0% found this document useful (0 votes)
8 views1 page

Text 2

SQL injection is a technique used to attack data-driven applications by inserting malicious SQL statements into entry fields. This can allow attackers to bypass logins, access secret data, modify website content, or shut down the MySQL server. Understanding SQL and databases is essential, as they are fundamental to how data is stored and queried in applications.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Text 2

SQL injection is a technique used to attack data-driven applications by inserting malicious SQL statements into entry fields. This can allow attackers to bypass logins, access secret data, modify website content, or shut down the MySQL server. Understanding SQL and databases is essential, as they are fundamental to how data is stored and queried in applications.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Material for reference

SQL Injection :
`
SQL injection is a code injection technique, used to attack data-driven
applications, in which malicious SQL statements are inserted into an entry field
for execution (e.g. to dump the database contents to the attacker).
What an attacker can do?
* ByPassing Logins
* Accessing secret data
* Modifying contents of website
* Shutting down the My SQL server
Before we see what SQL Injection is. We should know what SQL and Database are.
Database:
Database is collection of data. In website point of view, database is used for
storing user ids,passwords,web page details and more.
Some List of Database are:
* DB servers,
* MySQL(Open source),
* MSSQL,
* MS-ACCESS,
* Oracle,
* Postgre SQL(open source),
* SQLite,
SQL:
Structured Query Language is Known as SQL. In order to communicate with the
Database ,we are using SQL query. We are querying the database so it is called as
Query language.

You might also like