[sqlmap-users] sqlmap bug (1.0-dev (r4264))

2011-07-13 Thread Christian S.
[00:45:39] [CRITICAL] unhandled exception in sqlmap/1.0-dev (r4264), retry your run with the latest development version from the Subversion repository. If the exception persists, please send by e-mail to sqlmap-users@lists.sourceforge.net the following text and any information required to repro

Re: [sqlmap-users] sqlmap bug (1.0-dev (r4264))

2011-07-13 Thread Bernardo Damele A. G.
Please find it fixed. Thanks for reporting. Bernardo On 13 July 2011 07:29, Christian S. wrote: > [00:45:39] [CRITICAL] unhandled exception in sqlmap/1.0-dev (r4264), > retry your run with the latest development version from the Subversion > repository. If the exception persists, please send by

Re: [sqlmap-users] Subquery payloads on mysql <4.1

2011-07-13 Thread Till .ch
I've found a way around it this query is invalid: 1234 AND ORD(MID((SELECT IFNULL(CAST(COUNT(*) AS CHAR),CHAR(32)) FROM randomtable),1,1)) > 51 this is valid: 1234 AND 1 = 0 UNION SELECT ORD(MID(IFNULL(CAST(COUNT(*) AS CHAR),CHAR(32)),1,1)) AS ENTR,id FROM randomtable GROUP BY id HAV