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

Skip to content

Commit 35ba94b

Browse files
committed
Fixes #2696
1 parent 24c261d commit 35ba94b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def payload(self, place=None, parameter=None, value=None, newValue=None, where=N
121121
paramString = origValue
122122
origValue = origValue.split(kb.customInjectionMark)[0]
123123
origValue = origValue[origValue.find(',') + 1:]
124-
match = re.search(r"([^;]+)=(?P<value>[^;]+);?\Z", origValue)
124+
match = re.search(r"([^;]+)=(?P<value>[^;]*);?\Z", origValue)
125125
if match:
126126
origValue = match.group("value")
127127
elif ',' in paramString:

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.9.18"
22+
VERSION = "1.1.9.19"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ b220153f82deefa5d5f513f1ebf2346b lib/controller/checks.py
2525
a66093c734c7f94ecdf94d882c2d8b89 lib/controller/controller.py
2626
926bdaf98d082a41fdd57bb41c1692d1 lib/controller/handler.py
2727
310efc965c862cfbd7b0da5150a5ad36 lib/controller/__init__.py
28-
5a15aba70e75749ada5c194aba640de3 lib/core/agent.py
28+
90b4f40ccde13c44e26f53db474afc19 lib/core/agent.py
2929
6cc95a117fbd34ef31b9aa25520f0e31 lib/core/bigarray.py
3030
8dafb651e35d90c05ffe08bf2a9832ae lib/core/common.py
3131
9edefb92b0b9cad862543fcd587aaa66 lib/core/convert.py
@@ -46,7 +46,7 @@ a44d7a4cc6c9a67a72d6af2f25f4ddac lib/core/exception.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
234e894c58cebccf21c2217fccf8fd76 lib/core/settings.py
49+
c755024a91ad09fb1833e556acecf6c5 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
effc153067a00bd43461bfc1cdec1122 lib/core/target.py

0 commit comments

Comments
 (0)