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

Skip to content

Commit 2cc604e

Browse files
committed
Fix several typos
1 parent c557637 commit 2cc604e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

doc/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
* Added option `--safe-post` to set POST data for sending to safe URL.
7777
* Added option `--safe-req` for loading HTTP request from a file that will be used during sending to safe URL.
7878
* Added option `--skip` to skip testing of given parameter(s).
79-
* Added switch `--skip-static` to skip testing parameters that not appear dynamic.
79+
* Added switch `--skip-static` to skip testing parameters that not appear to be dynamic.
8080
* Added switch `--skip-urlencode` to skip URL encoding of payload data.
8181
* Added switch `--skip-waf` to skip heuristic detection of WAF/IPS/IDS protection.
8282
* Added switch `--smart` to conduct thorough tests only if positive heuristic(s).

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def start():
487487
check = checkDynParam(place, parameter, value)
488488

489489
if not check:
490-
warnMsg = "%s parameter '%s' does not appear dynamic" % (paramType, parameter)
490+
warnMsg = "%s parameter '%s' does not appear to be dynamic" % (paramType, parameter)
491491
logger.warn(warnMsg)
492492

493493
if conf.skipStatic:

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def cmdLineParser(argv=None):
264264
help="Skip testing for given parameter(s)")
265265

266266
injection.add_option("--skip-static", dest="skipStatic", action="store_true",
267-
help="Skip testing parameters that not appear dynamic")
267+
help="Skip testing parameters that not appear to be dynamic")
268268

269269
injection.add_option("--dbms", dest="dbms",
270270
help="Force back-end DBMS to this value")

sqlmap.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ testParameter =
230230
# Skip testing for given parameter(s).
231231
skip =
232232

233-
# Skip testing parameters that not appear dynamic.
233+
# Skip testing parameters that not appear to be dynamic.
234234
# Valid: True or False
235235
skipStatic = False
236236

0 commit comments

Comments
 (0)