mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
minor update (will do "schema update" for sybase some other time; that COUNT(*) blew my mind)
This commit is contained in:
@@ -1179,9 +1179,6 @@ class Enumeration:
|
|||||||
if blind:
|
if blind:
|
||||||
value = inject.getValue(query, inband=False, error=False)
|
value = inject.getValue(query, inband=False, error=False)
|
||||||
else:
|
else:
|
||||||
print 1111
|
|
||||||
import pdb
|
|
||||||
pdb.set_trace()
|
|
||||||
value = inject.getValue(query, blind=False)
|
value = inject.getValue(query, blind=False)
|
||||||
|
|
||||||
if column == colList[0]:
|
if column == colList[0]:
|
||||||
@@ -1292,7 +1289,7 @@ class Enumeration:
|
|||||||
elif Backend.getIdentifiedDbms() == DBMS.SQLITE:
|
elif Backend.getIdentifiedDbms() == DBMS.SQLITE:
|
||||||
query = rootQuery.inband.query % (colString, conf.tbl)
|
query = rootQuery.inband.query % (colString, conf.tbl)
|
||||||
elif Backend.getIdentifiedDbms() == DBMS.SYBASE:
|
elif Backend.getIdentifiedDbms() == DBMS.SYBASE:
|
||||||
table = "%s.%s" % (conf.db, conf.tbl)
|
table = "%s..%s" % (conf.db, conf.tbl)
|
||||||
entries, _ = self.__pivotDumpTable(table, colList, blind=False)
|
entries, _ = self.__pivotDumpTable(table, colList, blind=False)
|
||||||
entries = zip(*[entries[colName] for colName in colList])
|
entries = zip(*[entries[colName] for colName in colList])
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user