Open
Description
This primarily comes from working with registry files, as there is just so much data displayed per key it makes analyzing a dump or working with hunts painful. I wrote the following JQ to get the data I like to see from the dump:
cat NTUSER.json | jq '.[] | {
time: .detail.Light.last_key_written_date_and_time.interpreted,
path: .path}
+ (if .sub_values then (.sub_values[] | {
type: .data_type,
name: .value_name,
value: .value
}) else {} end)'
I could see this being useful with the hunt, as it would be possible to create YML that just has a location like: SOFTWARE\Microsoft\Windows\CurrentVersion\Run
and be able to easily see all the startup items. Right now if you tried something like that there is way too much noise to make sense of any of the data.