Skip to content

Commit 07dd9fe

Browse files
committed
1 parent d2a1b08 commit 07dd9fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/requests/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def authentication_process():
4444
#cj = cookielib.CookieJar()
4545
cj = _http_cookiejar.CookieJar()
4646
opener = _urllib.request.build_opener(_urllib.request.HTTPCookieProcessor(cj))
47-
request = opener.open(_urllib.request.Request(auth_url))
47+
# request = opener.open(_urllib.request.Request(auth_url))
4848
cookies = ""
4949
for cookie in cj:
5050
cookie_values = cookie.name + "=" + cookie.value + "; "

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "40"
219+
REVISION = "41"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)