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

Skip to content

Commit 6a87dd9

Browse files
committed
Minor update (just for consistency with the rest of code)
1 parent 979e108 commit 6a87dd9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/core/option.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ def _parseBurpLog(content):
292292
# Cookie and Host headers
293293
if key.upper() == HTTPHEADER.COOKIE.upper():
294294
cookie = value
295-
elif key.upper() == HTTPHEADER.HOST.upper():
295+
elif False:
296+
#elif key.upper() == HTTPHEADER.HOST.upper():
296297
if '://' in value:
297298
scheme, value = value.split('://')[:2]
298299
splitValue = value.split(":")

0 commit comments

Comments
 (0)