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

Skip to content

Commit 70710df

Browse files
committed
Trivial update
1 parent 495e7c8 commit 70710df

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/core/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
import math
1313
import os
1414
import random
15-
import uuid
1615
import sys
16+
import uuid
1717

1818
class WichmannHill(random.Random):
1919
"""

lib/core/patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
import lib.controller.checks
1111
import lib.core.common
12-
import lib.core.threads
1312
import lib.core.convert
1413
import lib.core.option
14+
import lib.core.threads
1515
import lib.request.connect
1616
import lib.utils.search
1717
import lib.utils.sqlalchemy

lib/core/profiling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"""
77

88
import codecs
9-
import os
109
import cProfile
10+
import os
1111

1212
from lib.core.common import getSafeExString
1313
from lib.core.data import logger

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

sqlmap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@
5454
from lib.core.data import cmdLineOptions
5555
from lib.core.data import conf
5656
from lib.core.data import kb
57-
from lib.core.common import unhandledExceptionMessage
5857
from lib.core.common import MKSTEMP_PREFIX
5958
from lib.core.common import setColor
59+
from lib.core.common import unhandledExceptionMessage
6060
from lib.core.exception import SqlmapBaseException
6161
from lib.core.exception import SqlmapShellQuitException
6262
from lib.core.exception import SqlmapSilentQuitException
6363
from lib.core.exception import SqlmapUserQuitException
64-
from lib.core.option import initOptions
6564
from lib.core.option import init
65+
from lib.core.option import initOptions
6666
from lib.core.patch import dirtyPatches
6767
from lib.core.patch import resolveCrossReferences
6868
from lib.core.settings import GIT_PAGE

tamper/luanginx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
See the file 'LICENSE' for copying permission
66
"""
77

8-
import string
98
import random
9+
import string
1010

1111
from lib.core.compat import xrange
1212
from lib.core.enums import HINT

tamper/space2morehash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"""
77

88
import os
9-
import re
109
import random
10+
import re
1111
import string
1212

1313
from lib.core.common import singleTimeWarnMessage

0 commit comments

Comments
 (0)