mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
update (xml fix and refactoring)
This commit is contained in:
parent
a7a53af924
commit
f8850e3f41
|
@ -1147,7 +1147,7 @@ class Enumeration:
|
||||||
lengths = {}
|
lengths = {}
|
||||||
entries = {}
|
entries = {}
|
||||||
|
|
||||||
if kb.dbms == "Oracle":
|
if kb.dbms in ("Oracle", "Microsoft SQL Server", "Sybase"):
|
||||||
plusOne = True
|
plusOne = True
|
||||||
else:
|
else:
|
||||||
plusOne = False
|
plusOne = False
|
||||||
|
@ -1169,7 +1169,7 @@ class Enumeration:
|
||||||
conf.tbl.upper(),
|
conf.tbl.upper(),
|
||||||
index)
|
index)
|
||||||
elif kb.dbms in ("Microsoft SQL Server", "Sybase"):
|
elif kb.dbms in ("Microsoft SQL Server", "Sybase"):
|
||||||
query = rootQuery.blind.query % (column, index + 1, conf.db,
|
query = rootQuery.blind.query % (column, index, conf.db,
|
||||||
conf.tbl, colList[0],
|
conf.tbl, colList[0],
|
||||||
colList[0], colList[0])
|
colList[0], colList[0])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user