()
| 12 | ) |
| 13 | |
| 14 | func Command() *cli.Command { |
| 15 | cmd := cli.Command{ |
| 16 | Name: "vhost", |
| 17 | Usage: "Uses VHOST enumeration mode (you most probably want to use the IP address as the URL parameter)", |
| 18 | Action: run, |
| 19 | Flags: getFlags(), |
| 20 | } |
| 21 | return &cmd |
| 22 | } |
| 23 | |
| 24 | func getFlags() []cli.Flag { |
| 25 | var flags []cli.Flag |