-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathshow-user-agents.go
98 lines (85 loc) · 2.11 KB
/
show-user-agents.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package commands
import (
"fmt"
"os"
"strings"
"github.com/activecm/rita-legacy/pkg/useragent"
"github.com/activecm/rita-legacy/resources"
"github.com/olekukonko/tablewriter"
"github.com/urfave/cli"
)
func init() {
command := cli.Command{
Name: "show-useragents",
Usage: "Print user agent information",
ArgsUsage: "<database>",
Flags: []cli.Flag{
ConfigFlag,
humanFlag,
cli.BoolFlag{
Name: "least-used, l",
Usage: "Sort the user agents from least used to most used.",
},
limitFlag,
noLimitFlag,
delimFlag,
},
Action: func(c *cli.Context) error {
db := c.Args().Get(0)
if db == "" {
return cli.NewExitError("Specify a database", -1)
}
res := resources.InitResources(getConfigFilePath(c))
res.DB.SelectDB(db)
sortDirection := 1
if !c.Bool("least-used") {
sortDirection = -1
}
data, err := useragent.Results(res, sortDirection, c.Int("limit"), c.Bool("no-limit"))
if err != nil {
res.Log.Error(err)
return cli.NewExitError(err, -1)
}
if len(data) == 0 {
return cli.NewExitError("No results were found for "+db, -1)
}
if c.Bool("human-readable") {
err := showAgentsHuman(data)
if err != nil {
return cli.NewExitError(err.Error(), -1)
}
return nil
}
err = showAgents(data, c.String("delimiter"))
if err != nil {
return cli.NewExitError(err.Error(), -1)
}
return nil
},
}
bootstrapCommands(command)
}
func showAgents(agents []useragent.Result, delim string) error {
headers := []string{"User Agent", "Times Used"}
// Print the headers and analytic values, separated by a delimiter
fmt.Println(strings.Join(headers, delim))
for _, agent := range agents {
fmt.Println(
strings.Join(
[]string{agent.UserAgent, i(agent.TimesUsed)},
delim,
),
)
}
return nil
}
func showAgentsHuman(agents []useragent.Result) error {
table := tablewriter.NewWriter(os.Stdout)
table.SetColWidth(100)
table.SetHeader([]string{"User Agent", "Times Used"})
for _, agent := range agents {
table.Append([]string{agent.UserAgent, i(agent.TimesUsed)})
}
table.Render()
return nil
}