Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Sysmon Event ID 3 ASIM Parser #6888

Draft
wants to merge 94 commits into
base: master
Choose a base branch
from

Conversation

goosvorbook
Copy link
Contributor

Required items, please complete

Change(s):
Added Sysmon Event ID 3

Reason for Change(s):
Event ID 3 parser was not yet available

let NetworkEvents =
Sysmon3_NetworkEvent
| where Source == "Microsoft-Windows-Sysmon" and EventID==3 // we want to ensure we only have the Event table and not the WindowsEvent table
| invoke EventParser ()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to change, but there is no real reason for using a parser as a function in this case. You use it only once.

Copy link
Contributor

@oshezaf oshezaf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More changes

SourcePort:int,
DestinationIsIpv6:bool,
DestinationPort:int,
DestinationHostname:string,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still parsed twice. Not the only one.

DstIpAddr = DestinationIp,
SrcHostname = SourceHostname,
DstHostname = DestinationHostname
| where
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This condition is not needed. Prefiltering above, and post-filtering later on.

@v-atulyadav
Copy link
Contributor

Hi @goosvorbook, update your branch from master and push it again. Thanks
Hi @oshezaf, the author has provided fixes, please review them. Thanks

@devikamehra devikamehra marked this pull request as draft July 6, 2023 14:31
@devikamehra devikamehra removed their assignment Jul 27, 2023
@v-dvedak v-dvedak assigned v-atulyadav and unassigned v-mchatla May 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants