Skip to content

Commit

Permalink
Minor update options.go to fix a typo in -leave-default-ports descrip…
Browse files Browse the repository at this point in the history
…tion text

Help text fix to change "http://host:80 - https//host:443" to "http://host:80 - https://host:443" for consistency
  • Loading branch information
ireland authored Apr 18, 2023
1 parent 9a1239b commit 64fa729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ func ParseOptions() *Options {
flagSet.StringVar(&options.RequestBody, "body", "", "post body to include in http request"),
flagSet.BoolVarP(&options.Stream, "stream", "s", false, "stream mode - start elaborating input targets without sorting"),
flagSet.BoolVarP(&options.SkipDedupe, "skip-dedupe", "sd", false, "disable dedupe input items (only used with stream mode)"),
flagSet.BoolVarP(&options.LeaveDefaultPorts, "leave-default-ports", "ldp", false, "leave default http/https ports in host header (eg. http://host:80 - https//host:443"),
flagSet.BoolVarP(&options.LeaveDefaultPorts, "leave-default-ports", "ldp", false, "leave default http/https ports in host header (eg. http://host:80 - https://host:443"),
flagSet.BoolVar(&options.ZTLS, "ztls", false, "use ztls library with autofallback to standard one for tls13"),
)

Expand Down

0 comments on commit 64fa729

Please sign in to comment.