MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / isVersionWithin

Method isVersionWithin

lib/core/common.py:587–595  ·  view source on GitHub ↗
(versionList)

Source from the content-addressed store, hash-verified

585
586 @staticmethod
587 def isVersionWithin(versionList):
588 if Backend.getVersionList() is None:
589 return False
590
591 for _ in Backend.getVersionList():
592 if _ != UNKNOWN_DBMS_VERSION and _ in versionList:
593 return True
594
595 return False
596
597 @staticmethod
598 def isVersionGreaterOrEqualThan(version):

Callers 8

_xpCmdshellCreateMethod · 0.80
_xpCmdshellConfigureMethod · 0.80
_selectPayloadMethod · 0.80
osSmbMethod · 0.80
osBofMethod · 0.80
getUsersMethod · 0.80
getPasswordHashesMethod · 0.80
_sandBoxCheckMethod · 0.80

Calls 1

getVersionListMethod · 0.80

Tested by

no test coverage detected