diff --git a/src/detections/system.rs b/src/detections/system.rs index c456f777..b84a3c2c 100644 --- a/src/detections/system.rs +++ b/src/detections/system.rs @@ -25,27 +25,18 @@ impl System { if event_id != "7045" { return } - - println!("Message : System Log Clear"); - println!("Results : The System log was cleared."); } fn interactive_service_warning(&mut self, event_id: &String) { if event_id != "7030" { return } - - println!("Message : System Log Clear"); - println!("Results : The System log was cleared."); } fn suspicious_service_name(&mut self, event_id: &String) { if event_id != "7036" { return } - - println!("Message : System Log Clear"); - println!("Results : The System log was cleared."); } fn system_log_clear(&mut self, event_id: &String) {