Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a719e commit 39e33beCopy full SHA for 39e33be
1 file changed
plugins/generic/enumeration.py
@@ -1619,6 +1619,8 @@ def dumpTable(self, foundData=None):
1619
query = rootQuery.inband.query % (colString, conf.db, tbl)
1620
1621
if not entries and query:
1622
+ if Backend.getIdentifiedDbms() in (DBMS.MYSQL,):
1623
+ query = "%s ORDER BY %s" % (query, sorted(colList, key=len)[0])
1624
entries = inject.getValue(query, blind=False, dump=True)
1625
1626
if isNoneValue(entries):
0 commit comments