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

Skip to content

Commit bc61a68

Browse files
committed
Quick patch for #2770
1 parent e938062 commit bc61a68

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
@@ -105,7 +105,7 @@ def payload(self, place=None, parameter=None, value=None, newValue=None, where=N
105105
else:
106106
origValue = filter(None, (re.search(_, origValue.split(BOUNDED_INJECTION_MARKER)[0]) for _ in (r"\w+\Z", r"[^\"'><]+\Z", r"[^ ]+\Z")))[0].group(0)
107107
origValue = origValue[origValue.rfind('/') + 1:]
108-
for char in ('?', '=', ':'):
108+
for char in ('?', '=', ':', ','):
109109
if char in origValue:
110110
origValue = origValue[origValue.rfind(char) + 1:]
111111
elif place == PLACE.CUSTOM_POST:

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.11.13"
22+
VERSION = "1.1.11.14"
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 @@ f96467fc5cd1d87f52dd7966c8ae6e79 extra/shutils/regressiontest.py
2525
91c9ef44927b270ea53b6739ff5b2e76 lib/controller/controller.py
2626
d2cdb9e832e18a81e936ca3348144b16 lib/controller/handler.py
2727
5fb9aaf874daa47ea2b672a22740e56b lib/controller/__init__.py
28-
c1ba81136151b327c71fd01376376451 lib/core/agent.py
28+
fd69e56ce20a5a49ce10a7a745022378 lib/core/agent.py
2929
d55b4b58019d6dbfddd40ec919f9f172 lib/core/bigarray.py
3030
f424e35d21529dafe60c0c5564855d5f lib/core/common.py
3131
54326d3a690f8b26fe5a5da1a589b369 lib/core/convert.py
@@ -46,7 +46,7 @@ ec6a778b0e74749b916caead78ba88b7 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
5868db3f5e8ba3be841fa74501e5bc60 lib/core/settings.py
49+
0c0ffa8d967370235b263b9eca013516 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
7c9f2af3c0a8dd89223cfe07b0a0b826 lib/core/target.py

0 commit comments

Comments
 (0)