Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/plugins/dbms/informix/enumeration.py
2992 views
1
#!/usr/bin/env python
2
3
"""
4
Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)
5
See the file 'LICENSE' for copying permission
6
"""
7
8
from lib.core.data import logger
9
from plugins.generic.enumeration import Enumeration as GenericEnumeration
10
11
class Enumeration(GenericEnumeration):
12
def searchDb(self):
13
warnMsg = "on Informix searching of databases is not implemented"
14
logger.warning(warnMsg)
15
16
return []
17
18
def searchTable(self):
19
warnMsg = "on Informix searching of tables is not implemented"
20
logger.warning(warnMsg)
21
22
return []
23
24
def searchColumn(self):
25
warnMsg = "on Informix searching of columns is not implemented"
26
logger.warning(warnMsg)
27
28
return []
29
30
def search(self):
31
warnMsg = "on Informix search option is not available"
32
logger.warning(warnMsg)
33
34
def getStatements(self):
35
warnMsg = "on Informix it is not possible to enumerate the SQL statements"
36
logger.warning(warnMsg)
37
38
return []
39
40