File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.3.6.48 "
21+ VERSION = "1.3.6.49 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 7878from lib .core .enums import MKSTEMP_PREFIX
7979from lib .core .exception import SqlmapDataException
8080from lib .core .exception import SqlmapUserQuitException
81+ from lib .core .patch import resolveCrossReferences
8182from lib .core .settings import COMMON_PASSWORD_SUFFIXES
8283from lib .core .settings import COMMON_USER_COLUMNS
8384from lib .core .settings import DEV_EMAIL_ADDRESS
Original file line number Diff line number Diff line change 2121 ctypes .windll .kernel32 .SetConsoleTextAttribute .restype = ctypes .wintypes .BOOL
2222
2323def stdoutEncode (data ): # Cross-referenced function
24- raise NotImplementedError
24+ return data
2525
2626class ColorizingStreamHandler (logging .StreamHandler ):
2727 # color names to indices
You can’t perform that action at this time.
0 commit comments