Alert When New Software is Installed

0

Is there a way to determine if new software gets installed on an EC2, then get alerted about it? I know config gives a timeline of inventory changes, but not exactly what I'm looking for. Any ideas?

1回答
1
承認された回答

Hello.

As you know, you can use AWS Config rules to notify you when unauthorized software is installed.
However, I think this rule would be difficult to handle if you want to be notified when new software is installed.
https://docs.aws.amazon.com/config/latest/developerguide/ec2-managedinstance-applications-required.html

If you use Amazon Inspector, it may be possible to notify you when software is installed.
https://docs.aws.amazon.com/inspector/latest/user/scanning-ec2.html

  • When you launch a new EC2 instance.
  • When you install new software on an existing EC2 instance (Linux and Mac).
  • When Amazon Inspector adds a new common vulnerabilities and exposures (CVE) item to its database, and that CVE is relevant to your EC2 instance (Linux and Mac).
profile picture
エキスパート
回答済み 3ヶ月前
profile picture
エキスパート
レビュー済み 2ヶ月前
profile pictureAWS
エキスパート
レビュー済み 3ヶ月前
  • I tried to create an event bridge rule:

    { "source": ["aws.inspector"], "detail-type": ["Inspector Assessment Run State Change"], "detail": { "state": ["COMPLETED"] } }

    Downloaded/installed docker on my linux 2 instance, but didn't seem to trigger the rule. Any ideas?

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ