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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
//! 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;
/// Reject an empty or whitespace-only `--search`, which would otherwise widen a
/// scoped operation to every rule instead of narrowing it (spec 4.7).
fn non_empty(value: &str) -> Result<String, String> {
if value.trim().is_empty() {
Err("value must not be empty".into())
} else {
Ok(value.to_string())
}
}
#[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 Kibana data views
DataViews {
#[command(subcommand)]
action: DataViewsAction,
},
/// Manage rules as code
State {
#[command(subcommand)]
action: StateAction,
},
/// Run ES|QL or Query DSL against Elasticsearch data
Search {
#[command(subcommand)]
action: SearchAction,
},
/// Triage detection alerts
Alerts {
#[command(subcommand)]
action: AlertsAction,
},
/// Track investigations as cases
Cases {
#[command(subcommand)]
action: CasesAction,
},
/// 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>,
/// Friendly name-substring + tag search, mutually exclusive with --filter
#[arg(long, conflicts_with = "filter", value_parser = non_empty)]
search: 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>,
/// Friendly name-substring search
#[arg(long, value_parser = non_empty)]
search: 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 DataViewsAction {
/// List data views
List {
/// Case-insensitive substring over id, name, and title
#[arg(long, value_parser = non_empty)]
search: Option<String>,
},
/// Show one data view by id or exact name
Get { selector: String },
/// Check a portable data-view file without contacting a server
Validate {
#[arg(long)]
path: PathBuf,
},
/// Export portable data views
Export {
/// Data-view ids or exact names. Omit to export every data view.
selectors: Vec<String>,
/// File format: json or yaml. This is separate from the global renderer.
#[arg(long = "format-file", default_value = "json")]
format_file: String,
},
/// Import portable data views
Import {
#[arg(long)]
path: PathBuf,
/// Replace data views that already exist
#[arg(long, conflicts_with = "skip_existing")]
overwrite: bool,
/// Leave data views that already exist alone instead of failing
#[arg(long, conflicts_with = "overwrite")]
skip_existing: bool,
},
/// Delete unreferenced data views, or replace their references first
Delete {
/// Data-view ids or exact names
#[arg(required = true)]
selectors: Vec<String>,
/// Target data view for replacing saved-object references
#[arg(long)]
replace_with: Option<String>,
},
/// Get, set, or unset the default data view
Default {
#[command(subcommand)]
action: DataViewDefaultAction,
},
}
#[derive(Debug, Subcommand)]
pub enum DataViewDefaultAction {
/// Show the current default data view
Get,
/// Set the current default data view
Set { selector: String },
/// Explicitly clear the current default data view
Unset,
}
#[derive(Debug, Subcommand)]
pub enum StateAction {
/// Write live rules to a directory. Without selectors, --tag, or --search,
/// pulls the active --source scope.
Pull {
/// Rule ids or names to pull. Omit with no --tag/--search 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>,
/// Pull every rule whose name contains this text or carries it as a tag
#[arg(long, value_parser = non_empty)]
search: Option<String>,
/// Source scope used when selectors, --tag, and --search are absent
#[arg(long, value_enum, default_value = "custom")]
source: SourceArg,
},
/// Show field-level drift between the directory and the stack. Without
/// selectors, --tag, or --search, compares the active --source scope.
Diff {
/// Rule ids or names to compare. Omit with no --tag/--search 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>,
/// Compare every rule whose name contains this text or carries it as a tag
#[arg(long, value_parser = non_empty)]
search: Option<String>,
/// Source scope used when selectors, --tag, and --search are absent
#[arg(long, value_enum, default_value = "custom")]
source: SourceArg,
},
/// Apply the directory's rules to the stack. Without selectors, --tag, or
/// --search, applies the active --source scope.
Push {
/// Rule ids or names to apply. Omit with no --tag/--search 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>,
/// Apply every rule whose name contains this text or carries it as a tag
#[arg(long, value_parser = non_empty)]
search: Option<String>,
/// Source scope used when selectors, --tag, and --search 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>,
/// Add `_id`, `_index`, and `_score` to each rendered row
#[arg(long)]
with_meta: bool,
},
}
#[derive(Debug, Subcommand)]
pub enum AlertsAction {
/// List detection alerts
List {
/// Filter by workflow status
#[arg(long, value_parser = ["open", "acknowledged", "closed"])]
status: Option<String>,
/// Filter by severity
#[arg(long)]
severity: Option<String>,
/// Filter by rule name or rule_id
#[arg(long)]
rule: Option<String>,
/// Filter by workflow tag
#[arg(long)]
tag: Option<String>,
/// Filter by assignee username, or uid:<profile_uid>
#[arg(long)]
assignee: Option<String>,
/// Only alerts newer than a duration (90m, 24h, 7d) or an ISO timestamp
#[arg(long)]
since: Option<String>,
/// Substring match on the rule name and reason text
#[arg(long)]
search: Option<String>,
/// Cap the rows returned (peek default: 100; --out is uncapped)
#[arg(long)]
limit: Option<usize>,
/// Merge _id into each alert document
#[arg(long)]
with_meta: bool,
},
/// Show one alert by document id
Get {
/// The alert document _id
alert_id: String,
},
/// Acknowledge alerts, by id or by query
Ack {
/// Alert document ids
#[arg(conflicts_with = "query", required_unless_present = "query")]
alert_ids: Vec<String>,
/// Query DSL selecting the alerts: inline JSON or @file
#[arg(long)]
query: Option<String>,
},
/// Reopen alerts, by id or by query
Open {
/// Alert document ids
#[arg(conflicts_with = "query", required_unless_present = "query")]
alert_ids: Vec<String>,
/// Query DSL selecting the alerts: inline JSON or @file
#[arg(long)]
query: Option<String>,
},
/// Close alerts, by id or by query
Close {
/// Alert document ids
#[arg(conflicts_with = "query", required_unless_present = "query")]
alert_ids: Vec<String>,
/// Query DSL selecting the alerts: inline JSON or @file
#[arg(long)]
query: Option<String>,
/// Close reason recorded on each alert
#[arg(long)]
reason: Option<String>,
/// On a version conflict: abort (default) or proceed
#[arg(long, value_parser = ["abort", "proceed"])]
conflicts: Option<String>,
},
/// Add or remove workflow tags on alerts
Tag {
/// Alert document ids
#[arg(required = true)]
alert_ids: Vec<String>,
/// Tag to add (repeatable)
#[arg(long)]
add: Vec<String>,
/// Tag to remove (repeatable)
#[arg(long)]
remove: Vec<String>,
},
/// Assign or unassign users on alerts
Assign {
/// Alert document ids
#[arg(required = true)]
alert_ids: Vec<String>,
/// Username or uid:<profile_uid> to assign (repeatable)
#[arg(long)]
add: Vec<String>,
/// Username or uid:<profile_uid> to unassign (repeatable)
#[arg(long)]
remove: Vec<String>,
},
}
#[derive(Debug, Subcommand)]
pub enum CasesAction {
/// List cases
List {
/// Filter by status
#[arg(long, value_parser = ["open", "in-progress", "closed"])]
status: Option<String>,
/// Filter by severity
#[arg(long)]
severity: Option<String>,
/// Filter by tag
#[arg(long)]
tag: Option<String>,
/// Substring match on title and description
#[arg(long)]
search: Option<String>,
/// Cap the rows returned (peek default: 100; --out is uncapped)
#[arg(long)]
limit: Option<usize>,
},
/// Show one case in full
Get {
/// The case id
case_id: String,
},
/// Create a case
Create {
/// The case title
#[arg(long)]
title: String,
/// The case description (defaults to the title)
#[arg(long)]
description: Option<String>,
/// Tag to set (repeatable)
#[arg(long)]
tag: Vec<String>,
/// Case severity
#[arg(long)]
severity: Option<String>,
/// Username or uid:<profile_uid> to assign (repeatable)
#[arg(long)]
assignee: Vec<String>,
},
/// Close cases
Close {
/// Case ids
#[arg(required = true)]
case_ids: Vec<String>,
},
/// Reopen cases
Open {
/// Case ids
#[arg(required = true)]
case_ids: Vec<String>,
},
/// Delete cases permanently
Delete {
/// Case ids
#[arg(required = true)]
case_ids: Vec<String>,
},
/// Attach alerts to a case
Attach {
/// The case id
case_id: String,
/// Alert document id to attach (repeatable)
#[arg(long, required = true)]
alert: Vec<String>,
},
/// Add a comment to a case
Comment {
/// The case id
case_id: String,
/// The comment text
#[arg(long)]
message: String,
},
}
#[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,
}