mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-03-18 11:02:07 +01:00
one more related commit
This commit is contained in:
parent
265e7ca272
commit
771020abd6
1 changed files with 2 additions and 1 deletions
|
|
@ -677,7 +677,8 @@ class Agent:
|
|||
limitedQuery = "%s WHERE %s " % (limitedQuery, field if not uniqueField else uniqueField)
|
||||
|
||||
limitedQuery += "NOT IN (%s" % (limitStr % num)
|
||||
limitedQuery += "%s %s)" % (field if not uniqueField else uniqueField, fromFrom)
|
||||
limitedQuery += "%s %s%s)" % (field if not uniqueField else uniqueField, fromFrom, (" ORDER BY %s" % uniqueField) if uniqueField else "")
|
||||
|
||||
|
||||
if orderBy:
|
||||
limitedQuery += orderBy
|
||||
|
|
|
|||
Loading…
Reference in a new issue