mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
More fixes for --common-columns to work against MSSQL too
This commit is contained in:
parent
917b2b0d6b
commit
aa0fb276ba
2 changed files with 2 additions and 2 deletions
|
|
@ -250,7 +250,7 @@ def resumeConfKb(expression, url, value):
|
|||
kb.brute.tables.append((db, table))
|
||||
|
||||
elif expression == "COLUMN_EXISTS" and url == conf.url:
|
||||
table, column = unSafeFormatString(value[:-1]).split('..')
|
||||
table, column = unSafeFormatString(value[:-1]).split('|')
|
||||
colName, colType = column.split(' ')
|
||||
|
||||
if '.' in table:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue