change from lagotto to hayabusa. (#170)

This commit is contained in:
James
2021-11-09 00:32:24 +09:00
committed by GitHub
parent e7e86c23c0
commit c97cf7373a
6 changed files with 36 additions and 36 deletions
+2 -2
View File
@@ -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
View File
@@ -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
View File
@@ -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();