mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Moving --force-ssl from [Request] to [General] options
This commit is contained in:
parent
76a0d20799
commit
4b5335a323
3 changed files with 9 additions and 9 deletions
|
|
@ -100,10 +100,6 @@ def cmdLineParser():
|
|||
request.add_option("--randomize", dest="rParam",
|
||||
help="Randomly change value for given parameter(s)")
|
||||
|
||||
request.add_option("--force-ssl", dest="forceSSL",
|
||||
action="store_true",
|
||||
help="Force usage of SSL/HTTPS requests")
|
||||
|
||||
request.add_option("--host", dest="host",
|
||||
help="HTTP Host header")
|
||||
|
||||
|
|
@ -568,6 +564,10 @@ def cmdLineParser():
|
|||
action="store_true",
|
||||
help="Flush session files for current target")
|
||||
|
||||
general.add_option("--force-ssl", dest="forceSSL",
|
||||
action="store_true",
|
||||
help="Force usage of SSL/HTTPS requests")
|
||||
|
||||
general.add_option("--forms", dest="forms",
|
||||
action="store_true",
|
||||
help="Parse and test forms on target URL")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue