mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
upgrade/fixes for direct DBMS access
This commit is contained in:
@@ -897,7 +897,7 @@ class Enumeration:
|
||||
value = map(lambda x: (dbs[0], x), value)
|
||||
|
||||
for db, table in filterPairValues(value):
|
||||
db = safeSQLIdentificatorNaming(unArrayizeValue(db))
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
table = safeSQLIdentificatorNaming(table, True)
|
||||
|
||||
if not kb.data.cachedTables.has_key(db):
|
||||
@@ -1654,6 +1654,10 @@ class Enumeration:
|
||||
else:
|
||||
colEntry = entry[index] if index < len(entry) else u''
|
||||
|
||||
if colEntry is None:
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
|
||||
colEntryLen = len(getUnicode(colEntry))
|
||||
maxLen = max(colLen, colEntryLen)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user