diff --git a/lib/core/option.py b/lib/core/option.py index a0f8d4350..1cb06f946 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -468,7 +468,7 @@ def _findPageForms(): for i in xrange(len(targets)): try: target = targets[i] - page, _, _ = Request.getPage(url=target.strip(), crawling=True, raise404=False) + page, _, _ = Request.getPage(url=target.strip(), cookie=conf.cookie, crawling=True, raise404=False) findPageForms(page, target, False, True) if conf.verbose in (1, 2): diff --git a/lib/core/settings.py b/lib/core/settings.py index ff0b863eb..1d5cf5ca0 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.3.5.57" +VERSION = "1.3.5.58" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)