mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Proper patch related to the dde1178100
This commit is contained in:
parent
b9efdb2999
commit
8d19c3bd46
4 changed files with 8 additions and 5 deletions
|
|
@ -2909,7 +2909,7 @@ def isDBMSVersionAtLeast(version):
|
|||
elif value.startswith(">"):
|
||||
value = float(value.replace("<", "")) - 0.01
|
||||
|
||||
retVal = distutils.version.LooseVersion(getUnicode(value)) < distutils.version.LooseVersion(getUnicode(version))
|
||||
retVal = distutils.version.LooseVersion(getUnicode(value)) >= distutils.version.LooseVersion(getUnicode(version))
|
||||
|
||||
return retVal
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue