-
Notifications
You must be signed in to change notification settings - Fork 520
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
[Rule Tuning] Linux DR Tuning - Part 5 #4422
base: main
Are you sure you want to change the base?
Conversation
Rule: Tuning - GuidelinesThese guidelines serve as a reminder set of considerations when tuning an existing rule. Documentation and Context
Rule Metadata Checks
Testing and Validation
|
@@ -162,6 +162,7 @@ file.path in ("/etc/rc.local", "/etc/rc.common") and not ( | |||
"/nix/store/*", "/var/lib/dpkg/*", "/snap/*", "/dev/fd/*", "/usr/lib/virtualbox/*" | |||
) or | |||
process.executable == null or | |||
process.name in ("ssm-agent-worker", "convert2rhel", "platform-python*") or |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ssm-agent-worker
may be related to user data scripts in AWS that are executed at launch. Its unlikely for these scripts to be compromised as they only run at deployment.
If someone used SSM to connect to and EC2 instance with the SSM agent installed and execute commands it would give them a full terminal and thus shouldn't reflect the call being made by the SSM agent.
Summary
Misc. Linux DR Tunings - Part 5.