Thread: Re: [sqlmap-users] unhandled exception
Brought to you by:
inquisb
From: Bernardo D. A. G. <ber...@gm...> - 2009-08-11 09:17:41
|
Hi Lee, On Mon, Aug 10, 2009 at 16:11, Lawson, Lee<Lee...@dn...> wrote: > ... > [16:08:53] [ERROR] unhandled exception in sqlmap/0.7, please copy the > command line and the following text and send by e-mail to sqlmap-users > > @lists.sourceforge.net. The developer will fix it as soon as possible: > > sqlmap version: 0.7 > > Python version: 2.6.1 > > Operating system: win32 > > Traceback (most recent call last): > > File "sqlmap.py", line 84, in main > > File "lib\controller\controller.pyc", line 263, in start > > File "lib\controller\action.pyc", line 97, in action > > File "plugins\generic\enumeration.pyc", line 176, in getUsers > > IndexError: list index out of range Thanks for reporting. It should be fixed now. svn update. Cheers, -- Bernardo Damele A. G. E-mail / Jabber: bernardo.damele (at) gmail.com Mobile: +447788962949 (UK 07788962949) PGP Key ID: 0x05F5A30F |
From: Adi M. <adi...@ya...> - 2009-11-01 15:24:09
|
[17:14:37] [ERROR] unhandled exception in sqlmap/0.7, please copy the command line and the following text and send by e-mail to sqlmap- us...@li.... The developer will fix it as soon as possible: sqlmap version: 0.7 Python version: 2.6 Operating system: win32 Traceback (most recent call last): File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\sqlmap.py", line 84, in main start() File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\controller\controller.py", line 263, in start action() File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\controller\action.py", line 140, in action conf.dbmsHandler.osShell() File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\plugins\generic\takeover.py", line 295, in osShell backdoorUrl = self.__webBackdoorInit() File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\plugins\generic\takeover.py", line 170, in __webBackdoorInit uploaderStr = fileToStr("%s/%s" % (paths.SQLMAP_SHELL_PATH, uploaderName)) File "C:\Documents and Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\core\common.py", line 384, in fileToStr filePointer = open(fileName, "r") IOError: [Errno 2] No such file or directory: 'C:\\Documents and Settings\\Adrian\\Desktop\\toolz\\sqli\\sqlmap-0.7/shell/uploader.php' [*] shutting down at: 17:14:37 |
From: Andres R. <and...@gm...> - 2009-11-01 15:36:15
|
Bernardo, I'm just guessing without really looking at the code, but this seems to be because of a fixed path "sqlmap-0.7/shell/uploader.php" in your code, that uses "/" as a directory separator, when in Windows that is not valid. You should use things like: uploader = os.path.join(os.getcwd(),'shell','uploader.php') Hope this helps, Cheers, On Sun, Nov 1, 2009 at 12:23 PM, Adi Mutu <adi...@ya...> wrote: > > [17:14:37] [ERROR] unhandled exception in sqlmap/0.7, please copy the > command line and the following text and send by e-mail to sqlmap- > us...@li.... The developer will fix it as soon as possible: > sqlmap version: 0.7 > Python version: 2.6 > Operating system: win32 > Traceback (most recent call last): > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\sqlmap.py", line 84, in main > start() > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\controller\controller.py", > line 263, in start > action() > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\controller\action.py", > line 140, in action > conf.dbmsHandler.osShell() > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\plugins\generic\takeover.py", > line 295, in osShell > backdoorUrl = self.__webBackdoorInit() > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\plugins\generic\takeover.py", > line 170, in __webBackdoorInit > uploaderStr = fileToStr("%s/%s" % (paths.SQLMAP_SHELL_PATH, > uploaderName)) > File "C:\Documents and > Settings\Adrian\Desktop\toolz\sqli\sqlmap-0.7\lib\core\common.py", line 384, > in fileToStr > filePointer = open(fileName, "r") > IOError: [Errno 2] No such file or directory: 'C:\\Documents and > Settings\\Adrian\\Desktop\\toolz\\sqli\\sqlmap-0.7/shell/uploader.php' > > > [*] shutting down at: 17:14:37 > > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > -- Andrés Riancho Founder, Bonsai - Information Security http://www.bonsai-sec.com/ http://w3af.sf.net/ |
From: Kerem G. <ker...@gm...> - 2009-12-21 09:24:15
|
sqlmap version: 0.7 Python version: 2.5.1 Operating system: darwin Traceback (most recent call last): File "./sqlmap.py", line 84, in main start() File "/Users/h4x/pwn/sqlmap-0.7/lib/controller/controller.py", line 263, in start action() File "/Users/h4x/pwn/sqlmap-0.7/lib/controller/action.py", line 140, in action conf.dbmsHandler.osShell() File "/Users/h4x/pwn/sqlmap-0.7/plugins/generic/takeover.py", line 295, in osShell backdoorUrl = self.__webBackdoorInit() File "/Users/h4x/pwn/sqlmap-0.7/plugins/generic/takeover.py", line 187, in __webBackdoorInit uplPage, _ = Request.getPage(url=uploaderUrl, direct=True) File "/Users/h4x/pwn/sqlmap-0.7/lib/request/connect.py", line 131, in getPage conn = urllib2.urlopen(req) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 121, in urlopen return _opener.open(url, data) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 374, in open response = self._open(req, data) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 392, in _open '_open', req) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 353, in _call_chain result = func(*args) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 1100, in http_open return self.do_open(httplib.HTTPConnection, req) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", line 1057, in do_open h = http_class(host) # will parse host:port File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/httplib.py", line 635, in __init__ self._set_hostport(host, port) File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/httplib.py", line 647, in _set_hostport raise InvalidURL("nonnumeric port: '%s'" % host[i+1:]) InvalidURL: nonnumeric port: '' |
From: Bernardo D. A. G. <ber...@gm...> - 2009-12-21 11:07:12
|
Try with sqlmap latest development version from subversion and preferably with Python 2.6. On Mon, Dec 21, 2009 at 09:24, Kerem Gunes <ker...@gm...> wrote: > sqlmap version: 0.7 > Python version: 2.5.1 > Operating system: darwin > Traceback (most recent call last): > File "./sqlmap.py", line 84, in main > start() > File "/Users/h4x/pwn/sqlmap-0.7/lib/controller/controller.py", line 263, > in start > action() > File "/Users/h4x/pwn/sqlmap-0.7/lib/controller/action.py", line 140, in > action > conf.dbmsHandler.osShell() > File "/Users/h4x/pwn/sqlmap-0.7/plugins/generic/takeover.py", line 295, in > osShell > backdoorUrl = self.__webBackdoorInit() > File "/Users/h4x/pwn/sqlmap-0.7/plugins/generic/takeover.py", line 187, in > __webBackdoorInit > uplPage, _ = Request.getPage(url=uploaderUrl, direct=True) > File "/Users/h4x/pwn/sqlmap-0.7/lib/request/connect.py", line 131, in > getPage > conn = urllib2.urlopen(req) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 121, in urlopen > return _opener.open(url, data) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 374, in open > response = self._open(req, data) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 392, in _open > '_open', req) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 353, in _call_chain > result = func(*args) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 1100, in http_open > return self.do_open(httplib.HTTPConnection, req) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib2.py", > line 1057, in do_open > h = http_class(host) # will parse host:port > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/httplib.py", > line 635, in __init__ > self._set_hostport(host, port) > File > "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/httplib.py", > line 647, in _set_hostport > raise InvalidURL("nonnumeric port: '%s'" % host[i+1:]) > InvalidURL: nonnumeric port: '' > > > > ------------------------------------------------------------------------------ > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and easy > Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > -- Bernardo Damele A. G. E-mail / Jabber: bernardo.damele (at) gmail.com Mobile: +447788962949 (UK 07788962949) PGP Key ID: 0x05F5A30F |
From: Happy U. <rob...@gm...> - 2012-07-16 20:59:21
|
[*] starting at 00:47:56 [00:47:56] [INFO] parsing multiple targets list from 'D:/Soft/sqlmap-dev/inurl article_id=_FILTERED_U.txt' [00:47:56] [INFO] sqlmap got a total of 147 targets [00:47:56] [CRITICAL] unhandled exception in sqlmap/1.0-dev-5243140, retry your run with the latest development version from the GitHub repository. If the exception persists, please send by e-mail to 'sql...@li...' or open a new issue at 'https://github.com/sqlmapproject/sqlmap/issues/new' with the following text and any information req uired to reproduce the bug. The developers will try to reproduce the bug, fix it accordingly and get back to you. sqlmap version: 1.0-dev-5243140 Python version: 2.7.3 Operating system: nt Command line: d:\Soft\sqlmap-dev\sqlmap.py -m D:/Soft/sqlmap-dev/inurl article_id=_FILTERED_U.txt --threads=5 --current- user --current-db --dbs --tables --exclude-sysdbs -v 0 --batch Technique: None Back-end DBMS: None (identified) Traceback (most recent call last): File "d:\Soft\sqlmap-dev\_sqlmap.py", line 79, in main start() File "d:\Soft\sqlmap-dev\lib\controller\controller.py", line 263, in start parseTargetUrl() File "d:\Soft\sqlmap-dev\lib\core\common.py", line 1083, in parseTargetUrl _ = conf.hostname.encode("idna") File "C:\Python27\lib\encodings\idna.py", line 164, in encode result.append(ToASCII(label)) File "C:\Python27\lib\encodings\idna.py", line 76, in ToASCII label = nameprep(label) File "C:\Python27\lib\encodings\idna.py", line 21, in nameprep newlabel.append(stringprep.map_table_b2(c)) File "C:\Python27\lib\stringprep.py", line 197, in map_table_b2 b = unicodedata.normalize("NFKC", al) TypeError: must be unicode, not str [*] shutting down at 00:47:56 |
From: Miroslav S. <mir...@gm...> - 2012-07-16 21:29:31
|
Hi. Thank you for your report and find it fixed with the latest commit ( https://github.com/sqlmapproject/sqlmap/issues/100). Kind regards, Miroslav Stampar On Mon, Jul 16, 2012 at 10:59 PM, Happy User <rob...@gm...>wrote: > [*] starting at 00:47:56 > > [00:47:56] [INFO] parsing multiple targets list from > 'D:/Soft/sqlmap-dev/inurl article_id=_FILTERED_U.txt' > [00:47:56] [INFO] sqlmap got a total of 147 targets > > [00:47:56] [CRITICAL] unhandled exception in sqlmap/1.0-dev-5243140, retry > your run with the latest development version > from the GitHub repository. If the exception persists, please send by > e-mail to 'sql...@li...' or > open a new issue at 'https://github.com/sqlmapproject/sqlmap/issues/new' > with the following text and any information req > uired to reproduce the bug. The developers will try to reproduce the bug, > fix it accordingly and get back to you. > sqlmap version: 1.0-dev-5243140 > Python version: 2.7.3 > Operating system: nt > Command line: d:\Soft\sqlmap-dev\sqlmap.py -m D:/Soft/sqlmap-dev/inurl > article_id=_FILTERED_U.txt --threads=5 --current- > user --current-db --dbs --tables --exclude-sysdbs -v 0 --batch > Technique: None > Back-end DBMS: None (identified) > Traceback (most recent call last): > File "d:\Soft\sqlmap-dev\_sqlmap.py", line 79, in main > start() > File "d:\Soft\sqlmap-dev\lib\controller\controller.py", line 263, in > start > parseTargetUrl() > File "d:\Soft\sqlmap-dev\lib\core\common.py", line 1083, in > parseTargetUrl > _ = conf.hostname.encode("idna") > File "C:\Python27\lib\encodings\idna.py", line 164, in encode > result.append(ToASCII(label)) > File "C:\Python27\lib\encodings\idna.py", line 76, in ToASCII > label = nameprep(label) > File "C:\Python27\lib\encodings\idna.py", line 21, in nameprep > newlabel.append(stringprep.map_table_b2(c)) > File "C:\Python27\lib\stringprep.py", line 197, in map_table_b2 > b = unicodedata.normalize("NFKC", al) > TypeError: must be unicode, not str > > [*] shutting down at 00:47:56 > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > -- Miroslav Stampar http://about.me/stamparm |
From: el d. <el...@gm...> - 2012-08-31 16:24:26
|
[13:07:45] [CRITICAL] unhandled exception in sqlmap/1.0-dev-33980ad, retry your run with the latest development version from the GitHub repository. If the exception persists, please send by e-mail to 'sql...@li...' or open a new issue at 'https://github.com/sqlmapproject/sqlmap/issues/new' with the following text and any information required to reproduce the bug. The developers will try to reproduce the bug, fix it accordingly and get back to you. sqlmap version: 1.0-dev-33980ad Python version: 2.7.3 Operating system: posix Command line: ./sqlmap.py -u **************************************************** -D *************** --dump --replicate -T ******** --start=101 --stop=500 Technique: UNION Back-end DBMS: MySQL (fingerprinted) Traceback (most recent call last): File "/home/xxx/sqlmap/sqlmap-dev/_sqlmap.py", line 72, in main start() File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/controller.py", line 563, in start action() File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/action.py", line 110, in action conf.dbmsHandler.dumpTable() File "/home/xxx/sqlmap/sqlmap-dev/plugins/generic/entries.py", line 439, in dumpTable conf.dumper.dbTableValues(kb.data.dumpedTable) File "/home/xxx/sqlmap/sqlmap-dev/lib/core/dump.py", line 392, in dbTableValues rtable = replication.createTable(table, cols) File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 96, in createTable return Replication.Table(parent=self, name=tblname, columns=columns, typeless=typeless) File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 56, in __init__ self.parent.cursor.execute('DROP TABLE IF EXISTS "%s"' % self.name) OperationalError: database is locked |
From: Miroslav S. <mir...@gm...> - 2012-09-01 21:53:34
|
Hi. Thank you for reporting and find it fixed now [1]. KInd regards, Miroslav Stampar [1] https://github.com/sqlmapproject/sqlmap/issues/170 On Fri, Aug 31, 2012 at 6:23 PM, el draco <el...@gm...> wrote: > [13:07:45] [CRITICAL] unhandled exception in sqlmap/1.0-dev-33980ad, > retry your run with the latest development version from the GitHub > repository. If the exception persists, please send by e-mail to > 'sql...@li...' or open a new issue at > 'https://github.com/sqlmapproject/sqlmap/issues/new' with the > following text and any information required to reproduce the bug. The > developers will try to reproduce the bug, fix it accordingly and get > back to you. > sqlmap version: 1.0-dev-33980ad > Python version: 2.7.3 > Operating system: posix > Command line: ./sqlmap.py -u > **************************************************** -D > *************** --dump --replicate -T ******** --start=101 --stop=500 > Technique: UNION > Back-end DBMS: MySQL (fingerprinted) > Traceback (most recent call last): > File "/home/xxx/sqlmap/sqlmap-dev/_sqlmap.py", line 72, in main > start() > File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/controller.py", > line 563, in start > action() > File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/action.py", line > 110, in action > conf.dbmsHandler.dumpTable() > File "/home/xxx/sqlmap/sqlmap-dev/plugins/generic/entries.py", line > 439, in dumpTable > conf.dumper.dbTableValues(kb.data.dumpedTable) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/dump.py", line 392, in > dbTableValues > rtable = replication.createTable(table, cols) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 96, > in createTable > return Replication.Table(parent=self, name=tblname, > columns=columns, typeless=typeless) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 56, > in __init__ > self.parent.cursor.execute('DROP TABLE IF EXISTS "%s"' % self.name) > OperationalError: database is locked > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > -- Miroslav Stampar http://about.me/stamparm |
From: André S. <and...@gm...> - 2012-09-10 20:30:09
|
Hi, After syncing the lastest sqlmap version... root@bt:/pentest/database/sqlmap-dev# python2.6 sqlmap.py Traceback (most recent call last): File "sqlmap.py", line 15, in <module> from _sqlmap import main File "/pentest/database/sqlmap-dev/_sqlmap.py", line 17, in <module> from lib.controller.controller import start File "/pentest/database/sqlmap-dev/lib/controller/controller.py", line 11, in <module> from lib.controller.action import action File "/pentest/database/sqlmap-dev/lib/controller/action.py", line 8, in <module> from lib.controller.handler import setHandler File "/pentest/database/sqlmap-dev/lib/controller/handler.py", line 22, in <module> from plugins.dbms.mssqlserver import MSSQLServerMap File "/pentest/database/sqlmap-dev/plugins/dbms/mssqlserver/__init__.py", line 11, in <module> from plugins.dbms.mssqlserver.enumeration import Enumeration File "/pentest/database/sqlmap-dev/plugins/dbms/mssqlserver/enumeration.py", line 29, in <module> from plugins.generic.enumeration import Enumeration as GenericEnumeration File "/pentest/database/sqlmap-dev/plugins/generic/enumeration.py", line 20, in <module> from plugins.generic.entries import Entries File "/pentest/database/sqlmap-dev/plugins/generic/entries.py", line 45, in <module> from lib.utils.pivotdumptable import pivotDumpTable ImportError: No module named pivotdumptable Regards 2012/8/31 el draco <el...@gm...> > [13:07:45] [CRITICAL] unhandled exception in sqlmap/1.0-dev-33980ad, > retry your run with the latest development version from the GitHub > repository. If the exception persists, please send by e-mail to > 'sql...@li...' or open a new issue at > 'https://github.com/sqlmapproject/sqlmap/issues/new' with the > following text and any information required to reproduce the bug. The > developers will try to reproduce the bug, fix it accordingly and get > back to you. > sqlmap version: 1.0-dev-33980ad > Python version: 2.7.3 > Operating system: posix > Command line: ./sqlmap.py -u > **************************************************** -D > *************** --dump --replicate -T ******** --start=101 --stop=500 > Technique: UNION > Back-end DBMS: MySQL (fingerprinted) > Traceback (most recent call last): > File "/home/xxx/sqlmap/sqlmap-dev/_sqlmap.py", line 72, in main > start() > File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/controller.py", > line 563, in start > action() > File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/action.py", line > 110, in action > conf.dbmsHandler.dumpTable() > File "/home/xxx/sqlmap/sqlmap-dev/plugins/generic/entries.py", line > 439, in dumpTable > conf.dumper.dbTableValues(kb.data.dumpedTable) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/dump.py", line 392, in > dbTableValues > rtable = replication.createTable(table, cols) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 96, > in createTable > return Replication.Table(parent=self, name=tblname, > columns=columns, typeless=typeless) > File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 56, > in __init__ > self.parent.cursor.execute('DROP TABLE IF EXISTS "%s"' % self.name) > OperationalError: database is locked > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > |
From: Miroslav S. <mir...@gm...> - 2012-09-10 20:43:23
|
Hi. Find it fixed now [1]. Bye. Kind regards, Miroslav Stampar [1] https://github.com/sqlmapproject/sqlmap/issues/180 On Mon, Sep 10, 2012 at 10:30 PM, André Silva <and...@gm...> wrote: > Hi, > > After syncing the lastest sqlmap version... > > root@bt:/pentest/database/sqlmap-dev# python2.6 sqlmap.py > Traceback (most recent call last): > File "sqlmap.py", line 15, in <module> > from _sqlmap import main > File "/pentest/database/sqlmap-dev/_sqlmap.py", line 17, in <module> > from lib.controller.controller import start > File "/pentest/database/sqlmap-dev/lib/controller/controller.py", line > 11, in <module> > from lib.controller.action import action > File "/pentest/database/sqlmap-dev/lib/controller/action.py", line 8, in > <module> > from lib.controller.handler import setHandler > File "/pentest/database/sqlmap-dev/lib/controller/handler.py", line 22, > in <module> > from plugins.dbms.mssqlserver import MSSQLServerMap > File > "/pentest/database/sqlmap-dev/plugins/dbms/mssqlserver/__init__.py", line > 11, in <module> > from plugins.dbms.mssqlserver.enumeration import Enumeration > File > "/pentest/database/sqlmap-dev/plugins/dbms/mssqlserver/enumeration.py", > line 29, in <module> > from plugins.generic.enumeration import Enumeration as > GenericEnumeration > File "/pentest/database/sqlmap-dev/plugins/generic/enumeration.py", line > 20, in <module> > from plugins.generic.entries import Entries > File "/pentest/database/sqlmap-dev/plugins/generic/entries.py", line 45, > in <module> > from lib.utils.pivotdumptable import pivotDumpTable > ImportError: No module named pivotdumptable > > > Regards > > 2012/8/31 el draco <el...@gm...> > >> [13:07:45] [CRITICAL] unhandled exception in sqlmap/1.0-dev-33980ad, >> retry your run with the latest development version from the GitHub >> repository. If the exception persists, please send by e-mail to >> 'sql...@li...' or open a new issue at >> 'https://github.com/sqlmapproject/sqlmap/issues/new' with the >> following text and any information required to reproduce the bug. The >> developers will try to reproduce the bug, fix it accordingly and get >> back to you. >> sqlmap version: 1.0-dev-33980ad >> Python version: 2.7.3 >> Operating system: posix >> Command line: ./sqlmap.py -u >> **************************************************** -D >> *************** --dump --replicate -T ******** --start=101 --stop=500 >> Technique: UNION >> Back-end DBMS: MySQL (fingerprinted) >> Traceback (most recent call last): >> File "/home/xxx/sqlmap/sqlmap-dev/_sqlmap.py", line 72, in main >> start() >> File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/controller.py", >> line 563, in start >> action() >> File "/home/xxx/sqlmap/sqlmap-dev/lib/controller/action.py", line >> 110, in action >> conf.dbmsHandler.dumpTable() >> File "/home/xxx/sqlmap/sqlmap-dev/plugins/generic/entries.py", line >> 439, in dumpTable >> conf.dumper.dbTableValues(kb.data.dumpedTable) >> File "/home/xxx/sqlmap/sqlmap-dev/lib/core/dump.py", line 392, in >> dbTableValues >> rtable = replication.createTable(table, cols) >> File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 96, >> in createTable >> return Replication.Table(parent=self, name=tblname, >> columns=columns, typeless=typeless) >> File "/home/xxx/sqlmap/sqlmap-dev/lib/core/replication.py", line 56, >> in __init__ >> self.parent.cursor.execute('DROP TABLE IF EXISTS "%s"' % self.name) >> OperationalError: database is locked >> >> >> ------------------------------------------------------------------------------ >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. Discussions >> will include endpoint security, mobile security and the latest in malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> sqlmap-users mailing list >> sql...@li... >> https://lists.sourceforge.net/lists/listinfo/sqlmap-users >> > > -- Miroslav Stampar http://about.me/stamparm |
From: Happy U. <rob...@gm...> - 2013-03-31 22:28:18
|
[02:27:07] [CRITICAL] unhandled exception in sqlmap/1.0-dev-a371f18, retry your run with the latest development version from the G itHub repository. If the exception persists, please send by e-mail to 'sql...@li...' or open a new issue at 'https://github.com/sqlmapproject/sqlmap/issues/new' with the following text and any information required to reproduce the bug. Th e developers will try to reproduce the bug, fix it accordingly and get back to you. sqlmap version: 1.0-dev-a371f18 Python version: 2.7.3 Operating system: nt Command line: D:\Soft\sqlmap-dev\sqlmap.py -c c ********************************************************************************** ********** ********** ********************************************* --dump --stop 2 -p id --technique=B Technique: BOOLEAN Back-end DBMS: MySQL (fingerprinted) Traceback (most recent call last): File "D:\Soft\sqlmap-dev\sqlmap.py", line 87, in main start() File "D:\Soft\sqlmap-dev\lib\controller\controller.py", line 576, in start action() File "D:\Soft\sqlmap-dev\lib\controller\action.py", line 127, in action conf.dbmsHandler.dumpTable() File "D:\Soft\sqlmap-dev\plugins\generic\entries.py", line 136, in dumpTable _ = agent.preprocessField(tbl, column) File "D:\Soft\sqlmap-dev\lib\core\agent.py", line 479, in preprocessField if conf.db in table: TypeError: coercing to Unicode: need string or buffer, NoneType found |
From: Miroslav S. <mir...@gm...> - 2013-04-01 15:33:11
|
Hi. Thank you for your report and find it fixed now. Kind regards, Miroslav Stampar On Mon, Apr 1, 2013 at 12:29 AM, Happy User <rob...@gm...>wrote: > [02:27:07] [CRITICAL] unhandled exception in sqlmap/1.0-dev-a371f18, > retry your run with the latest development version from the G > itHub repository. If the exception persists, please send by e-mail to > 'sql...@li...' or open a new issue at > 'https://github.com/sqlmapproject/sqlmap/issues/new' with the following > text and any information required to reproduce the bug. Th > e developers will try to reproduce the bug, fix it accordingly and get > back to you. > sqlmap version: 1.0-dev-a371f18 > Python version: 2.7.3 > Operating system: nt > Command line: D:\Soft\sqlmap-dev\sqlmap.py -c c > > ********************************************************************************** > ********** ********** ********************************************* > --dump --stop 2 -p id --technique=B > Technique: BOOLEAN > Back-end DBMS: MySQL (fingerprinted) > Traceback (most recent call last): > File "D:\Soft\sqlmap-dev\sqlmap.py", line 87, in main > start() > File "D:\Soft\sqlmap-dev\lib\controller\controller.py", line 576, in > start > action() > File "D:\Soft\sqlmap-dev\lib\controller\action.py", line 127, in action > conf.dbmsHandler.dumpTable() > File "D:\Soft\sqlmap-dev\plugins\generic\entries.py", line 136, in > dumpTable > _ = agent.preprocessField(tbl, column) > File "D:\Soft\sqlmap-dev\lib\core\agent.py", line 479, in preprocessField > if conf.db in table: > TypeError: coercing to Unicode: need string or buffer, NoneType found > > > ------------------------------------------------------------------------------ > Own the Future-Intel(R) Level Up Game Demo Contest 2013 > Rise to greatness in Intel's independent game demo contest. Compete > for recognition, cash, and the chance to get your game on Steam. > $5K grand prize plus 10 genre and skill prizes. Submit your demo > by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2 > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > -- Miroslav Stampar http://about.me/stamparm |
From: kvasilopoulos <kyp...@at...> - 2013-05-22 10:47:45
Attachments:
signature.asc
|
[02:43:03] [CRITICAL] unhandled exception in sqlmap/1.0-dev-4b2cf07, retry your run with the latest development version from the GitHub repository. If the exception persists, please send by e-mail to 'sql...@li...' or open a new issue at 'https://github.com/sqlmapproject/sqlmap/issues/new' with the following text and any information required to reproduce the bug. The developers will try to reproduce the bug, fix it accordingly and get back to you. sqlmap version: 1.0-dev-4b2cf07 Python version: 2.7.1 Operating system: posix Command line: ./sqlmap.py -u ******************************************* --data="data_replaced" -v 2 --search pass -D ***************************************** -p vulnerable_parameter --level 5 --risk 3 --dbms mssql Technique: ERROR Back-end DBMS: Microsoft SQL Server (fingerprinted) Traceback (most recent call last): File "./sqlmap.py", line 89, in main start() File "/Users/xxx/sqlmap-dev1/lib/controller/controller.py", line 576, in start action() File "/Users/xxx/sqlmap-dev1/lib/controller/action.py", line 133, in action conf.dbmsHandler.search() File "/Users/xxx/sqlmap-dev1/plugins/generic/search.py", line 598, in search self.searchDb() File "/Users/xxx/sqlmap-dev1/plugins/generic/search.py", line 88, in searchDb query = query % (dbQuery + exclDbsQuery) TypeError: not all arguments converted during string formatting Regards Kyprianos Vasilopoulos |
From: Miroslav S. <mir...@gm...> - 2013-05-22 19:32:49
|
Hi. Thank you for your report. It should be (hopefully) fixed now. Kind regards, Miroslav Stampar On May 22, 2013 12:48 PM, "kvasilopoulos" <kyp...@at...> wrote: > [02:43:03] [CRITICAL] unhandled exception in sqlmap/1.0-dev-4b2cf07, retry > your run with the latest development version from the GitHub repository. If > the exception persists, please send by e-mail to ' > sql...@li...' or open a new issue at ' > https://github.com/sqlmapproject/sqlmap/issues/new' with the following > text and any information required to reproduce the bug. The developers will > try to reproduce the bug, fix it accordingly and get back to you. > sqlmap version: 1.0-dev-4b2cf07 > Python version: 2.7.1 > Operating system: posix > Command line: ./sqlmap.py -u ******************************************* > --data="data_replaced" -v 2 --search pass -D > ***************************************** -p vulnerable_parameter --level 5 > --risk 3 --dbms mssql > Technique: ERROR > Back-end DBMS: Microsoft SQL Server (fingerprinted) > Traceback (most recent call last): > File "./sqlmap.py", line 89, in main > start() > File "/Users/xxx/sqlmap-dev1/lib/controller/controller.py", line 576, in > start > action() > File "/Users/xxx/sqlmap-dev1/lib/controller/action.py", line 133, in > action > conf.dbmsHandler.search() > File "/Users/xxx/sqlmap-dev1/plugins/generic/search.py", line 598, in > search > self.searchDb() > File "/Users/xxx/sqlmap-dev1/plugins/generic/search.py", line 88, in > searchDb > query = query % (dbQuery + exclDbsQuery) > TypeError: not all arguments converted during string formatting > > > Regards > Kyprianos Vasilopoulos > > > > > > > > > ------------------------------------------------------------------------------ > Try New Relic Now & We'll Send You this Cool Shirt > New Relic is the only SaaS-based application performance monitoring service > that delivers powerful full stack analytics. Optimize and monitor your > browser, app, & servers with just a few lines of code. Try New Relic > and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > |
From: Renato B. <ren...@gm...> - 2013-06-02 13:56:17
|
qlmap version: 1.0-dev Python version: 2.7.4 Operating system: posix Command line: /pentest/sqlmap/sqlmap.py --url=******************************************************** --proxy=********************* --random-agent --batch --threads=10 -o -f Technique: None Back-end DBMS: None (identified) Traceback (most recent call last): File "/pentest/sqlmap/sqlmap.py", line 95, in main start() File "/pentest/sqlmap/lib/controller/controller.py", line 367, in start checkNullConnection() File "/pentest/sqlmap/lib/controller/checks.py", line 1128, in checkNullConnection page, headers, _ = Request.getPage(method=HTTPMETHOD.HEAD) File "/pentest/sqlmap/lib/request/connect.py", line 372, in getPage conn = urllib2.urlopen(req) File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen return _opener.open(url, data, timeout) File "/usr/lib/python2.7/urllib2.py", line 404, in open response = self._open(req, data) File "/usr/lib/python2.7/urllib2.py", line 422, in _open '_open', req) File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain result = func(*args) File "/usr/lib/python2.7/urllib2.py", line 1214, in http_open return self.do_open(httplib.HTTPConnection, req) File "/usr/lib/python2.7/urllib2.py", line 1181, in do_open h.request(req.get_method(), req.get_selector(), req.data, headers) File "/usr/lib/python2.7/httplib.py", line 973, in request self._send_request(method, url, body, headers) File "/usr/lib/python2.7/httplib.py", line 1007, in _send_request self.endheaders(body) File "/usr/lib/python2.7/httplib.py", line 969, in endheaders self._send_output(message_body) File "/usr/lib/python2.7/httplib.py", line 829, in _send_output self.send(msg) File "/usr/lib/python2.7/httplib.py", line 805, in send self.sock.sendall(data) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) UnicodeEncodeError: 'ascii' codec can't encode character u'\u200e' in position 68: ordinal not in range(128) |
From: Miroslav S. <mir...@gm...> - 2013-06-03 22:08:05
|
Hi Renato. Thank you for your report and find it fixed with the latest revision. Kind regards, Miroslav Stampar On Sun, Jun 2, 2013 at 3:56 PM, Renato Bermudes <ren...@gm...>wrote: > qlmap version: 1.0-dev > Python version: 2.7.4 > Operating system: posix > Command line: /pentest/sqlmap/sqlmap.py > --url=******************************************************** > --proxy=********************* --random-agent --batch --threads=10 -o -f > Technique: None > Back-end DBMS: None (identified) > Traceback (most recent call last): > File "/pentest/sqlmap/sqlmap.py", line 95, in main > start() > File "/pentest/sqlmap/lib/controller/controller.py", line 367, in start > checkNullConnection() > File "/pentest/sqlmap/lib/controller/checks.py", line 1128, in > checkNullConnection > page, headers, _ = Request.getPage(method=HTTPMETHOD.HEAD) > File "/pentest/sqlmap/lib/request/connect.py", line 372, in getPage > conn = urllib2.urlopen(req) > File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen > return _opener.open(url, data, timeout) > File "/usr/lib/python2.7/urllib2.py", line 404, in open > response = self._open(req, data) > File "/usr/lib/python2.7/urllib2.py", line 422, in _open > '_open', req) > File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain > result = func(*args) > File "/usr/lib/python2.7/urllib2.py", line 1214, in http_open > return self.do_open(httplib.HTTPConnection, req) > File "/usr/lib/python2.7/urllib2.py", line 1181, in do_open > h.request(req.get_method(), req.get_selector(), req.data, headers) > File "/usr/lib/python2.7/httplib.py", line 973, in request > self._send_request(method, url, body, headers) > File "/usr/lib/python2.7/httplib.py", line 1007, in _send_request > self.endheaders(body) > File "/usr/lib/python2.7/httplib.py", line 969, in endheaders > self._send_output(message_body) > File "/usr/lib/python2.7/httplib.py", line 829, in _send_output > self.send(msg) > File "/usr/lib/python2.7/httplib.py", line 805, in send > self.sock.sendall(data) > File "/usr/lib/python2.7/socket.py", line 224, in meth > return getattr(self._sock,name)(*args) > UnicodeEncodeError: 'ascii' codec can't encode character u'\u200e' in > position 68: ordinal not in range(128) > > > > ------------------------------------------------------------------------------ > Get 100% visibility into Java/.NET code with AppDynamics Lite > It's a free troubleshooting tool designed for production > Get down to code-level detail for bottlenecks, with <2% overhead. > Download for free and get started troubleshooting in minutes. > http://p.sf.net/sfu/appdyn_d2d_ap2 > _______________________________________________ > sqlmap-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlmap-users > -- Miroslav Stampar http://about.me/stamparm |