-
Notifications
You must be signed in to change notification settings - Fork 203
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
Enable scan wizard by default #1188
Comments
hitenkoku
added a commit
that referenced
this issue
Oct 18, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 18, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 18, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 18, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 18, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 19, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 19, 2023
YamatoSecurity
changed the title
Ask the user which sigma rules they want to enable by default.
Enable scan wizard by default
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 20, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 21, 2023
hitenkoku
added a commit
that referenced
this issue
Oct 21, 2023
hitenkoku
added a commit
that referenced
this issue
Nov 17, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is common for users to complain about false positives when using sigma rules so now sigma has officially organized their rules based on their reliability/chance of FPs.
Here is the article for more information: https://medium.com/sigma-hq/introducing-sigma-rule-packages-releases-76043ce42e81
In summary:
In the
csv-timeline
,json-timeline
,pivot-keywords-list
commands, I want to ask the user which set of rules they want to use:If the user specifies a number other than between 1-5, print the error message:
You need to specify a number 1-5.
If the user specifies something other than
y
orn
, then print the error message:You need to specify 'y' or 'n' for 'yes' or 'no'
. If the user just hits Enter, then the default option is the upper case character.If the user specifies to include ET rules, then we include rules with a tag of
detection.emerging_threats
. If the user specifiesn
to ET rules, then all rules with a tag ofdetection.emerging_threats
are excluded.If the user specifies to include TH rules, then we include rules with a tag of
detection.threat_hunting
. If the user specifiesn
to TH rules, then all rules with a tag ofdetection.threat_hunting
are excluded.When 4 or 5 is specified, then we do not ask the user:
By default, we include all rules regardless of tags.
Under
General Options
, add-a, --no-asking Do not ask questions. Scan for all events and alerts.
option. This will run Hayabusa in the traditional way.The number and percent of rules loaded should be calculated based on what rules were actually loaded:
※ Similar to this issue: #1039
The text was updated successfully, but these errors were encountered: