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
//! Argument definitions. Nothing here reaches into `elasticctl-api`.
use clap::{Parser, Subcommand};
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"),
)),
}
}
}
#[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 rules as code
State {
#[command(subcommand)]
action: StateAction,
},
/// 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>,
},
/// 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,
},
/// 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,
},
}
#[derive(Debug, Subcommand)]
pub enum StateAction {
/// Write live rules to a directory. Pulls every rule unless selectors or
/// --tag narrow it.
Pull {
/// Rule ids or names to pull. Omit to pull every rule.
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>,
},
/// Show field-level drift between the directory and the stack. Compares
/// every rule unless selectors or --tag narrow it.
Diff {
/// Rule ids or names to compare. Omit to compare every rule.
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>,
},
/// Apply the directory's rules to the stack. Applies every rule unless
/// selectors or --tag narrow it.
Push {
/// Rule ids or names to apply. Omit to apply every rule.
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>,
},
}
#[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,
}