Thread: [sqlmap-users] problem with "!"
Brought to you by:
inquisb
From: Guilherme S. <gui...@gm...> - 2015-08-19 17:43:25
|
Hi, I'm having a problem. I have this url: http://site.com:8081/evsys/*!* PKG_ZP?pg=1&pi=S When I execute sqlmap in this url the return is: -bash: !PKG_ZP?pg=1: event not found The problem is with character "!"...how can I resolve this? The url just execute with this character. Guilherme |
From: Brandon P. <bpe...@gm...> - 2015-08-19 17:47:18
|
Use single quotes or escape it. On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < gui...@gm...> wrote: > Hi, > > I'm having a problem. I have this url: http://site.com:8081/evsys/*!* > PKG_ZP?pg=1&pi=S > > When I execute sqlmap in this url the return is: > -bash: !PKG_ZP?pg=1: event not found > > The problem is with character "!"...how can I resolve this? The url just > execute with this character. > > > Guilherme > > > ------------------------------------------------------------------------------ > > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > -- http://volatile-minds.blogspot.com -- blog http://www.volatileminds.net -- website |
From: Guilherme S. <gui...@gm...> - 2015-08-19 17:54:22
|
my command: [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 --risk=3 --dbms=oracle --dbs *-bash: !PKG_ZP?pg=1: event not found* [ec2-user@ip sqlmap-master]$ On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry <bpe...@gm...> wrote: > Use single quotes or escape it. > > On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < > gui...@gm...> wrote: > >> Hi, >> >> I'm having a problem. I have this url: http://site.com:8081/evsys/*!* >> PKG_ZP?pg=1&pi=S >> >> When I execute sqlmap in this url the return is: >> -bash: !PKG_ZP?pg=1: event not found >> >> The problem is with character "!"...how can I resolve this? The url just >> execute with this character. >> >> >> Guilherme >> >> >> ------------------------------------------------------------------------------ >> >> _______________________________________________ >> sqlmap-users mailing list >> sql...@li... >> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >> >> > > > -- > http://volatile-minds.blogspot.com -- blog > http://www.volatileminds.net -- website > |
From: Brandon P. <bpe...@gm...> - 2015-08-19 17:55:31
|
Yeah, use single quotes, not double quotes, or escape the !. On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < gui...@gm...> wrote: > my command: > > [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" > http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 --risk=3 > --dbms=oracle --dbs > *-bash: !PKG_ZP?pg=1: event not found* > [ec2-user@ip sqlmap-master]$ > > > On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry <bpe...@gm...> > wrote: > >> Use single quotes or escape it. >> >> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >> gui...@gm...> wrote: >> >>> Hi, >>> >>> I'm having a problem. I have this url: http://site.com:8081/evsys/*!* >>> PKG_ZP?pg=1&pi=S >>> >>> When I execute sqlmap in this url the return is: >>> -bash: !PKG_ZP?pg=1: event not found >>> >>> The problem is with character "!"...how can I resolve this? The url just >>> execute with this character. >>> >>> >>> Guilherme >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> sqlmap-users mailing list >>> sql...@li... >>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>> >>> >> >> >> -- >> http://volatile-minds.blogspot.com -- blog >> http://www.volatileminds.net -- website >> > > -- http://volatile-minds.blogspot.com -- blog http://www.volatileminds.net -- website |
From: Guilherme S. <gui...@gm...> - 2015-08-19 17:59:22
|
with single quotes the result is: [17:54:41] [CRITICAL] invalid target URL how I escape? \ ? On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry <bpe...@gm...> wrote: > Yeah, use single quotes, not double quotes, or escape the !. > > On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < > gui...@gm...> wrote: > >> my command: >> >> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 --risk=3 >> --dbms=oracle --dbs >> *-bash: !PKG_ZP?pg=1: event not found* >> [ec2-user@ip sqlmap-master]$ >> >> >> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry <bpe...@gm... >> > wrote: >> >>> Use single quotes or escape it. >>> >>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>> gui...@gm...> wrote: >>> >>>> Hi, >>>> >>>> I'm having a problem. I have this url: http://site.com:8081/evsys/*!* >>>> PKG_ZP?pg=1&pi=S >>>> >>>> When I execute sqlmap in this url the return is: >>>> -bash: !PKG_ZP?pg=1: event not found >>>> >>>> The problem is with character "!"...how can I resolve this? The url >>>> just execute with this character. >>>> >>>> >>>> Guilherme >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> >>>> _______________________________________________ >>>> sqlmap-users mailing list >>>> sql...@li... >>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>> >>>> >>> >>> >>> -- >>> http://volatile-minds.blogspot.com -- blog >>> http://www.volatileminds.net -- website >>> >> >> > > > -- > http://volatile-minds.blogspot.com -- blog > http://www.volatileminds.net -- website > |
From: Brandon P. <bpe...@gm...> - 2015-08-19 18:01:07
|
Yes, \! On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < gui...@gm...> wrote: > with single quotes the result is: > [17:54:41] [CRITICAL] invalid target URL > > how I escape? \ ? > > On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry <bpe...@gm...> > wrote: > >> Yeah, use single quotes, not double quotes, or escape the !. >> >> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >> gui...@gm...> wrote: >> >>> my command: >>> >>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>> --risk=3 --dbms=oracle --dbs >>> *-bash: !PKG_ZP?pg=1: event not found* >>> [ec2-user@ip sqlmap-master]$ >>> >>> >>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>> bpe...@gm...> wrote: >>> >>>> Use single quotes or escape it. >>>> >>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>> gui...@gm...> wrote: >>>> >>>>> Hi, >>>>> >>>>> I'm having a problem. I have this url: http://site.com:8081/evsys/*!* >>>>> PKG_ZP?pg=1&pi=S >>>>> >>>>> When I execute sqlmap in this url the return is: >>>>> -bash: !PKG_ZP?pg=1: event not found >>>>> >>>>> The problem is with character "!"...how can I resolve this? The url >>>>> just execute with this character. >>>>> >>>>> >>>>> Guilherme >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> >>>>> _______________________________________________ >>>>> sqlmap-users mailing list >>>>> sql...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>> >>>>> >>>> >>>> >>>> -- >>>> http://volatile-minds.blogspot.com -- blog >>>> http://www.volatileminds.net -- website >>>> >>> >>> >> >> >> -- >> http://volatile-minds.blogspot.com -- blog >> http://www.volatileminds.net -- website >> > > -- http://volatile-minds.blogspot.com -- blog http://www.volatileminds.net -- website |
From: Guilherme S. <gui...@gm...> - 2015-08-19 18:05:10
|
Same result: [18:03:21] [CRITICAL] invalid target URL On Wed, Aug 19, 2015 at 3:00 PM, Brandon Perry <bpe...@gm...> wrote: > Yes, \! > > On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < > gui...@gm...> wrote: > >> with single quotes the result is: >> [17:54:41] [CRITICAL] invalid target URL >> >> how I escape? \ ? >> >> On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry <bpe...@gm... >> > wrote: >> >>> Yeah, use single quotes, not double quotes, or escape the !. >>> >>> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >>> gui...@gm...> wrote: >>> >>>> my command: >>>> >>>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>>> --risk=3 --dbms=oracle --dbs >>>> *-bash: !PKG_ZP?pg=1: event not found* >>>> [ec2-user@ip sqlmap-master]$ >>>> >>>> >>>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>>> bpe...@gm...> wrote: >>>> >>>>> Use single quotes or escape it. >>>>> >>>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>>> gui...@gm...> wrote: >>>>> >>>>>> Hi, >>>>>> >>>>>> I'm having a problem. I have this url: http://site.com:8081/evsys/*!* >>>>>> PKG_ZP?pg=1&pi=S >>>>>> >>>>>> When I execute sqlmap in this url the return is: >>>>>> -bash: !PKG_ZP?pg=1: event not found >>>>>> >>>>>> The problem is with character "!"...how can I resolve this? The url >>>>>> just execute with this character. >>>>>> >>>>>> >>>>>> Guilherme >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> >>>>>> _______________________________________________ >>>>>> sqlmap-users mailing list >>>>>> sql...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> http://volatile-minds.blogspot.com -- blog >>>>> http://www.volatileminds.net -- website >>>>> >>>> >>>> >>> >>> >>> -- >>> http://volatile-minds.blogspot.com -- blog >>> http://www.volatileminds.net -- website >>> >> >> > > > -- > http://volatile-minds.blogspot.com -- blog > http://www.volatileminds.net -- website > |
From: Brandon P. <bpe...@gm...> - 2015-08-19 18:24:41
|
That might be a bug, not sure. On Wed, Aug 19, 2015 at 1:04 PM, Guilherme Scombatti <gui...@gm... > wrote: > Same result: [18:03:21] [CRITICAL] invalid target URL > > On Wed, Aug 19, 2015 at 3:00 PM, Brandon Perry <bpe...@gm...> > wrote: > >> Yes, \! >> >> On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < >> gui...@gm...> wrote: >> >>> with single quotes the result is: >>> [17:54:41] [CRITICAL] invalid target URL >>> >>> how I escape? \ ? >>> >>> On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry < >>> bpe...@gm...> wrote: >>> >>>> Yeah, use single quotes, not double quotes, or escape the !. >>>> >>>> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >>>> gui...@gm...> wrote: >>>> >>>>> my command: >>>>> >>>>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>>>> --risk=3 --dbms=oracle --dbs >>>>> *-bash: !PKG_ZP?pg=1: event not found* >>>>> [ec2-user@ip sqlmap-master]$ >>>>> >>>>> >>>>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>>>> bpe...@gm...> wrote: >>>>> >>>>>> Use single quotes or escape it. >>>>>> >>>>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>>>> gui...@gm...> wrote: >>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> I'm having a problem. I have this url: http://site.com:8081/evsys/ >>>>>>> *!*PKG_ZP?pg=1&pi=S >>>>>>> >>>>>>> When I execute sqlmap in this url the return is: >>>>>>> -bash: !PKG_ZP?pg=1: event not found >>>>>>> >>>>>>> The problem is with character "!"...how can I resolve this? The url >>>>>>> just execute with this character. >>>>>>> >>>>>>> >>>>>>> Guilherme >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------------------------------ >>>>>>> >>>>>>> _______________________________________________ >>>>>>> sqlmap-users mailing list >>>>>>> sql...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> http://volatile-minds.blogspot.com -- blog >>>>>> http://www.volatileminds.net -- website >>>>>> >>>>> >>>>> >>>> >>>> >>>> -- >>>> http://volatile-minds.blogspot.com -- blog >>>> http://www.volatileminds.net -- website >>>> >>> >>> >> >> >> -- >> http://volatile-minds.blogspot.com -- blog >> http://www.volatileminds.net -- website >> > > -- http://volatile-minds.blogspot.com -- blog http://www.volatileminds.net -- website |
From: Miroslav S. <mir...@gm...> - 2015-08-19 18:45:19
|
Brandon said ok. You had to enclose the problematic url with single quotes. After that remove that = sign from option -u. I'll just copy paste the related part from the help listing: -u URL, --url=URL Target URL (e.g. "http://www.site.com/vuln.php?id=1") Bye p.s. at the end this is valid: python sqlmap.py -u ' http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S' -p pg --level=5 --risk=3 --dbms=oracle --dbs On Wed, Aug 19, 2015 at 8:24 PM, Brandon Perry <bpe...@gm...> wrote: > That might be a bug, not sure. > > On Wed, Aug 19, 2015 at 1:04 PM, Guilherme Scombatti < > gui...@gm...> wrote: > >> Same result: [18:03:21] [CRITICAL] invalid target URL >> >> On Wed, Aug 19, 2015 at 3:00 PM, Brandon Perry <bpe...@gm... >> > wrote: >> >>> Yes, \! >>> >>> On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < >>> gui...@gm...> wrote: >>> >>>> with single quotes the result is: >>>> [17:54:41] [CRITICAL] invalid target URL >>>> >>>> how I escape? \ ? >>>> >>>> On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry < >>>> bpe...@gm...> wrote: >>>> >>>>> Yeah, use single quotes, not double quotes, or escape the !. >>>>> >>>>> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >>>>> gui...@gm...> wrote: >>>>> >>>>>> my command: >>>>>> >>>>>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>>>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>>>>> --risk=3 --dbms=oracle --dbs >>>>>> *-bash: !PKG_ZP?pg=1: event not found* >>>>>> [ec2-user@ip sqlmap-master]$ >>>>>> >>>>>> >>>>>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>>>>> bpe...@gm...> wrote: >>>>>> >>>>>>> Use single quotes or escape it. >>>>>>> >>>>>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>>>>> gui...@gm...> wrote: >>>>>>> >>>>>>>> Hi, >>>>>>>> >>>>>>>> I'm having a problem. I have this url: http://site.com:8081/evsys/ >>>>>>>> *!*PKG_ZP?pg=1&pi=S >>>>>>>> >>>>>>>> When I execute sqlmap in this url the return is: >>>>>>>> -bash: !PKG_ZP?pg=1: event not found >>>>>>>> >>>>>>>> The problem is with character "!"...how can I resolve this? The url >>>>>>>> just execute with this character. >>>>>>>> >>>>>>>> >>>>>>>> Guilherme >>>>>>>> >>>>>>>> >>>>>>>> ------------------------------------------------------------------------------ >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> sqlmap-users mailing list >>>>>>>> sql...@li... >>>>>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> http://volatile-minds.blogspot.com -- blog >>>>>>> http://www.volatileminds.net -- website >>>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> http://volatile-minds.blogspot.com -- blog >>>>> http://www.volatileminds.net -- website >>>>> >>>> >>>> >>> >>> >>> -- >>> http://volatile-minds.blogspot.com -- blog >>> http://www.volatileminds.net -- website >>> >> >> > > > -- > http://volatile-minds.blogspot.com -- blog > http://www.volatileminds.net -- website > > > ------------------------------------------------------------------------------ > > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > -- Miroslav Stampar http://about.me/stamparm |
From: Miroslav S. <mir...@gm...> - 2015-08-19 19:01:25
|
With the latest commit you'll be warned: $ python sqlmap.py -u='http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S' -p pg --level=5 --risk=3 --dbms=oracle --dbs [!] potentially miswritten (illegal '=') short option detected ('-u= http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S') ... Bye On Wed, Aug 19, 2015 at 8:45 PM, Miroslav Stampar < mir...@gm...> wrote: > Brandon said ok. You had to enclose the problematic url with single quotes. > > After that remove that = sign from option -u. > > I'll just copy paste the related part from the help listing: > > -u URL, --url=URL Target URL (e.g. "http://www.site.com/vuln.php?id=1") > > Bye > > p.s. at the end this is valid: python sqlmap.py -u ' > http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S' -p pg --level=5 --risk=3 > --dbms=oracle --dbs > > On Wed, Aug 19, 2015 at 8:24 PM, Brandon Perry <bpe...@gm...> > wrote: > >> That might be a bug, not sure. >> >> On Wed, Aug 19, 2015 at 1:04 PM, Guilherme Scombatti < >> gui...@gm...> wrote: >> >>> Same result: [18:03:21] [CRITICAL] invalid target URL >>> >>> On Wed, Aug 19, 2015 at 3:00 PM, Brandon Perry < >>> bpe...@gm...> wrote: >>> >>>> Yes, \! >>>> >>>> On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < >>>> gui...@gm...> wrote: >>>> >>>>> with single quotes the result is: >>>>> [17:54:41] [CRITICAL] invalid target URL >>>>> >>>>> how I escape? \ ? >>>>> >>>>> On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry < >>>>> bpe...@gm...> wrote: >>>>> >>>>>> Yeah, use single quotes, not double quotes, or escape the !. >>>>>> >>>>>> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >>>>>> gui...@gm...> wrote: >>>>>> >>>>>>> my command: >>>>>>> >>>>>>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>>>>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>>>>>> --risk=3 --dbms=oracle --dbs >>>>>>> *-bash: !PKG_ZP?pg=1: event not found* >>>>>>> [ec2-user@ip sqlmap-master]$ >>>>>>> >>>>>>> >>>>>>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>>>>>> bpe...@gm...> wrote: >>>>>>> >>>>>>>> Use single quotes or escape it. >>>>>>>> >>>>>>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>>>>>> gui...@gm...> wrote: >>>>>>>> >>>>>>>>> Hi, >>>>>>>>> >>>>>>>>> I'm having a problem. I have this url: http://site.com:8081/evsys/ >>>>>>>>> *!*PKG_ZP?pg=1&pi=S >>>>>>>>> >>>>>>>>> When I execute sqlmap in this url the return is: >>>>>>>>> -bash: !PKG_ZP?pg=1: event not found >>>>>>>>> >>>>>>>>> The problem is with character "!"...how can I resolve this? The >>>>>>>>> url just execute with this character. >>>>>>>>> >>>>>>>>> >>>>>>>>> Guilherme >>>>>>>>> >>>>>>>>> >>>>>>>>> ------------------------------------------------------------------------------ >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> sqlmap-users mailing list >>>>>>>>> sql...@li... >>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> http://volatile-minds.blogspot.com -- blog >>>>>>>> http://www.volatileminds.net -- website >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> http://volatile-minds.blogspot.com -- blog >>>>>> http://www.volatileminds.net -- website >>>>>> >>>>> >>>>> >>>> >>>> >>>> -- >>>> http://volatile-minds.blogspot.com -- blog >>>> http://www.volatileminds.net -- website >>>> >>> >>> >> >> >> -- >> http://volatile-minds.blogspot.com -- blog >> http://www.volatileminds.net -- website >> >> >> ------------------------------------------------------------------------------ >> >> _______________________________________________ >> sqlmap-users mailing list >> sql...@li... >> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >> >> > > > -- > Miroslav Stampar > http://about.me/stamparm > -- Miroslav Stampar http://about.me/stamparm |
From: Guilherme S. <gui...@gm...> - 2015-08-19 19:04:56
|
Thanks Brandon and Miroslav. worked! =] On Wed, Aug 19, 2015 at 4:01 PM, Miroslav Stampar < mir...@gm...> wrote: > With the latest commit you'll be warned: > > $ python sqlmap.py -u='http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S' -p > pg --level=5 --risk=3 --dbms=oracle --dbs > [!] potentially miswritten (illegal '=') short option detected ('-u= > http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S') > ... > > Bye > > On Wed, Aug 19, 2015 at 8:45 PM, Miroslav Stampar < > mir...@gm...> wrote: > >> Brandon said ok. You had to enclose the problematic url with single >> quotes. >> >> After that remove that = sign from option -u. >> >> I'll just copy paste the related part from the help listing: >> >> -u URL, --url=URL Target URL (e.g. "http://www.site.com/vuln.php?id=1") >> >> Bye >> >> p.s. at the end this is valid: python sqlmap.py -u ' >> http://site.com:8081/evsys/!PKG_ZP?pg=1&pi=S' -p pg --level=5 --risk=3 >> --dbms=oracle --dbs >> >> On Wed, Aug 19, 2015 at 8:24 PM, Brandon Perry <bpe...@gm... >> > wrote: >> >>> That might be a bug, not sure. >>> >>> On Wed, Aug 19, 2015 at 1:04 PM, Guilherme Scombatti < >>> gui...@gm...> wrote: >>> >>>> Same result: [18:03:21] [CRITICAL] invalid target URL >>>> >>>> On Wed, Aug 19, 2015 at 3:00 PM, Brandon Perry < >>>> bpe...@gm...> wrote: >>>> >>>>> Yes, \! >>>>> >>>>> On Wed, Aug 19, 2015 at 12:58 PM, Guilherme Scombatti < >>>>> gui...@gm...> wrote: >>>>> >>>>>> with single quotes the result is: >>>>>> [17:54:41] [CRITICAL] invalid target URL >>>>>> >>>>>> how I escape? \ ? >>>>>> >>>>>> On Wed, Aug 19, 2015 at 2:55 PM, Brandon Perry < >>>>>> bpe...@gm...> wrote: >>>>>> >>>>>>> Yeah, use single quotes, not double quotes, or escape the !. >>>>>>> >>>>>>> On Wed, Aug 19, 2015 at 12:53 PM, Guilherme Scombatti < >>>>>>> gui...@gm...> wrote: >>>>>>> >>>>>>>> my command: >>>>>>>> >>>>>>>> [ec2-user@ip sqlmap-master]$ python sqlmap.py -u=" >>>>>>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S" -p pg --level=5 >>>>>>>> --risk=3 --dbms=oracle --dbs >>>>>>>> *-bash: !PKG_ZP?pg=1: event not found* >>>>>>>> [ec2-user@ip sqlmap-master]$ >>>>>>>> >>>>>>>> >>>>>>>> On Wed, Aug 19, 2015 at 2:47 PM, Brandon Perry < >>>>>>>> bpe...@gm...> wrote: >>>>>>>> >>>>>>>>> Use single quotes or escape it. >>>>>>>>> >>>>>>>>> On Wed, Aug 19, 2015 at 12:42 PM, Guilherme Scombatti < >>>>>>>>> gui...@gm...> wrote: >>>>>>>>> >>>>>>>>>> Hi, >>>>>>>>>> >>>>>>>>>> I'm having a problem. I have this url: >>>>>>>>>> http://site.com:8081/evsys/*!*PKG_ZP?pg=1&pi=S >>>>>>>>>> >>>>>>>>>> When I execute sqlmap in this url the return is: >>>>>>>>>> -bash: !PKG_ZP?pg=1: event not found >>>>>>>>>> >>>>>>>>>> The problem is with character "!"...how can I resolve this? The >>>>>>>>>> url just execute with this character. >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Guilherme >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> ------------------------------------------------------------------------------ >>>>>>>>>> >>>>>>>>>> _______________________________________________ >>>>>>>>>> sqlmap-users mailing list >>>>>>>>>> sql...@li... >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>>>>>>>>> >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> http://volatile-minds.blogspot.com -- blog >>>>>>>>> http://www.volatileminds.net -- website >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> http://volatile-minds.blogspot.com -- blog >>>>>>> http://www.volatileminds.net -- website >>>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> http://volatile-minds.blogspot.com -- blog >>>>> http://www.volatileminds.net -- website >>>>> >>>> >>>> >>> >>> >>> -- >>> http://volatile-minds.blogspot.com -- blog >>> http://www.volatileminds.net -- website >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> sqlmap-users mailing list >>> sql...@li... >>> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >>> >>> >> >> >> -- >> Miroslav Stampar >> http://about.me/stamparm >> > > > > -- > Miroslav Stampar > http://about.me/stamparm > |