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

Skip to content

Commit 6130185

Browse files
committed
Minor consistency update with the wiki
1 parent c92fde1 commit 6130185

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

lib/controller/checks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,7 @@ def _(*args, **kwargs):
13331333

13341334
for function, product in kb.wafFunctions:
13351335
try:
1336-
logger.debug("checking for WAF/IDS/IPS product '%s'" % product)
1336+
logger.debug("checking for WAF/IPS/IDS product '%s'" % product)
13371337
found = function(_)
13381338
except Exception, ex:
13391339
errMsg = "exception occurred while running "
@@ -1343,7 +1343,7 @@ def _(*args, **kwargs):
13431343
found = False
13441344

13451345
if found:
1346-
errMsg = "WAF/IDS/IPS identified as '%s'" % product
1346+
errMsg = "WAF/IPS/IDS identified as '%s'" % product
13471347
logger.critical(errMsg)
13481348

13491349
retVal.append(product)
@@ -1360,7 +1360,7 @@ def _(*args, **kwargs):
13601360
if output and output[0] not in ("Y", "y"):
13611361
raise SqlmapUserQuitException
13621362
else:
1363-
warnMsg = "WAF/IDS/IPS product hasn't been identified"
1363+
warnMsg = "WAF/IPS/IDS product hasn't been identified"
13641364
logger.warn(warnMsg)
13651365

13661366
kb.testType = None

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ def _setTamperingFunctions():
977977

978978
def _setWafFunctions():
979979
"""
980-
Loads WAF/IDS/IPS detecting functions from script(s)
980+
Loads WAF/IPS/IDS detecting functions from script(s)
981981
"""
982982

983983
if conf.identifyWaf:

lib/core/settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.10.25"
22+
VERSION = "1.0.10.26"
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)
@@ -43,10 +43,10 @@
4343
DIFF_TOLERANCE = 0.05
4444
CONSTANT_RATIO = 0.9
4545

46-
# Ratio used in heuristic check for WAF/IDS/IPS protected targets
46+
# Ratio used in heuristic check for WAF/IPS/IDS protected targets
4747
IDS_WAF_CHECK_RATIO = 0.5
4848

49-
# Timeout used in heuristic check for WAF/IDS/IPS protected targets
49+
# Timeout used in heuristic check for WAF/IPS/IDS protected targets
5050
IDS_WAF_CHECK_TIMEOUT = 10
5151

5252
# Lower and upper values for match ratio in case of stable page
@@ -480,7 +480,7 @@
480480
# Data inside shellcodeexec to be filled with random string
481481
SHELLCODEEXEC_RANDOM_STRING_MARKER = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
482482

483-
# Vectors used for provoking specific WAF/IDS/IPS behavior(s)
483+
# Vectors used for provoking specific WAF/IPS/IDS behavior(s)
484484
WAF_ATTACK_VECTORS = (
485485
"", # NIL
486486
"search=<script>alert(1)</script>",

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ def _randomizeParameter(paramString, randomParameter):
11501150
warnMsg = "site returned insanely large response"
11511151
if kb.testMode:
11521152
warnMsg += " in testing phase. This is a common "
1153-
warnMsg += "behavior in custom WAF/IDS/IPS solutions"
1153+
warnMsg += "behavior in custom WAF/IPS/IDS solutions"
11541154
singleTimeWarnMessage(warnMsg)
11551155

11561156
if conf.secondOrder:

txt/checksum.md5

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ a8dd1f5799ed863a80b94c36b5428528 extra/shutils/regressiontest.py
2020
cc9c82cfffd8ee9b25ba3af6284f057e extra/sqlharvest/__init__.py
2121
4f2f817596540d82f9fcc0c5b2228beb extra/sqlharvest/sqlharvest.py
2222
2daa39e4d59526acb4772b6c47eb315f lib/controller/action.py
23-
f15544a4c9c365ae8f2f8fa2e3a69aa5 lib/controller/checks.py
23+
33299308c821d04c2caf35d4c7a415ff lib/controller/checks.py
2424
5df6cb90ffec56876e444aec8cf89c34 lib/controller/controller.py
2525
0a64305c3b3a01a2fc3a5e6204f442f1 lib/controller/handler.py
2626
cc9c82cfffd8ee9b25ba3af6284f057e lib/controller/__init__.py
@@ -39,13 +39,13 @@ e4aec2b11c1ad6039d0c3dbbfbc5eb1a lib/core/exception.py
3939
cc9c82cfffd8ee9b25ba3af6284f057e lib/core/__init__.py
4040
91c514013daa796e2cdd940389354eac lib/core/log.py
4141
5b079749c50240602ea92637e268ed31 lib/core/optiondict.py
42-
b6f8d72812531ae010fc5b9ce4faba51 lib/core/option.py
42+
d63e7749935f8ab323baaf5b425977ef lib/core/option.py
4343
7af487340c138f7b5dbd443161cbb428 lib/core/profiling.py
4444
e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
b6d53fd8d8dc437c358366789ddeb935 lib/core/settings.py
48+
1b4a3f7d043a8ff800a42e2b5d926303 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -67,7 +67,7 @@ b40a4c5d91770d347df36d3065b63798 lib/parse/sitemap.py
6767
9299f21804033f099681525bb9bf51c0 lib/request/basicauthhandler.py
6868
083e7f446909b12009e72ae8e5e5737c lib/request/basic.py
6969
c48285682a61d49982cb508351013cb4 lib/request/comparison.py
70-
a00056d73c56b240bb15ebc32fe5440f lib/request/connect.py
70+
9a8aebced1304fb9d590dd252b253416 lib/request/connect.py
7171
49b4c583af68689de5f9acb162de2939 lib/request/direct.py
7272
1a46f7bb26b23ec0c0d9d9c95828241b lib/request/dns.py
7373
70ceefe39980611494d4f99afb96f652 lib/request/httpshandler.py

0 commit comments

Comments
 (0)