2019-03-21 16:00:09 +03:00
|
|
|
#!/usr/bin/env python2
|
2018-06-13 00:02:38 +03:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2018-06-13 00:02:38 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import codecs
|
|
|
|
|
|
|
|
from lib.core.settings import IS_WIN
|
2019-03-27 15:33:46 +03:00
|
|
|
from thirdparty.six.moves import http_client as _http_client
|
2018-06-13 00:02:38 +03:00
|
|
|
|
|
|
|
def dirtyPatches():
|
|
|
|
"""
|
|
|
|
Place for "dirty" Python related patches
|
|
|
|
"""
|
|
|
|
|
|
|
|
# accept overly long result lines (e.g. SQLi results in HTTP header responses)
|
2019-03-27 15:33:46 +03:00
|
|
|
_http_client._MAXLINE = 1 * 1024 * 1024
|
2018-06-13 00:02:38 +03:00
|
|
|
|
|
|
|
# add support for inet_pton() on Windows OS
|
|
|
|
if IS_WIN:
|
|
|
|
from thirdparty.wininetpton import win_inet_pton
|
|
|
|
|
|
|
|
# Reference: https://github.com/nodejs/node/issues/12786#issuecomment-298652440
|
|
|
|
codecs.register(lambda name: codecs.lookup("utf-8") if name == "cp65001" else None)
|