()
| 11 | ) |
| 12 | |
| 13 | func Command() *cli.Command { |
| 14 | cmd := cli.Command{ |
| 15 | Name: "fuzz", |
| 16 | Usage: fmt.Sprintf("Uses fuzzing mode. Replaces the keyword %s in the URL, Headers and the request body", gobusterfuzz.FuzzKeyword), |
| 17 | Action: run, |
| 18 | Flags: getFlags(), |
| 19 | } |
| 20 | return &cmd |
| 21 | } |
| 22 | |
| 23 | func getFlags() []cli.Flag { |
| 24 | var flags []cli.Flag |