Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/plugins/dbms/virtuoso/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 getPasswordHashes(self):
13
warnMsg = "on Virtuoso it is not possible to enumerate the user password hashes"
14
logger.warning(warnMsg)
15
16
return {}
17
18
def getPrivileges(self, *args, **kwargs):
19
warnMsg = "on Virtuoso it is not possible to enumerate the user privileges"
20
logger.warning(warnMsg)
21
22
return {}
23
24
def getRoles(self, *args, **kwargs):
25
warnMsg = "on Virtuoso it is not possible to enumerate the user roles"
26
logger.warning(warnMsg)
27
28
return {}
29
30
def searchDb(self):
31
warnMsg = "on Virtuoso it is not possible to search databases"
32
logger.warning(warnMsg)
33
34
return []
35
36
def searchTable(self):
37
warnMsg = "on Virtuoso it is not possible to search tables"
38
logger.warning(warnMsg)
39
40
return []
41
42
def searchColumn(self):
43
warnMsg = "on Virtuoso it is not possible to search columns"
44
logger.warning(warnMsg)
45
46
return []
47
48
def search(self):
49
warnMsg = "on Virtuoso search option is not available"
50
logger.warning(warnMsg)
51
52
def getStatements(self):
53
warnMsg = "on Virtuoso it is not possible to enumerate the SQL statements"
54
logger.warning(warnMsg)
55
56
return []
57
58