Merge pull request #2250 from hph86/fix_typos

Fix several typos
This commit is contained in:
Miroslav Stampar 2016-10-26 22:31:39 +02:00 committed by GitHub
commit c1d4ab72eb
4 changed files with 4 additions and 4 deletions

View File

@ -76,7 +76,7 @@
* Added option `--safe-post` to set POST data for sending to safe URL.
* Added option `--safe-req` for loading HTTP request from a file that will be used during sending to safe URL.
* Added option `--skip` to skip testing of given parameter(s).
* Added switch `--skip-static` to skip testing parameters that not appear dynamic.
* Added switch `--skip-static` to skip testing parameters that not appear to be dynamic.
* Added switch `--skip-urlencode` to skip URL encoding of payload data.
* Added switch `--skip-waf` to skip heuristic detection of WAF/IPS/IDS protection.
* Added switch `--smart` to conduct thorough tests only if positive heuristic(s).

View File

@ -487,7 +487,7 @@ def start():
check = checkDynParam(place, parameter, value)
if not check:
warnMsg = "%s parameter '%s' does not appear dynamic" % (paramType, parameter)
warnMsg = "%s parameter '%s' does not appear to be dynamic" % (paramType, parameter)
logger.warn(warnMsg)
if conf.skipStatic:

View File

@ -264,7 +264,7 @@ def cmdLineParser(argv=None):
help="Skip testing for given parameter(s)")
injection.add_option("--skip-static", dest="skipStatic", action="store_true",
help="Skip testing parameters that not appear dynamic")
help="Skip testing parameters that not appear to be dynamic")
injection.add_option("--dbms", dest="dbms",
help="Force back-end DBMS to this value")

View File

@ -230,7 +230,7 @@ testParameter =
# Skip testing for given parameter(s).
skip =
# Skip testing parameters that not appear dynamic.
# Skip testing parameters that not appear to be dynamic.
# Valid: True or False
skipStatic = False