Re: [sqlmap-users] bug: Url is not parsed correctly
Brought to you by:
inquisb
From: Alessandro T. <ale...@lo...> - 2010-03-15 19:14:20
|
2010/3/15 Kasper Føns <th...@ma...>: > Hello sqlmap users. > > It seems that sqlmap is not parsing the url correctly, see following output: > > C:\Users\foens\Desktop\sqlmap>sqlmap.py -u > http://<host>/conferences/viewpaper.php?id=2387&cf=16 Because without quoting & is interpreted as DOS command. In fact you are executing sqlmap.py -u http://<host>/conferences/viewpaper.php?id=2387 AND cf=16 as two separate commands. |