Skip to content

Commit ca2f094

Browse files
committed
Doing a dirty patch for #5050
1 parent 3aa6692 commit ca2f094

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/core/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5394,6 +5394,7 @@ def _parseBurpLog(content):
53945394
# headers and consider the following lines as
53955395
# POSTed data
53965396
if key.upper() == HTTP_HEADER.CONTENT_LENGTH.upper():
5397+
data = ""
53975398
params = True
53985399

53995400
# Avoid proxy and connection type related headers

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.7.2.20"
23+
VERSION = "1.7.2.21"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)