mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixed custom MSSQL "limited" query support also for Partial UNION query technique
This commit is contained in:
parent
9c42a883be
commit
2d87a3349f
3 changed files with 7 additions and 4 deletions
|
|
@ -216,6 +216,9 @@ def unionUse(expression, direct=False, unescape=True, resetCounter=False):
|
|||
untilLimitChar = expression.index(queries[kb.dbms].limitstring)
|
||||
expression = expression[:untilLimitChar]
|
||||
|
||||
elif kb.dbms == "Microsoft SQL Server":
|
||||
stopLimit += startLimit
|
||||
|
||||
if not stopLimit or stopLimit <= 1:
|
||||
if kb.dbms == "Oracle" and expression.endswith("FROM DUAL"):
|
||||
test = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue