Analyzing logs
Structure
After the behavioral analysis, you can download the analysis results which include:
events-correlated.log.gz- verdicts. In this case,Trojan.Win32.Generic.a;tcpdump.pcap- a file with network events inpcapformat;events-normalized.log.gz- enriched events received from the analysis system;drakvuf-trace.log.zst- raw data from the analysis system;

How to analyze
Just call the conv (or unpack) option and specify the file with the downloaded logs. In this case, sandbox_logs.zip:
sandbox-cli conv sandbox_logs.zip
[INFO] Unpacking sandbox_logs.zip
[INFO] Unpacking sandbox_logs.zip
The sandbox-cli unpacks logs into a convenient format, decomposes events by plugins, structures output, etc.
tree
sandbox_logs
├── correlated
│ ├── events-correlated.log
│ ├── events-correlated.log.malware
│ └── events-correlated.log.suspicious.Read.File.Data.DLLHijackMapSystem
├── drakvuf-trace
│ └── drakvuf-trace.log
├── network
│ └── tcpdump.pcap
├── normalized
│ ├── events-normalized.log
│ ├── events-normalized.log.apimon
│ ├── events-normalized.log.cpuidmon
│ └── events-normalized.log.syscall
└── raw
├── drakvuf-trace.log.zst
├── events-correlated.log.gz
├── events-normalized.log.gz
└── tcpdump.pcap
Note
The output is greatly reduced because a lot of information is collected under Windows
Now you can easily find a suspicious event and analyze it.
event
{
"object.path": "users\\jamie\\desktop\\malware.dll",
"process.id": "2828",
"process.name": "users\\jamie\\desktop\\malware.exe",
"weight": 10,
"unixtime": "1741811223.840229",
"detect.name": "Read.File.Data.DLLHijackMapSystem",
"detect.type": "suspicious",
"mitre.tid": "T1574"
}
Tip
You can specify not only one file, but also several in a row if you need to parse several logs.
Help
sandbox-cli conv --help
Usage: sandbox-cli conv TRACES
Convert sandbox logs into an analysis-friendly format.
╭─ Arguments ──────────────────────────────────────────────────────────────────╮
│ * TRACES The path to the folder with the raw traces or with the │
│ sandbox-logs.zip [required] │
╰──────────────────────────────────────────────────────────────────────────────╯
Usage: sandbox-cli conv TRACES
Convert sandbox logs into an analysis-friendly format.
╭─ Arguments ──────────────────────────────────────────────────────────────────╮
│ * TRACES The path to the folder with the raw traces or with the │
│ sandbox-logs.zip [required] │
╰──────────────────────────────────────────────────────────────────────────────╯