Skip to content

Commit

Permalink
🔧 move fingerprints arg under check command
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeous committed Jul 20, 2023
1 parent 99d7c11 commit 83179c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,5 @@ func init() {
checkCmd.Flags().StringP("output", "o", "", "file to write findings to")
checkCmd.Flags().UintP("timeout", "t", 10, "timeout for HTTP requests")
checkCmd.Flags().BoolP("edge-cases", "e", false, "include edge-case fingerprints (might cause false positives)")
checkCmd.Flags().StringP("fingerprints", "f", "", "custom service fingerprints file")
}
1 change: 0 additions & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ func Execute() {
}

func init() {
rootCmd.PersistentFlags().StringP("fingerprints", "f", "", "custom service fingerprints file")
rootCmd.PersistentFlags().BoolP("verbose", "v", false, "increase application verbosity")
}

0 comments on commit 83179c7

Please sign in to comment.