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

Skip to content

Commit 662a3c3

Browse files
committed
Minor update
1 parent c7bb44b commit 662a3c3

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.3.3.16"
22+
VERSION = "1.3.3.17"
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)

thirdparty/beautifulsoup/beautifulsoup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def __init__(self, parser, name, attrs=None, parent=None,
559559
self.escapeUnrecognizedEntities = parser.escapeUnrecognizedEntities
560560

561561
# Convert any HTML, XML, or numeric entities in the attribute values.
562-
convert = lambda(k, val): (k,
562+
convert = lambda k, val: (k,
563563
re.sub("&(#\d+|#x[0-9a-fA-F]+|\w+);",
564564
self._convertEntities,
565565
val))
@@ -1828,7 +1828,7 @@ def _convertFrom(self, proposed):
18281828
"iso-8859-1",
18291829
"iso-8859-2"):
18301830
markup = re.compile("([\x80-\x9f])").sub \
1831-
(lambda(x): self._subMSChar(x.group(1)),
1831+
(lambda x: self._subMSChar(x.group(1)),
18321832
markup)
18331833

18341834
try:

thirdparty/clientform/clientform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def isstringlike(x):
290290
def choose_boundary():
291291
"""Return a string usable as a multipart boundary."""
292292
# follow IE and firefox
293-
nonce = "".join([str(random.randint(0, sys.maxint-1)) for i in 0,1,2])
293+
nonce = "".join([str(random.randint(0, sys.maxint-1)) for i in (0,1,2)])
294294
return "-"*27 + nonce
295295

296296
# This cut-n-pasted MimeWriter from standard library is here so can add

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
af7e2a1ab764cbe6c47e81c09035ad81 lib/core/settings.py
53+
d6314e6d993f8d858c158f05fe5db3dd lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
d9483455ff80d33a55db46ae2fa34a05 lib/core/target.py
@@ -297,7 +297,7 @@ fc571c746951a5306591e04f70ddc46e tamper/versionedmorekeywords.py
297297
d39ce1f99e268dc7f92b602656f49461 tamper/xforwardedfor.py
298298
b1c02296b4e3b0ebaa58b9dcd914cbf4 thirdparty/ansistrm/ansistrm.py
299299
d41d8cd98f00b204e9800998ecf8427e thirdparty/ansistrm/__init__.py
300-
7abd52c4381afd8ac07d5978c8897c2b thirdparty/beautifulsoup/beautifulsoup.py
300+
87e30550efec58d857da6c69930cd466 thirdparty/beautifulsoup/beautifulsoup.py
301301
cb2e1fe7c404dff41a2ae9132828f532 thirdparty/beautifulsoup/__init__.py
302302
ff54a1d98f0ab01ba7b58b068d2ebd26 thirdparty/bottle/bottle.py
303303
4528e6a7bb9341c36c425faf40ef32c3 thirdparty/bottle/__init__.py
@@ -339,7 +339,7 @@ ee25f2a03587e2c283eab0b36c9e5783 thirdparty/chardet/sbcsgroupprober.py
339339
c9349824f2647962175d321cc0c52134 thirdparty/chardet/sjisprober.py
340340
bcae4c645a737d3f0e7c96a66528ca4a thirdparty/chardet/universaldetector.py
341341
6f8b3e25472c02fb45a75215a175991f thirdparty/chardet/utf8prober.py
342-
1dd9a97cef4c8e7da7082c1f0518a19b thirdparty/clientform/clientform.py
342+
be496c4cf7e3eff945d33de5051ac57d thirdparty/clientform/clientform.py
343343
722281d87fb13ec22555480f8f4c715b thirdparty/clientform/__init__.py
344344
0b625ccefa6b066f79d3cbb3639267e6 thirdparty/colorama/ansi.py
345345
7ec474bef2432a1b45001bb87f2ab25f thirdparty/colorama/ansitowin32.py

0 commit comments

Comments
 (0)