mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-15 04:42:22 +01:00
Minor fix
This commit is contained in:
parent
5c21395fe2
commit
959225af55
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ class Databases:
|
|||
colType = inject.getValue(query, inband=False, error=False)
|
||||
|
||||
if Backend.isDbms(DBMS.FIREBIRD):
|
||||
colType = firebirdTypes.get(colType, colType)
|
||||
colType = FIREBIRD_TYPES.get(colType, colType)
|
||||
|
||||
column = safeSQLIdentificatorNaming(column)
|
||||
columns[column] = colType
|
||||
|
|
|
|||
Loading…
Reference in a new issue