Skip to content

WEC mode "aggregated EVTX" #44

Answered by wagga40
Skyw3lker asked this question in Q&A
Discussion options

You must be logged in to vote

Hello,

Since your VM have limited RAM compared to the size of your aggregated EVTX file, you should try to split the file. One way to do it is to convert the EVTX file to JSON, split this file and handling each resulting split file separately.

On your Linux VM or on your Windows 10 VM (with WSL2) in the Zircolite directory :

  • Convert the EVTX to JSON (Windows 10 VM will be faster):
./bin/evtx_dump_lin -o jsonl YOUR_FILE.evtx -f YOUR_FILE.evtx.json # Linux

# or

./bin/evtx_dump_win -o jsonl YOUR_FILE.evtx -f YOUR_FILE.evtx.json # Windows
  • Split your JSON file (Linux or Windows 10 VM with WSL2):
split YOUR_FILE.evtx.json SplitJson -b 2G -a 5 -d --additional-suffix=.json 

# the value pro…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by wagga40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants