Skip to content

Commit

Permalink
Merge pull request #35 from surface-security/cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fopina authored Apr 13, 2023
2 parents 7f6a624 + 68bf312 commit 5ff1001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/httpx/option.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var DefaultOptions = Options{
VHostIgnoreNumberOfLines: false,
VHostStripHTML: false,
VHostSimilarityRatio: 85,
DefaultUserAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 ppbsecurity/httpx",
DefaultUserAgent: "httpx - Open-source project (github.com/projectdiscovery/httpx)",
}

func (options *Options) parseCustomCookies() {
Expand Down
2 changes: 1 addition & 1 deletion runner/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ func ParseOptions() *Options {
)

flagSet.CreateGroup("output", "Output",
flagSet.StringVarP(&options.Output, "", "output", "", "file to write output results"),
flagSet.StringVarP(&options.Output, "output", "o", "", "file to write output results"),
flagSet.BoolVarP(&options.StoreResponse, "store-response", "sr", false, "store http response to output directory"),
flagSet.StringVarP(&options.StoreResponseDir, "store-response-dir", "srd", "", "store http response to custom directory"),
flagSet.BoolVar(&options.CSVOutput, "csv", false, "store output in csv format"),
Expand Down

0 comments on commit 5ff1001

Please sign in to comment.