I'm trying to find a regex that will grab the string between the 4th and 4th colon.
Example event:
cpe:2.3:a:libexpat_project:libexpat:*:*:*:*:*:*:*:*
Expected outcome:
libexpat
Solution:
I used GROK to parse this out.
%{WORD}[:]%{BASE10NUM}[:]%{WORD}[:]%{WORD}[:]%{WORD:[software][name]}
Thank you!