AWS - Security Hub Enum

HackTricksのサポート

セキュリティハブ

セキュリティハブは、AWSアカウント、サービス、サポートされているサードパーティー製品からセキュリティデータを収集し、セキュリティの傾向を分析し、最優先のセキュリティ問題を特定するのに役立ちます。

セキュリティ関連のアラートをアカウント全体で集約し、これらを表示するためのUIを提供します。最大の制限は、リージョン全体ではなく、アカウント全体でアラートを集約することです。

特徴

  • リージョナル(調査結果はリージョンを越えない)

  • 複数アカウントのサポート

  • Guard Dutyからの調査結果

  • Configからの調査結果

  • Inspectorからの調査結果

  • Macieからの調査結果

  • サードパーティー

  • CIS標準に対する自己生成調査結果

列挙

# Get basic info
aws securityhub describe-hub

# Get securityhub org config
aws securityhub describe-organization-configuration #If the current account isn't the security hub admin, you will get an error

# Get the configured admin for securityhub
aws securityhub get-administrator-account
aws securityhub get-master-account # Another way
aws securityhub list-organization-admin-accounts # Another way

# Get enabled standards
aws securityhub get-enabled-standards

# Get the findings
aws securityhub get-findings

# Get insights
aws securityhub get-insights

# Get Automation rules (must be from the admin account)
aws securityhub list-automation-rules

# Get members (must be from the admin account)
aws securityhub list-members
aws securityhub get-members --account-ids <acc-id>

検知回避

TODO、PRを受け付けます

参照

HackTricksのサポート

Last updated