mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Minor fix
This commit is contained in:
@@ -640,7 +640,7 @@ class Databases:
|
|||||||
colType = inject.getValue(query, inband=False, error=False)
|
colType = inject.getValue(query, inband=False, error=False)
|
||||||
|
|
||||||
if Backend.isDbms(DBMS.FIREBIRD):
|
if Backend.isDbms(DBMS.FIREBIRD):
|
||||||
colType = firebirdTypes.get(colType, colType)
|
colType = FIREBIRD_TYPES.get(colType, colType)
|
||||||
|
|
||||||
column = safeSQLIdentificatorNaming(column)
|
column = safeSQLIdentificatorNaming(column)
|
||||||
columns[column] = colType
|
columns[column] = colType
|
||||||
|
|||||||
Reference in New Issue
Block a user