Skip to content

Commit

Permalink
Fix several typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hph86 committed Oct 26, 2016
1 parent c557637 commit 2cc604e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion lib/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lib/parse/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion sqlmap.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2cc604e

Please sign in to comment.