-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Python for Security and Networking - Third Edition
By :
In this section, we will learn how to test whether a website is vulnerable to SQL injection using the sqlmap penetration testing tool as an automated tool for finding and exploiting SQL injection vulnerabilities that inject values into the query parameters.
Before defining the SQL injection attack, it is important to know its origins. SQL is a declarative database access language that allows querying, inserting, and modifying information. Its simplicity has made SQL the most widely used database access language today. The context for a SQL injection attack is as follows:
A SQL injection attack occurs when a value in the client request is used within a SQL query without prior sanitization. If we are working...