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

Skip to content

Commit c1ae1b4

Browse files
committed
Update regarding #3813
1 parent 84d0b34 commit c1ae1b4

2 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.7.17"
21+
VERSION = "1.3.7.18"
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/request/rangehandler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ def http_error_206(self, req, fp, code, msg, hdrs):
2424

2525
def http_error_416(self, req, fp, code, msg, hdrs):
2626
# HTTP's Range Not Satisfiable error
27-
errMsg = "Invalid range"
27+
errMsg = "there was a problem while connecting "
28+
errMsg += "target ('406 - Range Not Satisfiable')"
2829
raise SqlmapConnectionException(errMsg)

0 commit comments

Comments
 (0)