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

Skip to content

Commit dc87e10

Browse files
committed
Trivial message update
1 parent 39a46d6 commit dc87e10

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def start():
293293
return False
294294

295295
if kb.targets and len(kb.targets) > 1:
296-
infoMsg = "sqlmap got a total of %d targets" % len(kb.targets)
296+
infoMsg = "found a total of %d targets" % len(kb.targets)
297297
logger.info(infoMsg)
298298

299299
hostCount = 0

lib/core/option.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def retrieve():
374374
links = retrieve()
375375

376376
if kb.targets:
377-
infoMsg = "sqlmap got %d results for your " % len(links)
377+
infoMsg = "found %d results for your " % len(links)
378378
infoMsg += "search dork expression, "
379379

380380
if len(links) == len(kb.targets):
@@ -387,7 +387,7 @@ def retrieve():
387387
break
388388

389389
else:
390-
message = "sqlmap got %d results " % len(links)
390+
message = "found %d results " % len(links)
391391
message += "for your search dork expression, but none of them "
392392
message += "have GET parameters to test for SQL injection. "
393393
message += "Do you want to skip to the next result page? [Y/n]"

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.12"
21+
VERSION = "1.3.11.13"
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)

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ class _(dict):
565565

566566
if refresh:
567567
if kb.alwaysRefresh is None:
568-
msg = "sqlmap got a refresh request "
568+
msg = "got a refresh request "
569569
msg += "(redirect like response common to login pages). "
570570
msg += "Do you want to apply the refresh "
571571
msg += "from now on (or stay on the original page)? [Y/n]"

lib/request/redirecthandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _get_header_redirect(self, headers):
4747
def _ask_redirect_choice(self, redcode, redurl, method):
4848
with kb.locks.redirect:
4949
if kb.redirectChoice is None:
50-
msg = "sqlmap got a %d redirect to " % redcode
50+
msg = "got a %d redirect to " % redcode
5151
msg += "'%s'. Do you want to follow? [Y/n] " % redurl
5252

5353
kb.redirectChoice = REDIRECTION.YES if readInput(msg, default='Y', boolean=True) else REDIRECTION.NO

0 commit comments

Comments
 (0)