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
use crate::config::eve::EveConfiguration; use askama::Template; #[derive(Clone, Debug)] pub enum OutputType { Alert, Dns, Files, Flow, Http, Smtp, Stats, Tls, Other(String), } impl std::fmt::Display for OutputType { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { Self::Alert => write!(f, "Alert"), Self::Dns => write!(f, "Dns"), Self::Files => write!(f, "Files"), Self::Flow => write!(f, "Flow"), Self::Http => write!(f, "Http"), Self::Smtp => write!(f, "Smtp"), Self::Stats => write!(f, "Stats"), Self::Tls => write!(f, "Tls"), Self::Other(s) => write!(f, "{}", s), } } } pub trait Output { fn name(&self) -> &str; fn render_messages(&self) -> String; fn eve(&self) -> &EveConfiguration; fn output_type(&self) -> OutputType; } pub struct Alert { pub eve: EveConfiguration, } impl Alert { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Alert { fn name(&self) -> &str { "alert" } fn render_messages(&self) -> String { format!(" - {}", self.name()) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Alert } } pub struct Dns { pub eve: EveConfiguration, } impl Dns { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Dns { fn name(&self) -> &str { "dns" } fn render_messages(&self) -> String { format!(" - {}", self.name()) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Dns } } pub enum FileHash { MD5, Sha1, Sha256, } pub struct Files { pub eve: EveConfiguration, pub hashes: Vec<FileHash>, } impl Files { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve, hashes: vec![], } } } impl Output for Files { fn name(&self) -> &str { "files" } fn render_messages(&self) -> String { let force_hash = if !self.hashes.is_empty() { let hashes = self .hashes .iter() .map(|h| match h { FileHash::MD5 => "md5", FileHash::Sha1 => "sha1", FileHash::Sha256 => "sha256", }) .collect::<Vec<_>>() .join(","); format!("force-hash: [{}]", hashes) } else { "#force-hash: []".to_string() }; format!( r#" - {}: force-magic: no # force logging magic on all logged files # force logging of checksums, available hash functions are md5, # sha1 and sha256 {} "#, self.name(), force_hash ) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Files } } pub struct Flow { pub eve: EveConfiguration, } impl Flow { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Flow { fn name(&self) -> &str { "flow" } fn render_messages(&self) -> String { format!(" - {}", self.name()) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Flow } } #[derive(Clone, Debug)] pub enum DumpAllHeaders { Both, Request, Response, } #[derive(Template)] #[template(path = "http.yaml.in", escape = "none")] pub struct Http { pub eve: EveConfiguration, pub extended: bool, pub custom: Vec<String>, pub dump_all_headers: Option<DumpAllHeaders>, } impl Output for Http { fn name(&self) -> &str { "http" } fn render_messages(&self) -> String { self.render().unwrap() } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Http } } impl Http { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve, extended: false, custom: vec![], dump_all_headers: Some(DumpAllHeaders::Both), } } } pub struct Smtp { pub eve: EveConfiguration, } impl Smtp { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Smtp { fn name(&self) -> &str { "smtp" } fn render_messages(&self) -> String { format!(" - {}", self.name()) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Smtp } } pub struct Stats { eve: EveConfiguration, } impl Stats { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Stats { fn name(&self) -> &str { "stats" } fn render_messages(&self) -> String { format!( r#" - {}: enabled: yes totals: yes # stats for all threads merged together threads: no # per thread stats deltas: no # include delta values "#, self.name() ) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Stats } } pub struct Tls { pub eve: EveConfiguration, } impl Tls { pub fn new(eve: EveConfiguration) -> Self { Self { eve: eve } } } impl Output for Tls { fn name(&self) -> &str { "tls" } fn render_messages(&self) -> String { format!(" - {}", self.name()) } fn eve(&self) -> &EveConfiguration { &self.eve } fn output_type(&self) -> OutputType { OutputType::Tls } }