mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
minor update (will do "schema update" for sybase some other time; that COUNT(*) blew my mind)
This commit is contained in:
parent
0f7bce5c66
commit
02379c01a2
|
@ -1179,9 +1179,6 @@ class Enumeration:
|
|||
if blind:
|
||||
value = inject.getValue(query, inband=False, error=False)
|
||||
else:
|
||||
print 1111
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
value = inject.getValue(query, blind=False)
|
||||
|
||||
if column == colList[0]:
|
||||
|
@ -1292,7 +1289,7 @@ class Enumeration:
|
|||
elif Backend.getIdentifiedDbms() == DBMS.SQLITE:
|
||||
query = rootQuery.inband.query % (colString, conf.tbl)
|
||||
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 = zip(*[entries[colName] for colName in colList])
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user