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

Integrate Sigma Rules parser for importing rules based on Sigma schema-part2 #8

Merged
merged 3 commits into from
Jul 14, 2022

Conversation

sbcd90
Copy link
Collaborator

@sbcd90 sbcd90 commented Jul 1, 2022

Description

integrate sigma rules parser

Issues Resolved

Rule curation layer(P0) & Rule ingestion layer(P0)

Check List

  • New functionality includes testing.
    • All tests pass
  • New functionality has been documented.
    • New functionality has javadoc added
  • Commits are signed per the DCO using --signoff

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

@sbcd90 sbcd90 requested review from a team, getsaurabh02 and lezzago July 1, 2022 20:59
Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>
@sbcd90 sbcd90 force-pushed the sigma_part2 branch 3 times, most recently from fe266c5 to 4adf093 Compare July 7, 2022 21:33
| NOT expression # notExpression
| left=expression operator=AND right=expression # andExpression
| left=expression operator=OR right=expression # orExpression
;
Copy link
Member

Choose a reason for hiding this comment

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

nit: do we need to add a new line at the end of file? Applicable across

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

fixed it

@@ -0,0 +1,5 @@
fieldmappings:
Copy link
Member

Choose a reason for hiding this comment

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

Since we will have multiple types of resources here, lets follow a directory path structure. Such as for one kind of mapping - resources/OSMapping/fieldmappings.yml

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

fixed it. kept the path hardcoded in code. will generalize it as i add the logic for selecting mapping type.

Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>
getsaurabh02
getsaurabh02 previously approved these changes Jul 13, 2022
Copy link
Member

@lezzago lezzago left a comment

Choose a reason for hiding this comment

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

looks good, just have some minor comments


@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class ConditionLexer extends Lexer {
static { RuntimeMetaData.checkVersion("4.10.1", RuntimeMetaData.VERSION); }
Copy link
Member

Choose a reason for hiding this comment

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

Should we have a constants file that stores this 4.10.1 version there so its easy to update?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

this is in a generated class using antlr. hence, did not change it.

Comment on lines +297 to +305
/* @Override
public Object convertConditionFieldEqValNull(ConditionFieldEqualsValueExpression condition) {
return null;
}

@Override
public Object convertConditionFieldEqValQueryExpr(ConditionFieldEqualsValueExpression condition) {
return null;
}*/
Copy link
Member

Choose a reason for hiding this comment

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

Remove commented code. If we want to comment it temporarily, add a TODO here

Copy link
Collaborator Author

@sbcd90 sbcd90 Jul 14, 2022

Choose a reason for hiding this comment

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

fixed it. added a TODO.

Comment on lines +322 to +325
/* @Override
public Object convertConditionValQueryExpr(ConditionValueExpression condition) {
return null;
}*/
Copy link
Member

Choose a reason for hiding this comment

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

Add TODO or remove

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

fixed it. added a TODO.

Comment on lines 184 to 186
}/* else if (condition.getValue() instanceof SigmaQueryExpression) {
return this.convertConditionFieldEqValQueryExpr(condition);
}*/ else if (condition.getValue() instanceof SigmaExpansion) {
Copy link
Member

Choose a reason for hiding this comment

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

Add TODO or remove commented code

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

fixed it. added a TODO.

Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>
@codecov-commenter
Copy link

codecov-commenter commented Jul 14, 2022

Codecov Report

Merging #8 (afb9404) into main (806eae0) will increase coverage by 12.13%.
The diff coverage is 75.76%.

@@              Coverage Diff              @@
##               main       #8       +/-   ##
=============================================
+ Coverage     65.05%   77.19%   +12.13%     
- Complexity       99      536      +437     
=============================================
  Files            26       72       +46     
  Lines           269     1609     +1340     
  Branches         60      338      +278     
=============================================
+ Hits            175     1242     +1067     
- Misses           73      225      +152     
- Partials         21      142      +121     
Impacted Files Coverage Δ
...alytics/rules/condition/ConditionBaseListener.java 0.00% <0.00%> (ø)
...rch/securityanalytics/rules/types/Placeholder.java 100.00% <ø> (+100.00%) ⬆️
...rch/securityanalytics/rules/types/SigmaNumber.java 72.72% <ø> (ø)
...nalytics/rules/condition/ConditionBaseVisitor.java 14.28% <14.28%> (ø)
...rityanalytics/rules/types/SigmaCIDRExpression.java 55.00% <55.00%> (ø)
...rityanalytics/rules/condition/ConditionParser.java 59.06% <59.06%> (ø)
...tics/rules/modifiers/SigmaWindowsDashModifier.java 63.63% <63.63%> (ø)
.../securityanalytics/rules/backend/QueryBackend.java 63.80% <63.80%> (ø)
...ecurityanalytics/rules/backend/OSQueryBackend.java 69.65% <69.65%> (ø)
...analytics/rules/modifiers/SigmaModifierFacade.java 70.68% <70.68%> (ø)
... and 54 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 806eae0...afb9404. Read the comment docs.

@sbcd90 sbcd90 merged commit a87c5c3 into opensearch-project:main Jul 14, 2022
okram pushed a commit to okram/security-analytics that referenced this pull request Jul 21, 2022
okram pushed a commit to okram/security-analytics that referenced this pull request Jul 21, 2022
sbcd90 added a commit to sbcd90/security-analytics that referenced this pull request Jul 11, 2023
Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>
jowg-amazon pushed a commit that referenced this pull request Jul 15, 2024
backport from origin 2.15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants