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

Skip to content

Commit e4d4861

Browse files
committed
Minor update
1 parent 46ee690 commit e4d4861

3 files changed

Lines changed: 4 additions & 4 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.34"
22+
VERSION = "1.3.3.35"
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)

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def getPage(**kwargs):
277277
if multipart:
278278
post = multipart
279279

280-
if chunked:
280+
if chunked and post:
281281
post = urllib.unquote(post)
282282
post = chunkSplitPostData(post)
283283

txt/checksum.md5

Lines changed: 2 additions & 2 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-
5721a679b6d62ad8fe5aa7c9934c1a80 lib/core/settings.py
53+
faf699cfc681672d8bfd80c18b0d96df lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
10d7e4f7ba2502cce5cf69223c52eddc lib/core/target.py
@@ -73,7 +73,7 @@ e4ea70bcd461f5176867dcd89d372386 lib/request/basicauthhandler.py
7373
bd4b654767eab19cd4dcd4520a68eed5 lib/request/basic.py
7474
caa52d249fbcf1705cd9208b84d93387 lib/request/chunkedhandler.py
7575
fc25d951217077fe655ed2a3a81552ae lib/request/comparison.py
76-
f44c5d2716317a0dfa024c98ce4865e9 lib/request/connect.py
76+
ea6610ed5557f263cb7a6075732461ce lib/request/connect.py
7777
43005bd6a78e9cf0f3ed2283a1cb122e lib/request/direct.py
7878
2b7509ba38a667c61cefff036ec4ca6f lib/request/dns.py
7979
ceac6b3bf1f726f8ff43c6814e9d7281 lib/request/httpshandler.py

0 commit comments

Comments
 (0)