change from lagotto to hayabusa. (#170)
This commit is contained in:
@@ -39,9 +39,9 @@ fn build_app<'a>() -> ArgMatches<'a> {
|
||||
}
|
||||
|
||||
App::new(&program)
|
||||
.about("Lagotto. Aiming to be the world's greatest Windows event log analysis tool!")
|
||||
.about("hayabusa. Aiming to be the world's greatest Windows event log analysis tool!")
|
||||
.version("1.0.0")
|
||||
.author("Author name Yamato-Security(https://github.com/Yamato-Security/YamatoEventAnalyzer)")
|
||||
.author("Author name Yamato-Security(https://github.com/Yamato-Security/hayabusa)")
|
||||
.setting(AppSettings::VersionlessSubcommands)
|
||||
.arg(Arg::from_usage("-f --filepath=[FILEPATH] 'Event file path'"))
|
||||
.arg(Arg::from_usage("--csv-timeline=[CSV_TIMELINE] 'Csv output timeline'"))
|
||||
|
||||
+6
-6
@@ -2,12 +2,12 @@ extern crate serde;
|
||||
extern crate serde_derive;
|
||||
|
||||
use evtx::{EvtxParser, ParserSettings};
|
||||
use lagotto::detections::detection;
|
||||
use lagotto::detections::detection::EvtxRecordInfo;
|
||||
use lagotto::detections::print::AlertMessage;
|
||||
use lagotto::omikuji::Omikuji;
|
||||
use lagotto::{afterfact::after_fact, detections::utils};
|
||||
use lagotto::{detections::configs, timeline::timeline::Timeline};
|
||||
use hayabusa::detections::detection;
|
||||
use hayabusa::detections::detection::EvtxRecordInfo;
|
||||
use hayabusa::detections::print::AlertMessage;
|
||||
use hayabusa::omikuji::Omikuji;
|
||||
use hayabusa::{afterfact::after_fact, detections::utils};
|
||||
use hayabusa::{detections::configs, timeline::timeline::Timeline};
|
||||
use std::{
|
||||
fs::{self, File},
|
||||
path::PathBuf,
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ impl SlackNotify {
|
||||
let p = PayloadBuilder::new()
|
||||
.text(msg)
|
||||
.channel(channel)
|
||||
.username("Lagotto Notify Bot")
|
||||
.username("hayabusa Notify Bot")
|
||||
.icon_emoji(":scream:")
|
||||
.build()
|
||||
.unwrap();
|
||||
|
||||
Reference in New Issue
Block a user