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

Skip to content

Commit f1ac7dc

Browse files
committed
Minor update
1 parent 9a87f47 commit f1ac7dc

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

data/txt/sha256sums.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ f9c96cd3fe99578bed9d49a8bdf8d76836d320a7c48c56eb0469f48b36775c35 lib/controller
165165
99d0e94dd5fe60137abf48bfa051129fb251f5c40f0f7a270c89fbcb07323730 lib/controller/__init__.py
166166
826c33f1105be4c0985e1bbe1d75bdb009c17815ad6552fc8d9bf39090d3c40f lib/core/agent.py
167167
b2d69c99632da5c2acd0c0934e70d55862f1380a3f602cbe7456d617fb9c1fc9 lib/core/bigarray.py
168-
fa20f88c2bf45c1347ea21f9fb3b555120fd270f5480c5ca23dbb3f9118b08a6 lib/core/common.py
168+
dbbb4a4e570aaeef0a420b479d3017423c2824a27cfc71c411d8ab9bee661c90 lib/core/common.py
169169
5c26b0f308266bc3a9679ef837439e38d1dc7a69eac6bd3422280f49aaf114d2 lib/core/compat.py
170170
b60c96780cad4a257f91a0611b08cfcc52f242908c5d5ab2bf9034ef07869602 lib/core/convert.py
171171
5e381515873e71c395c77df00bf1dd8c4592afc6210a2f75cbc20daf384e539f lib/core/data.py
@@ -187,7 +187,7 @@ bf77f9fc4296f239687297aee1fd6113b34f855965a6f690b52e26bd348cb353 lib/core/profi
187187
4eff81c639a72b261c8ba1c876a01246e718e6626e8e77ae9cc6298b20a39355 lib/core/replication.py
188188
bbd1dcda835934728efc6d68686e9b0da72b09b3ee38f3c0ab78e8c18b0ba726 lib/core/revision.py
189189
eed6b0a21b3e69c5583133346b0639dc89937bd588887968ee85f8389d7c3c96 lib/core/session.py
190-
1f2837e65e87f1ef8cfd77045bd3c3439c84ff247b6ffc7390d1511c03583e15 lib/core/settings.py
190+
73c4f58871374ab250ff9d6fb515be6994dad7089f5c4bc4f8bb2ce5acf1b481 lib/core/settings.py
191191
2bec97d8a950f7b884e31dfe9410467f00d24f21b35672b95f8d68ed59685fd4 lib/core/shell.py
192192
e90a359b37a55c446c60e70ccd533f87276714d0b09e34f69b0740fd729ddbf8 lib/core/subprocessng.py
193193
54f7c70b4c7a9931f7ff3c1c12030180bde38e35a306d5e343ad6052919974cd lib/core/target.py

lib/core/common.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4648,7 +4648,7 @@ def isAdminFromPrivileges(privileges):
46484648

46494649
return retVal
46504650

4651-
def findPageForms(content, url, raise_=False, addToTargets=False):
4651+
def findPageForms(content, url, raiseException=False, addToTargets=False):
46524652
"""
46534653
Parses given page content for possible forms (Note: still not implemented for Python3)
46544654
@@ -4666,7 +4666,7 @@ def geturl(self):
46664666

46674667
if not content:
46684668
errMsg = "can't parse forms as the page content appears to be blank"
4669-
if raise_:
4669+
if raiseException:
46704670
raise SqlmapGenericException(errMsg)
46714671
else:
46724672
logger.debug(errMsg)
@@ -4688,7 +4688,7 @@ def geturl(self):
46884688
forms = ParseResponse(filtered, backwards_compat=False)
46894689
except:
46904690
errMsg = "no success"
4691-
if raise_:
4691+
if raiseException:
46924692
raise SqlmapGenericException(errMsg)
46934693
else:
46944694
logger.debug(errMsg)
@@ -4715,7 +4715,7 @@ def geturl(self):
47154715
except (ValueError, TypeError) as ex:
47164716
errMsg = "there has been a problem while "
47174717
errMsg += "processing page forms ('%s')" % getSafeExString(ex)
4718-
if raise_:
4718+
if raiseException:
47194719
raise SqlmapGenericException(errMsg)
47204720
else:
47214721
logger.debug(errMsg)
@@ -4767,7 +4767,7 @@ def geturl(self):
47674767

47684768
if not retVal and not conf.crawlDepth:
47694769
errMsg = "there were no forms found at the given target URL"
4770-
if raise_:
4770+
if raiseException:
47714771
raise SqlmapGenericException(errMsg)
47724772
else:
47734773
logger.debug(errMsg)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty import six
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.8.6.12"
22+
VERSION = "1.8.6.13"
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)

0 commit comments

Comments
 (0)