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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
//! Argument definitions. Nothing here reaches into `elasticctl-api`.
use clap::{Parser, Subcommand, ValueEnum};
use elasticctl_core::{Error, ErrorKind};
use std::path::PathBuf;
use std::str::FromStr;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum Format {
#[default]
Table,
Json,
Yaml,
Csv,
Jsonl,
}
impl FromStr for Format {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s.to_ascii_lowercase().as_str() {
"table" => Ok(Format::Table),
"json" => Ok(Format::Json),
"yaml" | "yml" => Ok(Format::Yaml),
"csv" => Ok(Format::Csv),
"jsonl" | "ndjson" => Ok(Format::Jsonl),
other => Err(Error::new(
ErrorKind::Error,
format!("unknown format '{other}'; expected table, json, yaml, csv, or jsonl"),
)),
}
}
}
/// The `--source` flag's values. The CLI-local enum keeps clap types out of
/// `-api`; `main` maps it to `elasticctl_api::rules::RuleSource`.
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum SourceArg {
Custom,
Customized,
Prebuilt,
All,
}
#[derive(Debug, Clone, Default, Parser)]
pub struct GlobalArgs {
/// Use a named profile
#[arg(long, global = true)]
pub profile: Option<String>,
/// Use a specific configuration file
#[arg(long, global = true)]
pub config: Option<PathBuf>,
/// Kibana space to operate in
#[arg(long, global = true)]
pub space: Option<String>,
/// Force JSON output
#[arg(long, global = true)]
pub json: bool,
/// Output format: table, json, yaml, csv, jsonl
#[arg(long, global = true)]
pub format: Option<Format>,
/// Comma-separated fields to include
#[arg(long, global = true)]
pub fields: Option<String>,
/// Write output to a file instead of stdout
#[arg(long, global = true)]
pub out: Option<PathBuf>,
/// Apply a mutation after reviewing its preview
#[arg(long, short = 'y', global = true)]
pub yes: bool,
/// Request timeout in seconds
#[arg(long, global = true)]
pub timeout: Option<u64>,
/// Log HTTP requests and responses, with secrets redacted
#[arg(long, global = true)]
pub debug: bool,
}
impl GlobalArgs {
/// `--json` is a shorthand that wins over `--format`, so a script can force
/// JSON without knowing what else was configured.
pub fn effective_format(&self) -> Format {
if self.json {
Format::Json
} else {
self.format.unwrap_or_default()
}
}
}
#[derive(Debug, Parser)]
#[command(
name = "elasticctl",
version,
about = "Operate Elastic Security as code"
)]
pub struct Cli {
#[command(flatten)]
pub global: GlobalArgs,
#[command(subcommand)]
pub command: Command,
}
#[derive(Debug, Subcommand)]
pub enum Command {
/// Manage connection profiles
Config {
#[command(subcommand)]
action: ConfigAction,
},
/// Check connectivity, authentication, key scope, and rule access
Doctor,
/// Show stack version, flavor, license tier, and spaces
Info,
/// Manage detection rules
Rules {
#[command(subcommand)]
action: RulesAction,
},
/// Manage exception lists
Exceptions {
#[command(subcommand)]
action: ExceptionsAction,
},
/// Manage rules as code
State {
#[command(subcommand)]
action: StateAction,
},
/// Run ES|QL or Query DSL against Elasticsearch data
Search {
#[command(subcommand)]
action: SearchAction,
},
/// Generate a shell completion script
Completion {
#[arg(value_enum)]
shell: clap_complete::Shell,
},
/// Emit the command tree as JSON
Commands,
}
#[derive(Debug, Subcommand)]
pub enum RulesAction {
/// List detection rules
List {
#[arg(long)]
enabled: bool,
#[arg(long)]
disabled: bool,
#[arg(long = "type")]
rule_type: Option<String>,
#[arg(long)]
severity: Option<String>,
#[arg(long)]
tag: Option<String>,
/// Raw KQL, combined with the other filters
#[arg(long)]
filter: Option<String>,
/// Which rules to list: custom, customized, prebuilt, or all
#[arg(long, value_enum, default_value = "all")]
source: SourceArg,
},
/// Show one rule by rule_id or name. rule_id is tried first: if the
/// selector happens to be both a valid rule_id and a different rule's
/// name, the rule_id match wins.
Get { selector: String },
/// Check a rule file without contacting a server
Validate {
#[arg(long)]
path: std::path::PathBuf,
},
/// Enable one or more rules
Enable { selectors: Vec<String> },
/// Disable one or more rules
Disable { selectors: Vec<String> },
/// Delete one or more rules
Delete { selectors: Vec<String> },
/// Export rules to a file or stdout. Exports every rule unless selectors
/// or --tag narrow it.
Export {
/// Rule ids or names to export. Omit to export every rule.
selectors: Vec<String>,
/// Export every rule carrying this tag, in addition to any selectors
#[arg(long)]
tag: Option<String>,
/// File format: ndjson or yaml. Distinct from the global --format,
/// which renders this command's own report, not the exported file.
#[arg(long = "format-file", default_value = "ndjson")]
format_file: String,
/// Which rules to export: custom, customized, prebuilt, or all
#[arg(long, value_enum, default_value = "all")]
source: SourceArg,
},
/// Import rules from a file
Import {
#[arg(long)]
path: std::path::PathBuf,
/// Replace rules that already exist
#[arg(long)]
overwrite: bool,
/// Leave rules that already exist alone instead of failing on them
#[arg(long, conflicts_with = "overwrite")]
skip_existing: bool,
},
/// Run a rule against history without writing alerts
Preview {
/// A file path, rule_id, or rule name
source: String,
/// Number of simulated rule executions
#[arg(long, default_value = "1")]
invocations: u32,
/// Return up to N matched documents alongside the count
#[arg(long, default_value = "0")]
sample: u32,
},
/// Report on and install Elastic's prebuilt rules
Prebuilt {
#[command(subcommand)]
action: PrebuiltAction,
},
}
#[derive(Debug, Subcommand)]
pub enum PrebuiltAction {
/// Report installed, missing, outdated, and customized prebuilt rules
Status,
/// Install missing and update outdated prebuilt rules
Install,
}
#[derive(Debug, Subcommand)]
pub enum ExceptionsAction {
/// List exception list containers
List {
#[arg(long = "type")]
list_type: Option<String>,
#[arg(long)]
tag: Option<String>,
#[arg(long, value_parser = ["single", "agnostic"])]
namespace: Option<String>,
},
/// Show one container and its items
Get {
list_id: String,
#[arg(long, value_parser = ["single", "agnostic"])]
namespace: Option<String>,
},
/// Check a file without contacting the server
Validate {
#[arg(long)]
path: PathBuf,
},
/// Export containers and their items
Export {
/// `list_id` values to export. Omit to export every list
list_ids: Vec<String>,
/// Export every list carrying this tag, in addition to any selectors
#[arg(long)]
tag: Option<String>,
#[arg(long, value_parser = ["single", "agnostic"])]
namespace: Option<String>,
/// File format: ndjson or yaml. Distinct from the global --format,
/// which renders this command's own report, not the exported file.
#[arg(long = "format-file", default_value = "ndjson")]
format_file: String,
},
/// Import containers and items from a file
Import {
#[arg(long)]
path: PathBuf,
/// Replace lists that already exist
#[arg(long)]
overwrite: bool,
/// Leave lists that already exist alone instead of failing on them
#[arg(long, conflicts_with = "overwrite")]
skip_existing: bool,
},
/// Delete containers and their items
Delete {
list_ids: Vec<String>,
#[arg(long, value_parser = ["single", "agnostic"])]
namespace: Option<String>,
},
}
#[derive(Debug, Subcommand)]
pub enum StateAction {
/// Write live rules to a directory. Without selectors or --tag, pulls the
/// active --source scope.
Pull {
/// Rule ids or names to pull. Omit with no --tag to use --source.
selectors: Vec<String>,
#[arg(long)]
dir: std::path::PathBuf,
#[arg(long = "format-file", default_value = "ndjson")]
format_file: String,
/// Pull every rule carrying this tag, in addition to any selectors
#[arg(long)]
tag: Option<String>,
/// Source scope used when selectors and --tag are absent
#[arg(long, value_enum, default_value = "custom")]
source: SourceArg,
},
/// Show field-level drift between the directory and the stack. Without
/// selectors or --tag, compares the active --source scope.
Diff {
/// Rule ids or names to compare. Omit with no --tag to use --source.
selectors: Vec<String>,
#[arg(long)]
dir: std::path::PathBuf,
/// Compare every rule carrying this tag, in addition to any selectors
#[arg(long)]
tag: Option<String>,
/// Source scope used when selectors and --tag are absent
#[arg(long, value_enum, default_value = "custom")]
source: SourceArg,
},
/// Apply the directory's rules to the stack. Without selectors or --tag,
/// applies the active --source scope.
Push {
/// Rule ids or names to apply. Omit with no --tag to use --source.
selectors: Vec<String>,
#[arg(long)]
dir: std::path::PathBuf,
/// Write a change-evidence report
#[arg(long)]
report: Option<std::path::PathBuf>,
/// Apply every rule carrying this tag, in addition to any selectors
#[arg(long)]
tag: Option<String>,
/// Source scope used when selectors and --tag are absent
#[arg(long, value_enum, default_value = "custom")]
source: SourceArg,
},
}
#[derive(Debug, Subcommand)]
pub enum SearchAction {
/// Run an ES|QL query
Esql {
/// The ES|QL query text
query: String,
/// Resolve a Kibana data view to an index pattern
#[arg(long, conflicts_with = "index")]
data_view: Option<String>,
/// Explicit index or alias, overrides the query's own source
#[arg(long, conflicts_with = "data_view")]
index: Option<String>,
/// Cap the number of result rows
#[arg(long)]
limit: Option<usize>,
},
/// Run a Query DSL search body
Dsl {
/// JSON body or @path
body: String,
/// Resolve a Kibana data view to an index pattern
#[arg(long, conflicts_with = "index")]
data_view: Option<String>,
/// Explicit index or alias
#[arg(long, conflicts_with = "data_view")]
index: Option<String>,
/// Cap the number of result rows
#[arg(long)]
limit: Option<usize>,
},
}
#[derive(Debug, Subcommand)]
pub enum ConfigAction {
/// Create or replace a profile
Init {
/// Profile name; defaults to "default"
#[arg(long)]
name: Option<String>,
/// Take values from ELASTICCTL_* environment variables
#[arg(long)]
from_env: bool,
},
/// List configured profiles
List,
/// Show one profile, with secrets redacted
Show,
/// Verify the profile can reach and authenticate to the stack
Test,
}