From 4af000e6999ad05a05d5d3156a218126c789b992 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 23 Nov 2010 15:11:15 +0000 Subject: [PATCH] minor language update (in testing phase "used" is more preferable than "provided") --- lib/techniques/inband/union/use.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/techniques/inband/union/use.py b/lib/techniques/inband/union/use.py index a3d0ec97c..1c787b615 100644 --- a/lib/techniques/inband/union/use.py +++ b/lib/techniques/inband/union/use.py @@ -143,13 +143,13 @@ def unionUse(expression, direct=False, unescape=True, resetCounter=False, nullCh if count and count.isdigit() and int(count) > 0: stopLimit = int(count) - infoMsg = "the SQL query provided returns " + infoMsg = "the SQL query used returns " infoMsg += "%d entries" % stopLimit logger.info(infoMsg) elif count and not count.isdigit(): warnMsg = "it was not possible to count the number " - warnMsg += "of entries for the SQL query provided. " + warnMsg += "of entries for the used SQL query. " warnMsg += "sqlmap will assume that it returns only " warnMsg += "one entry" logger.warn(warnMsg) @@ -157,14 +157,14 @@ def unionUse(expression, direct=False, unescape=True, resetCounter=False, nullCh stopLimit = 1 elif ( not count or int(count) == 0 ): - warnMsg = "the SQL query provided does not " + warnMsg = "the SQL query used does not " warnMsg += "return any output" logger.warn(warnMsg) return elif ( not count or int(count) == 0 ) and ( not stopLimit or stopLimit == 0 ): - warnMsg = "the SQL query provided does not " + warnMsg = "the SQL query used does not " warnMsg += "return any output" logger.warn(warnMsg)