-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathcommands.go
281 lines (271 loc) · 7.38 KB
/
commands.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
Copyright 2018 Assetnote
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"os"
"github.com/assetnote/commonspeak2/command/apiroutes"
"github.com/assetnote/commonspeak2/command/deletedfiles"
"github.com/assetnote/commonspeak2/command/directories"
"github.com/assetnote/commonspeak2/command/parameters"
"github.com/assetnote/commonspeak2/command/routes"
"github.com/assetnote/commonspeak2/command/subdomains"
"github.com/assetnote/commonspeak2/command/technologies"
"github.com/assetnote/commonspeak2/command/wordswithext"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
var GlobalFlags = []cli.Flag{
cli.StringFlag{
Name: "project, p",
Value: "",
Usage: "The Google Cloud Project to use for the queries.",
},
cli.StringFlag{
Name: "credentials, c",
Usage: "Refer to: https://cloud.google.com/bigquery/docs/reference/libraries#client-libraries-install-go",
FilePath: "credentials.json",
},
cli.BoolFlag{
Name: "verbose",
Usage: "Enable verbose output.",
},
cli.BoolFlag{
Name: "silent, s",
Usage: "If this is set to true, the results will be written to a file but not to STDOUT.",
},
cli.BoolFlag{
Name: "test, t",
Usage: "If this is set to true, Commonspeak2 will execute queries against smaller, testing datasets.",
},
}
var Commands = []cli.Command{
{
Name: "ext-wordlist",
Usage: "Generate wordlists based on extensions provided by the user.",
Action: wordswithext.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "extensions, e",
Value: "",
Usage: "Extensions to generate wordlists e.g. html,php,js",
},
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. wordlist.txt",
},
cli.StringFlag{
Name: "sources",
Value: "github,httparchive",
Usage: "Comma delimited sources to pull data from [github,httparchive]",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "directories",
Usage: "Generate directory wordlists using URI.js and BigQuery",
Action: directories.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. wordlist.txt",
},
cli.StringFlag{
Name: "sources",
Value: "httparchive",
Usage: "Comma delimited sources to pull data from [httparchive]",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "apiroutes",
Usage: "Generate API routes wordlists using URI.js and BigQuery",
Action: apiroutes.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. wordlist.txt",
},
cli.StringFlag{
Name: "sources",
Value: "httparchive",
Usage: "Comma delimited sources to pull data from [httparchive]",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "parameters",
Usage: "Generate GET parameters wordlists using URI.js and BigQuery",
Action: parameters.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. wordlist.txt",
},
cli.StringFlag{
Name: "sources",
Value: "httparchive",
Usage: "Comma delimited sources to pull data from [httparchive]",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "subdomains",
Usage: "Generates a list of subdomains from all available BigQuery public datasets.",
Action: subdomains.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "20000000",
Usage: "Limit the subdomain list to a certain number of lines. e.g. 20000000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. subdomains.txt",
},
cli.StringFlag{
Name: "sources",
Value: "hackernews,httparchive",
Usage: "Comma delimited sources to pull data from [hackernews,httparchive]",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "technologies",
Usage: "Generates a list of assets that have a specific technology from the HTTPArchive dataset.",
Action: technologies.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "20000000",
Usage: "Limit the asset list to a certain number of lines. e.g. 20000000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. technologies.txt",
},
cli.StringFlag{
Name: "technology",
Value: "Adobe Experience Manaager",
Usage: "Technology you wish to retrieve assets for.",
},
cli.StringFlag{
Name: "date",
Value: "",
Usage: "Date to use for HTTPArchive",
},
},
},
{
Name: "routes",
Usage: "Generate wordlists based on routes extracted from popular frameworks.",
Action: routes.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "frameworks, f",
Value: "rails,nodejs,tomcat",
Usage: "Frameworks to generate wordlists for, currently limited to [rails,nodejs,tomcat]",
},
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. routes.txt",
},
},
},
{
Name: "deleted-files",
Usage: "Generate a list of deleted files based on GitHub commit messages.",
Action: deletedfiles.CmdStatus,
Flags: []cli.Flag{
cli.StringFlag{
Name: "limit, l",
Value: "200000",
Usage: "Limit the wordlist to a certain number of lines. e.g. 200000",
},
cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "Data output location e.g. deleted.txt",
},
},
},
}
var before = func(context *cli.Context) error {
debugEnabled := context.GlobalBool("debug")
if debugEnabled {
logrus.SetFormatter(&logrus.TextFormatter{ForceColors: true})
logrus.SetLevel(logrus.DebugLevel)
}
return nil
}
func CommandNotFound(c *cli.Context, command string) {
fmt.Fprintf(os.Stderr, "%s: '%s' is not a %s command. See '%s --help'.", c.App.Name, command, c.App.Name, c.App.Name)
os.Exit(2)
}