mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
Adjusted --columns with -C also for Microsoft SQL Server
This commit is contained in:
parent
ef1180c3c2
commit
6c1b31d93c
|
@ -805,6 +805,7 @@ class Enumeration:
|
||||||
conf.db = self.getCurrentDb()
|
conf.db = self.getCurrentDb()
|
||||||
|
|
||||||
rootQuery = queries[kb.dbms].columns
|
rootQuery = queries[kb.dbms].columns
|
||||||
|
condition = rootQuery["blind"]["condition"]
|
||||||
|
|
||||||
infoMsg = "fetching columns "
|
infoMsg = "fetching columns "
|
||||||
|
|
||||||
|
@ -812,7 +813,6 @@ class Enumeration:
|
||||||
if kb.dbms == "Oracle":
|
if kb.dbms == "Oracle":
|
||||||
conf.col = conf.col.upper()
|
conf.col = conf.col.upper()
|
||||||
colList = conf.col.split(",")
|
colList = conf.col.split(",")
|
||||||
condition = rootQuery["blind"]["condition"]
|
|
||||||
condQuery = " AND (" + " OR ".join("%s LIKE '%s'" % (condition, "%" + col + "%") for col in colList) + ")"
|
condQuery = " AND (" + " OR ".join("%s LIKE '%s'" % (condition, "%" + col + "%") for col in colList) + ")"
|
||||||
infoMsg += "like '%s' " % ", ".join(col for col in colList)
|
infoMsg += "like '%s' " % ", ".join(col for col in colList)
|
||||||
else:
|
else:
|
||||||
|
@ -825,16 +825,17 @@ class Enumeration:
|
||||||
if kb.unionPosition:
|
if kb.unionPosition:
|
||||||
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
||||||
query = rootQuery["inband"]["query"] % (conf.tbl, conf.db)
|
query = rootQuery["inband"]["query"] % (conf.tbl, conf.db)
|
||||||
|
query += condQuery
|
||||||
elif kb.dbms == "Oracle":
|
elif kb.dbms == "Oracle":
|
||||||
query = rootQuery["inband"]["query"] % conf.tbl.upper()
|
query = rootQuery["inband"]["query"] % conf.tbl.upper()
|
||||||
|
query += condQuery
|
||||||
elif kb.dbms == "Microsoft SQL Server":
|
elif kb.dbms == "Microsoft SQL Server":
|
||||||
# TODO: adjust with condQuery
|
|
||||||
query = rootQuery["inband"]["query"] % (conf.db, conf.db,
|
query = rootQuery["inband"]["query"] % (conf.db, conf.db,
|
||||||
conf.db, conf.db,
|
conf.db, conf.db,
|
||||||
conf.db, conf.db,
|
conf.db, conf.db,
|
||||||
conf.db, conf.tbl)
|
conf.db, conf.tbl)
|
||||||
|
query += condQuery.replace("[DB]", conf.db)
|
||||||
|
|
||||||
query += condQuery
|
|
||||||
value = inject.getValue(query, blind=False)
|
value = inject.getValue(query, blind=False)
|
||||||
|
|
||||||
if value:
|
if value:
|
||||||
|
@ -855,13 +856,14 @@ class Enumeration:
|
||||||
|
|
||||||
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
||||||
query = rootQuery["blind"]["count"] % (conf.tbl, conf.db)
|
query = rootQuery["blind"]["count"] % (conf.tbl, conf.db)
|
||||||
|
query += condQuery
|
||||||
elif kb.dbms == "Oracle":
|
elif kb.dbms == "Oracle":
|
||||||
query = rootQuery["blind"]["count"] % conf.tbl.upper()
|
query = rootQuery["blind"]["count"] % conf.tbl.upper()
|
||||||
elif kb.dbms == "Microsoft SQL Server":
|
|
||||||
# TODO: adjust with condQuery
|
|
||||||
query = rootQuery["blind"]["count"] % (conf.db, conf.db, conf.tbl)
|
|
||||||
|
|
||||||
query += condQuery
|
query += condQuery
|
||||||
|
elif kb.dbms == "Microsoft SQL Server":
|
||||||
|
query = rootQuery["blind"]["count"] % (conf.db, conf.db, conf.tbl)
|
||||||
|
query += condQuery.replace("[DB]", conf.db)
|
||||||
|
|
||||||
count = inject.getValue(query, inband=False, expected="int", charsetType=2)
|
count = inject.getValue(query, inband=False, expected="int", charsetType=2)
|
||||||
|
|
||||||
if not count.isdigit() or not len(count) or count == "0":
|
if not count.isdigit() or not len(count) or count == "0":
|
||||||
|
@ -873,7 +875,8 @@ class Enumeration:
|
||||||
table = {}
|
table = {}
|
||||||
columns = {}
|
columns = {}
|
||||||
|
|
||||||
if kb.dbms == "Microsoft SQL Server":
|
# TODO: check on Oracle
|
||||||
|
if kb.dbms == "Oracle":
|
||||||
plusOne = True
|
plusOne = True
|
||||||
else:
|
else:
|
||||||
plusOne = False
|
plusOne = False
|
||||||
|
@ -882,15 +885,21 @@ class Enumeration:
|
||||||
for index in indexRange:
|
for index in indexRange:
|
||||||
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
if kb.dbms in ( "MySQL", "PostgreSQL" ):
|
||||||
query = rootQuery["blind"]["query"] % (conf.tbl, conf.db)
|
query = rootQuery["blind"]["query"] % (conf.tbl, conf.db)
|
||||||
|
query += condQuery
|
||||||
|
field = None
|
||||||
elif kb.dbms == "Oracle":
|
elif kb.dbms == "Oracle":
|
||||||
query = rootQuery["blind"]["query"] % (conf.tbl.upper())
|
query = rootQuery["blind"]["query"] % (conf.tbl.upper())
|
||||||
elif kb.dbms == "Microsoft SQL Server":
|
|
||||||
# TODO: adjust with condQuery
|
|
||||||
query = rootQuery["blind"]["query"] % (index, conf.db,
|
|
||||||
conf.db, conf.tbl)
|
|
||||||
|
|
||||||
query += condQuery
|
query += condQuery
|
||||||
query = agent.limitQuery(index, query)
|
field = None
|
||||||
|
elif kb.dbms == "Microsoft SQL Server":
|
||||||
|
query = rootQuery["blind"]["query"] % (conf.db, conf.db,
|
||||||
|
conf.db, conf.db,
|
||||||
|
conf.db, conf.db,
|
||||||
|
conf.tbl)
|
||||||
|
query += condQuery.replace("[DB]", conf.db)
|
||||||
|
field = condition.replace("[DB]", conf.db)
|
||||||
|
|
||||||
|
query = agent.limitQuery(index, query, field)
|
||||||
column = inject.getValue(query, inband=False)
|
column = inject.getValue(query, inband=False)
|
||||||
|
|
||||||
if not onlyColNames:
|
if not onlyColNames:
|
||||||
|
|
|
@ -223,8 +223,8 @@
|
||||||
<blind query="SELECT TOP 1 name FROM %s..sysobjects WHERE xtype IN ('u', 'v') AND name NOT IN (SELECT TOP %d name FROM %s..sysobjects WHERE xtype IN ('u', 'v') ORDER BY name ASC) ORDER BY name ASC" count="SELECT LTRIM(STR(COUNT(name))) FROM %s..sysobjects WHERE xtype IN ('u', 'v')"/>
|
<blind query="SELECT TOP 1 name FROM %s..sysobjects WHERE xtype IN ('u', 'v') AND name NOT IN (SELECT TOP %d name FROM %s..sysobjects WHERE xtype IN ('u', 'v') ORDER BY name ASC) ORDER BY name ASC" count="SELECT LTRIM(STR(COUNT(name))) FROM %s..sysobjects WHERE xtype IN ('u', 'v')"/>
|
||||||
</tables>
|
</tables>
|
||||||
<columns>
|
<columns>
|
||||||
<inband query="SELECT %s..syscolumns.name, TYPE_NAME(%s..syscolumns.xtype) FROM %s..syscolumns, %s..sysobjects WHERE %s..syscolumns.id=%s..sysobjects.id AND %s..sysobjects.name='%s'"/>
|
<inband query="SELECT %s..syscolumns.name, TYPE_NAME(%s..syscolumns.xtype) FROM %s..syscolumns, %s..sysobjects WHERE %s..syscolumns.id=%s..sysobjects.id AND %s..sysobjects.name='%s'" condition="[DB]..syscolumns.name"/>
|
||||||
<blind query="SELECT TOP 1 name FROM (SELECT TOP %s name FROM %s..syscolumns WHERE id=(SELECT id FROM %s..sysobjects WHERE name='%s') ORDER BY name ASC) CTABLE ORDER BY name DESC" query2="SELECT TYPE_NAME(%s..syscolumns.xtype) FROM %s..syscolumns, %s..sysobjects WHERE %s..syscolumns.name='%s' AND %s..syscolumns.id=%s..sysobjects.id AND %s..sysobjects.name='%s'" count="SELECT LTRIM(STR(COUNT(name))) FROM %s..syscolumns WHERE id=(SELECT id FROM %s..sysobjects WHERE name='%s')"/>
|
<blind query="SELECT %s..syscolumns.name FROM %s..syscolumns, %s..sysobjects WHERE %s..syscolumns.id=%s..sysobjects.id AND %s..sysobjects.name='%s'" query2="SELECT TYPE_NAME(%s..syscolumns.xtype) FROM %s..syscolumns, %s..sysobjects WHERE %s..syscolumns.name='%s' AND %s..syscolumns.id=%s..sysobjects.id AND %s..sysobjects.name='%s'" count="SELECT LTRIM(STR(COUNT(name))) FROM %s..syscolumns WHERE id=(SELECT id FROM %s..sysobjects WHERE name='%s')" condition="[DB]..syscolumns.name"/>
|
||||||
</columns>
|
</columns>
|
||||||
<dump_column/>
|
<dump_column/>
|
||||||
<dump_table>
|
<dump_table>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user