mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 19:55:47 +03:00
Fix for that Firebird column data types issue (tec=EU)
This commit is contained in:
parent
99bc4a9005
commit
f9d330ec98
|
@ -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 New Issue
Block a user