mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-05-21 13:26:07 +03:00
Fix several typos
This commit is contained in:
parent
c557637299
commit
2cc604e356
|
@ -76,7 +76,7 @@
|
||||||
* Added option `--safe-post` to set POST data for sending to safe URL.
|
* 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 `--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 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-urlencode` to skip URL encoding of payload data.
|
||||||
* Added switch `--skip-waf` to skip heuristic detection of WAF/IPS/IDS protection.
|
* 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).
|
* Added switch `--smart` to conduct thorough tests only if positive heuristic(s).
|
||||||
|
|
|
@ -487,7 +487,7 @@ def start():
|
||||||
check = checkDynParam(place, parameter, value)
|
check = checkDynParam(place, parameter, value)
|
||||||
|
|
||||||
if not check:
|
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)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
if conf.skipStatic:
|
if conf.skipStatic:
|
||||||
|
|
|
@ -264,7 +264,7 @@ def cmdLineParser(argv=None):
|
||||||
help="Skip testing for given parameter(s)")
|
help="Skip testing for given parameter(s)")
|
||||||
|
|
||||||
injection.add_option("--skip-static", dest="skipStatic", action="store_true",
|
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",
|
injection.add_option("--dbms", dest="dbms",
|
||||||
help="Force back-end DBMS to this value")
|
help="Force back-end DBMS to this value")
|
||||||
|
|
|
@ -230,7 +230,7 @@ testParameter =
|
||||||
# Skip testing for given parameter(s).
|
# Skip testing for given parameter(s).
|
||||||
skip =
|
skip =
|
||||||
|
|
||||||
# Skip testing parameters that not appear dynamic.
|
# Skip testing parameters that not appear to be dynamic.
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
skipStatic = False
|
skipStatic = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user