mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-02 20:54:13 +03:00
Patch for an Issue #1069
This commit is contained in:
parent
02d20ccd13
commit
e2edebd406
|
@ -772,6 +772,9 @@ class Databases:
|
|||
return kb.data.cachedColumns
|
||||
|
||||
def _tableGetCount(self, db, table):
|
||||
if not db or not table:
|
||||
return None
|
||||
|
||||
if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.DB2):
|
||||
db = db.upper()
|
||||
table = table.upper()
|
||||
|
|
Loading…
Reference in New Issue
Block a user