From f09f4a84225d27f6d742e64cf4f0fa2b29dbb1d6 Mon Sep 17 00:00:00 2001 From: tsalvia Date: Fri, 31 May 2019 13:04:40 +0900 Subject: [PATCH] [Modify] rename this project --- README.md | 12 ++++++------ evtxdump.go => evtx2jsons.go | 0 2 files changed, 6 insertions(+), 6 deletions(-) rename evtxdump.go => evtx2jsons.go (100%) diff --git a/README.md b/README.md index 749564d..5ce7e22 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# evtxdump +# evtx2jsons Parse the EVTX file and output it in JSON format. @@ -6,13 +6,13 @@ Parse the EVTX file and output it in JSON format. ``` go get -u github.com/0xrawsec/golang-evtx/evtx -go build evtxdump.go +go build evtx2jsons.go ``` ## Usage ``` -$ evtxdump.exe -i Security.evtx +$ evtx2jsons.exe -i Security.evtx ``` ## Options @@ -38,15 +38,15 @@ $ evtxdump.exe -i Security.evtx 1. Basic Usage ``` - $ evtxdump.exe -i Security.evtx + $ evtx2jsons.exe -i Security.evtx ``` 2. Specify the event IDs you want to output. ``` - $ evtxdump.exe -i Security.evtx -ids 4624,4625,1102 + $ evtx2jsons.exe -i Security.evtx -ids 4624,4625,1102 ``` 3. Specify the destination directory. ``` - $ evtxdump.exe -i Security.evtx -d output/jsons + $ evtx2jsons.exe -i Security.evtx -d output/jsons ``` \ No newline at end of file diff --git a/evtxdump.go b/evtx2jsons.go similarity index 100% rename from evtxdump.go rename to evtx2jsons.go