mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
fix for a bug reported by seyi.akin@gmail.com
This commit is contained in:
parent
8978fded03
commit
60ecf95383
3 changed files with 5 additions and 2 deletions
|
|
@ -1198,7 +1198,7 @@ class Enumeration:
|
|||
colType = inject.getValue(query, inband=False, error=False)
|
||||
|
||||
if Backend.isDbms(DBMS.FIREBIRD):
|
||||
colType = firebirdTypes[colType] if colType in firebirdTypes else colType
|
||||
colType = firebirdTypes.get(colType, colType)
|
||||
|
||||
column = safeSQLIdentificatorNaming(column)
|
||||
columns[column] = colType
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue