So i know you could filter by a Source IP Address. But what if you want to filter by a range of Source IP address. i tried
<QueryList>
<Query Id="0" Path="Security">
<Select Path="Security">*[System[(EventID=4624)]]
and
*[EventData[Data[@Name ='LogonType']='3']]
and
*[EventData[Data[@Name="IpAddress"] and (Data="10.10.22.xxx")]]
</Select>
</Query>
</QueryList>
and
<QueryList>
<Query Id="0" Path="Security">
<Select Path="Security">*[System[(EventID=4624)]]
and
*[EventData[Data[@Name ='LogonType']='3']]
and
*[EventData[Data[@Name="IpAddress"] and (Data="10.10.22.*")]]
</Select>
</Query>
</QueryList>
Both doesn't work =(