-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add usage * fix usage and adapt markdown lint #26 Co-authored-by: Alan Smithee <[email protected]>
- Loading branch information
Showing
1 changed file
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,39 @@ | ||
# RustyBlue | ||
# RustyBlue | ||
|
||
RustyBlue is a software ported from DeepBlueCLI in Rust language. We admire the DeepBlueCLI. | ||
|
||
RustyBlueはDeepBlueCLIをRust言語で移植されたソフトです。私たちは、DeepBlueCLIを称賛しています。 | ||
RustyBlueはDeepBlueCLIをRust言語で移植されたソフトです。私たちは、DeepBlueCLIを称賛しています。 | ||
|
||
## Usage | ||
|
||
````````````````````` | ||
-f --filepath=[FILEPATH] 'analyze event file' | ||
-d --dirpath=[DIRECTORYPATH] 'analyze event log files in directory' | ||
-c --credits 'print credits infomation' | ||
````````````````````` | ||
|
||
## Usage Example | ||
|
||
### Analysis one event log for specified path | ||
|
||
コンパイルされたバイナリを使用する場合、下記のようなコマンドで実行することができます。 | ||
|
||
`````````` | ||
rusty_blue.exe --filepath=C:\Users\user\Downloads\security.evtx | ||
`````````` | ||
|
||
### Analysis recusively all event logs in specified directory | ||
|
||
コンパイルされたバイナリを使用する場合、下記のようなコマンドで実行することができます。 | ||
|
||
`````````` | ||
rusty_blue.exe --dirpath=C:\Users\user\Downloads | ||
`````````` | ||
|
||
### Build from source code | ||
|
||
以下コマンドでcloneしたソースコードからコンパイルすることができます。Rustのコンパイル環境をローカル環境に導入していることが条件です。 | ||
|
||
`````````` | ||
cargo build --release | ||
`````````` |