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

Skip to content

Commit 41c3139

Browse files
committed
Trivial update
1 parent b036fcc commit 41c3139

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from lib.core.enums import OS
1818

1919
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20-
VERSION = "1.3.3.64"
20+
VERSION = "1.3.3.65"
2121
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2222
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2323
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/core/threads.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from __future__ import print_function
99

1010
import difflib
11-
import random
1211
import threading
1312
import time
1413
import traceback

lib/utils/har.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
from lib.core.bigarray import BigArray
1515
from lib.core.settings import VERSION
1616
from thirdparty.six.moves import BaseHTTPServer as _BaseHTTPServer
17+
from thirdparty.six.moves import http_client as _http_client
1718

1819
# Reference: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HAR/Overview.html
1920
# http://www.softwareishard.com/har/viewer/

0 commit comments

Comments
 (0)