File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717from 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 "
2121TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2222TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2323VERSION_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 88from __future__ import print_function
99
1010import difflib
11- import random
1211import threading
1312import time
1413import traceback
Original file line number Diff line number Diff line change 1414from lib .core .bigarray import BigArray
1515from lib .core .settings import VERSION
1616from 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/
You can’t perform that action at this time.
0 commit comments