mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Fixing some Python3.12 naggings
This commit is contained in:
parent
162bafa77d
commit
8430d6ba96
|
@ -880,7 +880,7 @@ def getManualDirectories():
|
||||||
def getAutoDirectories():
|
def getAutoDirectories():
|
||||||
"""
|
"""
|
||||||
>>> pushValue(kb.absFilePaths)
|
>>> pushValue(kb.absFilePaths)
|
||||||
>>> kb.absFilePaths = ["C:\\inetpub\\wwwroot\\index.asp", "/var/www/html"]
|
>>> kb.absFilePaths = [r"C:\\inetpub\\wwwroot\\index.asp", "/var/www/html"]
|
||||||
>>> getAutoDirectories()
|
>>> getAutoDirectories()
|
||||||
['C:/inetpub/wwwroot', '/var/www/html']
|
['C:/inetpub/wwwroot', '/var/www/html']
|
||||||
>>> kb.absFilePaths = popValue()
|
>>> kb.absFilePaths = popValue()
|
||||||
|
@ -2308,7 +2308,7 @@ def ntToPosixSlashes(filepath):
|
||||||
Replaces all occurrences of NT backslashes in provided
|
Replaces all occurrences of NT backslashes in provided
|
||||||
filepath with Posix slashes
|
filepath with Posix slashes
|
||||||
|
|
||||||
>>> ntToPosixSlashes('C:\\Windows')
|
>>> ntToPosixSlashes(r'C:\\Windows')
|
||||||
'C:/Windows'
|
'C:/Windows'
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ from thirdparty import six
|
||||||
from thirdparty.six import unichr as _unichr
|
from thirdparty.six import unichr as _unichr
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.8.1.5"
|
VERSION = "1.8.1.6"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user