XML parser help

Hi, i have exported windows Sysmon event logs as XML (as attached) having problems with parsing the part, the Xpath query depends on the number, well, not all logs have the same Data Names with the same order… Is there a way to have a proper parsing with proper field names in single quotes?

/Events/dns:Event/dns:EventData/dns:Data/@Name
/Events/dns:Event/dns:EventData/dns:Data[2]/@Name

22 5 4 22 0 0x8000000000000000 26262 Microsoft-Windows-Sysmon/Operational MIA - 2022-09-02 11:55:13.779 {c91f4696-ef21-6311-1c07-000000006300} 33080 rog-live-service.asus.com 0 type: 5 rogs.japanwest.cloudapp.azure.com;::ffff:20.47.66.37; C:\Program Files (x86)\ASUS\Update\AsusUpdate.exe NT AUTHORITY\SYSTEM

sample sysmon.xml (3.3 KB)

Hi @hakandurgut

What is your expected output in this case? The Xpath queries you refer to relates to these fields, but I take it you want to find those based on their name (RuleName/ UtcTime)?

image

What do you mean with single quotes? Something like [@name=‘RuleName’] to search for the attribute name rather that based on it’s position in the xml?

Your description is not very comprehendible.

oh apologies for my poor expressions

what I am saying is,

if I want to parse xpath under /Events/dns:Event/dns:System without any problem, xpath has its field name

in this example it captures its own field name as EventRecordId

but within the /Events/dns:Event/dns:EventData,

Xpath can only be like

/Events/dns:Event/dns:EventData/dns:Data[6]/@Name
/Events/dns:Event/dns:EventData/dns:Data[7]/@Name
/Events/dns:Event/dns:EventData/dns:Data[9]/@Name

I want to parse them by Data Name values

e.g. if I want to parse

MIRA\hakan
the Xpath will look like
/Events/dns:Event/dns:EventData/dns:Data[13]/@Name
in an other event the 13th. Xpath may be a different field

I am sorry I dont know the right XML terminology to express my question :slight_smile:
Sysmon Event Logs XML.knwf (15.7 KB)

I see @hakandurgut. You are looking for:

/Events/dns:Event/dns:EventData/dns:Data[@Name="User"]

That will extract all information where Data Name="User" within each EventData section.

You can use a similar approach for equivelant fields.

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.