From: Nico H. <nic...@in...> - 2013-08-02 13:02:27
<html><head></head><body bgcolor="" style=""><p>Team</p>
<p>#sqlmap -u http://domain.com:80/ --cookie="JSESSIONID=DLDSQpvPb33G9mrTW2hYQlLNn!-485805556!-490732187;" --data="abc&def" --dbs is what i tried,</p>
<p>I got the error msg stating</p>
<p>bash: !-485805556: event not found</p>
<p>then i tried</p>
<p>#sqlmap -u http://domain.com:80/ --cookie="JSESSIONID=DLDSQpvPb33G9mrTW2hYQlLNn\!-485805556\!-490732187;" --data="abc&def" --dbs</p>
<p>now also i am getting \!-485805556\!-490732187;: command not found</p>
<p>how to handle this ! symbol at cookies?</p>
<p> </p>
<p>--Nico</p></body></html>
From: Andres R. <and...@gm...> - 2013-08-02 13:06:09
foo@bar:~/$ echo "!"
bash: !: event not found
foo@bar:~/$ echo '!'
!
On Fri, Aug 2, 2013 at 10:02 AM, Nico Hulkenberg <nic...@in...> wrote:
> Team
>
> #sqlmap -u http://domain.com:80/
> --cookie="JSESSIONID=DLDSQpvPb33G9mrTW2hYQlLNn!-485805556!-490732187;"
> --data="abc&def" --dbs is what i tried,
>
> I got the error msg stating
>
> bash: !-485805556: event not found
>
> then i tried
>
> #sqlmap -u http://domain.com:80/
> --cookie="JSESSIONID=DLDSQpvPb33G9mrTW2hYQlLNn\!-485805556\!-490732187;"
> --data="abc&def" --dbs
>
> now also i am getting \!-485805556\!-490732187;: command not found
>
> how to handle this ! symbol at cookies?
>
>
>
> --Nico
>
>
> ------------------------------------------------------------------------------
> Get your SQL database under version control now!
> Version control is standard for application code, but databases havent
> caught up. So what steps can you take to put your SQL databases under
> version control? Why should you start doing it? Read more to find out.
> http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
> _______________________________________________
> sqlmap-users mailing list
> sql...@li...
> https://lists.sourceforge.net/lists/listinfo/sqlmap-users
>
--
Andrés Riancho
Project Leader at w3af - http://w3af.org/
Web Application Attack and Audit Framework
Twitter: @w3af
GPG: 0x93C344F3
Am 02.08.2013 15:05, schrieb Andres Riancho:
> foo@bar:~/$ echo "!"
> bash: !: event not found
> foo@bar:~/$ echo '!'
> !
Or write the request to a file and use sqlmaps "-l" option.
All the best,
Sebastian