SOLVED

Runtime transformation in Sentinel

Copper Contributor

I want to exclude windows EventID 4663 and ObjectType =file using runtime transformation. I applied below:

 

| where EventID != 4663 and ObjectType != "File"

 

but it removes all 4663 events rather removing based on objecttype which I made combination with eventid. please help. Thanks 

2 Replies

@securityxpert1122 

 

You want this 

 

| where not(EventID == 4663 and ObjectType == "File")

best response confirmed by securityxpert1122 (Copper Contributor)
Solution

yes, thats exactly I wanted. Thank you so much for your help.

1 best response

Accepted Solutions
best response confirmed by securityxpert1122 (Copper Contributor)
Solution

yes, thats exactly I wanted. Thank you so much for your help.

View solution in original post