mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-05-26 00:33:14 +03:00
first commit toward v1.0 (it's smarter to start testing for pivot point from shorter column names as they tend to be some kind of identifiers)
This commit is contained in:
parent
30377621b8
commit
e20848c711
|
@ -1137,6 +1137,8 @@ class Enumeration:
|
||||||
else:
|
else:
|
||||||
count = inject.getValue(query, blind=False)
|
count = inject.getValue(query, blind=False)
|
||||||
|
|
||||||
|
colList = sorted(colList, key=lambda x: len(x))
|
||||||
|
|
||||||
for column in colList:
|
for column in colList:
|
||||||
infoMsg = "fetching number of distinct "
|
infoMsg = "fetching number of distinct "
|
||||||
infoMsg += "values for column '%s'" % column
|
infoMsg += "values for column '%s'" % column
|
||||||
|
|
Loading…
Reference in New Issue
Block a user