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

Skip to content

Commit 10977ca

Browse files
committed
Fixes #3510
1 parent cdd4007 commit 10977ca

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

lib/controller/checks.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1421,17 +1421,24 @@ def _(*args, **kwargs):
14211421
page, headers, code = None, None, None
14221422
try:
14231423
pushValue(kb.redirectChoice)
1424+
pushValue(kb.resendPostOnRedirect)
1425+
14241426
kb.redirectChoice = REDIRECTION.YES
1427+
kb.resendPostOnRedirect = True
1428+
14251429
if kwargs.get("get"):
14261430
kwargs["get"] = urlencode(kwargs["get"])
14271431
kwargs["raise404"] = False
14281432
kwargs["silent"] = True
14291433
kwargs["finalCode"] = True
1434+
14301435
page, headers, code = Request.getPage(*args, **kwargs)
14311436
except Exception:
14321437
pass
14331438
finally:
1439+
kb.resendPostOnRedirect = popValue()
14341440
kb.redirectChoice = popValue()
1441+
14351442
return page or "", headers or {}, code
14361443

14371444
retVal = []

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.0"
22+
VERSION = "1.3.3.1"
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
@@ -24,7 +24,7 @@ fb6be55d21a70765e35549af2484f762 extra/sqlharvest/__init__.py
2424
fb6be55d21a70765e35549af2484f762 extra/wafdetectify/__init__.py
2525
aec73042403993076f478da48066a79e extra/wafdetectify/wafdetectify.py
2626
e6909a3b32fc09c0373101eb58c76538 lib/controller/action.py
27-
d392dbccdb59ac36530c1182675a2609 lib/controller/checks.py
27+
0fce185e63b1b743b3ef0a3dbe640366 lib/controller/checks.py
2828
8581acf56b8fb0def50af3707490a834 lib/controller/controller.py
2929
c1da277517c7ec4c23e953a51b51e203 lib/controller/handler.py
3030
fb6be55d21a70765e35549af2484f762 lib/controller/__init__.py
@@ -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-
dd5a87792c98d150cd5d9c85bc086d13 lib/core/settings.py
53+
9dbce20566a1964f650b8986885ae370 lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
43772ea73e9e3d446f782af591cb4eda lib/core/target.py

0 commit comments

Comments
 (0)