Trivial update

This commit is contained in:
Miroslav Stampar
2019-06-04 14:48:51 +02:00
parent 495e7c8210
commit 70710df2ac
7 changed files with 8 additions and 8 deletions

View File

@@ -12,8 +12,8 @@ import functools
import math
import os
import random
import uuid
import sys
import uuid
class WichmannHill(random.Random):
"""

View File

@@ -9,9 +9,9 @@ import codecs
import lib.controller.checks
import lib.core.common
import lib.core.threads
import lib.core.convert
import lib.core.option
import lib.core.threads
import lib.request.connect
import lib.utils.search
import lib.utils.sqlalchemy

View File

@@ -6,8 +6,8 @@ See the file 'LICENSE' for copying permission
"""
import codecs
import os
import cProfile
import os
from lib.core.common import getSafeExString
from lib.core.data import logger

View File

@@ -18,7 +18,7 @@ from lib.core.enums import OS
from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.3.6.12"
VERSION = "1.3.6.13"
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)