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

Skip to content

Commit c5b4af8

Browse files
committed
Dummy commit (to provoke rehash)
1 parent c29e47f commit c5b4af8

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

lib/core/common.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ def getPublicTypeMembers(type_, onlyValues=False):
26142614
retVal = []
26152615

26162616
for name, value in inspect.getmembers(type_):
2617-
if not name.startswith('__'):
2617+
if not name.startswith("__"):
26182618
if not onlyValues:
26192619
retVal.append((name, value))
26202620
else:
@@ -2674,7 +2674,7 @@ def extractTextTagContent(page):
26742674
except MemoryError:
26752675
page = page.replace(REFLECTED_VALUE_MARKER, "")
26762676

2677-
return filter(None, (_.group('result').strip() for _ in re.finditer(TEXT_TAG_REGEX, page)))
2677+
return filter(None, (_.group("result").strip() for _ in re.finditer(TEXT_TAG_REGEX, page)))
26782678

26792679
def trimAlphaNum(value):
26802680
"""
@@ -2786,11 +2786,11 @@ def removeDynamicContent(page):
27862786
if prefix is None and suffix is None:
27872787
continue
27882788
elif prefix is None:
2789-
page = re.sub(r'(?s)^.+%s' % re.escape(suffix), suffix.replace('\\', r'\\'), page)
2789+
page = re.sub(r"(?s)^.+%s" % re.escape(suffix), suffix.replace('\\', r'\\'), page)
27902790
elif suffix is None:
2791-
page = re.sub(r'(?s)%s.+$' % re.escape(prefix), prefix.replace('\\', r'\\'), page)
2791+
page = re.sub(r"(?s)%s.+$" % re.escape(prefix), prefix.replace('\\', r'\\'), page)
27922792
else:
2793-
page = re.sub(r'(?s)%s.+%s' % (re.escape(prefix), re.escape(suffix)), '%s%s' % (prefix.replace('\\', r'\\'), suffix.replace('\\', r'\\')), page)
2793+
page = re.sub(r"(?s)%s.+%s" % (re.escape(prefix), re.escape(suffix)), "%s%s" % (prefix.replace('\\', r'\\'), suffix.replace('\\', r'\\')), page)
27942794

27952795
return page
27962796

lib/core/settings.py

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

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

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ d79481ab99acd739615e747d4a79d9d0 lib/controller/handler.py
2626
310efc965c862cfbd7b0da5150a5ad36 lib/controller/__init__.py
2727
19905ecb4437b94512cf21d5f1720091 lib/core/agent.py
2828
6cc95a117fbd34ef31b9aa25520f0e31 lib/core/bigarray.py
29-
7dc9d8e02d8c563375dbfc4ce968b1c7 lib/core/common.py
29+
23bbc0d13af39b3c9b39e033adbadd0d lib/core/common.py
3030
5065a4242a8cccf72f91e22e1007ae63 lib/core/convert.py
3131
a8143dab9d3a27490f7d49b6b29ea530 lib/core/data.py
3232
7936d78b1a7f1f008ff92bf2f88574ba lib/core/datatype.py
@@ -45,7 +45,7 @@ a8143dab9d3a27490f7d49b6b29ea530 lib/core/data.py
4545
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4646
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4747
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
48-
aa1d2128ddd8ccc545dae0657627e733 lib/core/settings.py
48+
6d8623d9c8110f16376d9e7191b65b80 lib/core/settings.py
4949
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5050
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5151
afd0636d2e93c23f4f0a5c9b6023ea17 lib/core/target.py
@@ -168,7 +168,7 @@ a7ed0510e47384eaf93164d53e2b6b36 plugins/dbms/mssqlserver/enumeration.py
168168
48fb283a0dbf980495ca054f7b55783f plugins/dbms/mysql/connector.py
169169
7fe94b803fa273baf479b76ce7a3fb51 plugins/dbms/mysql/enumeration.py
170170
1bd5e659962e814b66a451b807de9110 plugins/dbms/mysql/filesystem.py
171-
63c3c3fe3f1d4bc8f639fe5fcdbebc3c plugins/dbms/mysql/fingerprint.py
171+
1a17c2dea2cd7554cf9082fdf96f8360 plugins/dbms/mysql/fingerprint.py
172172
42568a66a13a43ed46748290c503a652 plugins/dbms/mysql/__init__.py
173173
96dfafcc4aecc1c574148ac05dbdb6da plugins/dbms/mysql/syntax.py
174174
33b2dc28075ab560fd8a4dc898682a0d plugins/dbms/mysql/takeover.py

0 commit comments

Comments
 (0)