1
Beginner's Corner / Re: sqlmap - unable to target site using multiple GET parameters
« on: September 21, 2015, 08:24:23 PM »
Sometimes SQLMap bugs if the URL have more than one argument, like the example you used.
If is the case you can specify the parameter you want to test or skip the unwanted ones like the example:
sqlmap -u http://example/test.php?feature=music&song=1 --skip feature
sqlmap -u http://example/vuln/test.php? --data="feature=music&song=1" -p song
I think these examples are self explain
When I got this kind of error this syntax solved everything...
If is the case you can specify the parameter you want to test or skip the unwanted ones like the example:
sqlmap -u http://example/test.php?feature=music&song=1 --skip feature
sqlmap -u http://example/vuln/test.php? --data="feature=music&song=1" -p song
I think these examples are self explain
When I got this kind of error this syntax solved everything...