I was using Sqlmap for pen-testing my site sqlmap.py
until the program stop suddenly and when I try to give it an option --dbs
it gives me
[2] 16403 ksh: --dbs: not found
sqlmap.py -u mysite.com/contact.php?id=1 --dbs
I was using Sqlmap for pen-testing my site sqlmap.py
until the program stop suddenly and when I try to give it an option --dbs
it gives me
[2] 16403 ksh: --dbs: not found
sqlmap.py -u mysite.com/contact.php?id=1 --dbs
You have a
&
character in the real URL you used. Quote the URL on your command line:The
&
character puts a command in the background and the shell starts parsing from there for a new command.