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

Skip to content

Commit 6b56715

Browse files
committed
Minor update (tends to become ugly)
1 parent 360d89c commit 6b56715

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

lib/controller/controller.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,6 @@ def _saveToResultsFile():
257257
line = "%s,%s,%s,%s,%s%s" % (safeCSValue(kb.originalUrls.get(conf.url) or conf.url), place, parameter, "".join(techniques[_][0].upper() for _ in sorted(value)), notes, os.linesep)
258258
conf.resultsFP.write(line)
259259

260-
if not results:
261-
line = "%s,,,,%s" % (conf.url, os.linesep)
262-
conf.resultsFP.write(line)
263-
264260
conf.resultsFP.flush()
265261
except IOError as ex:
266262
errMsg = "unable to write to the results file '%s' ('%s'). " % (conf.resultsFile, getSafeExString(ex))

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.11.17"
21+
VERSION = "1.3.11.18"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
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)