-
Notifications
You must be signed in to change notification settings - Fork 7
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
Possible evtx-sigma-checker Issue #6
Comments
Hi, This sounds interesting. Maybe there's a difference in formatting from different sources (ETW versus EVTX files)? Could you send me an EVTX file with the event you described? |
Access-Password-File-TruePositive.zip
exclude: |
Thanks for the file! So access mask and process ID both get formatted as decimal numbers here, not as hex numbers. Probably the formatting information gets lost in the EVTX parser. |
Okay, unfortunately, the formatting information isn't available in the EVTX file: it's part of the manifests that describe the events, which are separate and only available on Windows. The evtx-sigma-checker (since it's OS independent) can't use those. |
@secDre4mer Thank you, appreciate your great support! |
New release that contains the fix is now available. |
Hello,
I've noticed that evtx-sigma-checker is not reading the value of ProcessId and AccessMask as strings, meanwhile Aurora detects the following example rule as string and works perfectly:
Sigma working with Aurora
EventID: 4663
ObjectType: 'File'
ObjectServer: 'Security'
ProcessId: '0x4'
AccessMask: '0x1'
Sigma working with evtx-sigma-checker
EventID: 4663
ObjectType: 'File'
ObjectServer: 'Security'
ProcessId: 0x4
AccessMask: 0x1
It could be an issue from my end or from the compiled evtx-sigma-checker
thanks in advance
The text was updated successfully, but these errors were encountered: