Skip to content

Instantly share code, notes, and snippets.

@jasonadsit
Created January 11, 2021 23:20
Show Gist options
  • Select an option

  • Save jasonadsit/51745111318bcfe9e1b2e19ec77fd58d to your computer and use it in GitHub Desktop.

Select an option

Save jasonadsit/51745111318bcfe9e1b2e19ec77fd58d to your computer and use it in GitHub Desktop.
ZeekConnLogToObjects.ps1
Get-ChildItem -Filter conn.log*.log |
Get-Content |
Where-Object { $_ -notmatch '#' } |
ConvertFrom-Csv -Delimiter "`t" -Header 'ts','uid','id.orig_h','id.orig_p','id.resp_h',
'id.resp_p','proto','service','duration','orig_bytes',
'resp_bytes','conn_state','local_orig','local_resp',
'missed_bytes','history','orig_pkts','orig_ip_bytes',
'resp_pkts','resp_ip_bytes','tunnel_parents'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment