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

Skip to content

Commit 8b4367d

Browse files
committed
Revert of last commit
1 parent 0a9d69a commit 8b4367d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ def heuristicCheckSqlInjection(place, parameter):
939939
infoMsg += "'%s' might " % parameter
940940

941941
def _(page):
942-
return re.search("(?i)sql", page or "") is None and any(_ in (page or "") for _ in FORMAT_EXCEPTION_STRINGS)
942+
return any(_ in (page or "") for _ in FORMAT_EXCEPTION_STRINGS)
943943

944944
casting = _(page) and not _(kb.originalPage)
945945

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.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.58"
22+
VERSION = "1.0.6.59"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

0 commit comments

Comments
 (0)