mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for that Firebird column data types issue (tec=EU)
This commit is contained in:
parent
99bc4a9005
commit
f9d330ec98
1 changed files with 3 additions and 0 deletions
|
|
@ -551,6 +551,9 @@ class Databases:
|
|||
if len(columnData) == 1:
|
||||
columns[name] = None
|
||||
else:
|
||||
if Backend.isDbms(DBMS.FIREBIRD):
|
||||
columnData[1] = FIREBIRD_TYPES.get(columnData[1], columnData[1])
|
||||
|
||||
columns[name] = columnData[1]
|
||||
|
||||
if conf.db in kb.data.cachedColumns:
|
||||
|
|
|
|||
Loading…
Reference in a new issue