Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e565fa1

Browse files
committed
Dirty fix for #3766
1 parent 9d055c7 commit e565fa1

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from 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"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/hash.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
from lib.core.enums import MKSTEMP_PREFIX
7979
from lib.core.exception import SqlmapDataException
8080
from lib.core.exception import SqlmapUserQuitException
81+
from lib.core.patch import resolveCrossReferences
8182
from lib.core.settings import COMMON_PASSWORD_SUFFIXES
8283
from lib.core.settings import COMMON_USER_COLUMNS
8384
from lib.core.settings import DEV_EMAIL_ADDRESS

thirdparty/ansistrm/ansistrm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
ctypes.windll.kernel32.SetConsoleTextAttribute.restype = ctypes.wintypes.BOOL
2222

2323
def stdoutEncode(data): # Cross-referenced function
24-
raise NotImplementedError
24+
return data
2525

2626
class ColorizingStreamHandler(logging.StreamHandler):
2727
# color names to indices

0 commit comments

Comments
 (0)