File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.3.10.35 "
21+ VERSION = "1.3.10.36 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 3434from lib .core .data import kb
3535from lib .core .data import logger
3636from lib .core .decorators import cachedmethod
37+ from lib .core .decorators import lockedmethod
3738from lib .core .dicts import HTML_ENTITIES
3839from lib .core .enums import DBMS
3940from lib .core .enums import HTTP_HEADER
5758from thirdparty .six import unichr as _unichr
5859from thirdparty .six .moves import http_client as _http_client
5960
61+ @lockedmethod
6062def forgeHeaders (items = None , base = None ):
6163 """
6264 Prepare HTTP Cookie, HTTP User-Agent and HTTP Referer headers to use when performing
You can’t perform that action at this time.
0 commit comments