Simple SQL Injection

1 year ago 75
BOOK THIS SPACE FOR AD
ARTICLE AD

Sql injection is a very critical vulnaribility for any organization.An attacker can get hold of internal data through sql dump.

For sql injection at first we need parameters.Generally I go for reflected parameters,it does not matter if the request is GET or POST. Then Iuse sqlmap to automate the sql test.

To install in linux -

sudo snap install sqlmap

To find parameters of the target I use wayback urls.After getting a valid url with parameter simply use the command-

sqlmap -u “http://site.com/sads?asdasd=”

Now to do sql injection on POST request-

Simply save the entire request to a text file(for example test.txt) and go to the endpoint in terminal and run the command-

sqlmap -r test.txt

Read Entire Article