Aws/securityhub Findings
Query and manage AWS Security Hub findings from a delegated administrator account. Leverages cross-region aggregation to cover the entire AWS Organization in a single API call.
Complements (does NOT duplicate) the upstream @swamp/aws/securityhub extension which manages Security Hub infrastructure (hubs, rules, policies, controls). This extension focuses on the findings operational lifecycle: query, triage, archive, resolve, and reopen.
Authentication
Uses the default AWS credential chain. Point at the delegated admin account (e.g. via AWS_PROFILE) to query findings across all member accounts.
Required IAM Permissions
securityhub:GetFindings(read)securityhub:BatchUpdateFindings(write — for archive/resolve/reopen)
Usage
# Create model (pointed at delegated admin account)
AWS_PROFILE="jw-cd-security-tooling/ReadOnlyPlus" \
swamp model create @webframp/aws/securityhub-findings sh-findings --global-arg region=us-east-1
# List all findings from last 24h
swamp model method run sh-findings list_findings --input startTime=24h
# List only HIGH severity GuardDuty findings
swamp model method run sh-findings list_findings --input productName=GuardDuty --input severityLabel=HIGH
# Get severity summary across org
swamp model method run sh-findings get_severity_summary --input startTime=7d
# Archive false positives
swamp model method run sh-findings archive_findings \
--input 'findingArns=["arn:aws:securityhub:..."]' \
--input 'note=Known EKS deployment pattern, suppressing'
# Resolve findings
swamp model method run sh-findings resolve_findings \
--input 'findingArns=["arn:aws:securityhub:..."]' \
--input 'note=Remediated by disabling public access'Methods
- list_findings - Query findings with filters for product, severity, account, time
- get_finding_details - Get full ASFF details for specific finding ARNs
- get_severity_summary - Aggregate findings by severity across all accounts
- archive_findings - Suppress findings (false positive / expected behavior)
- resolve_findings - Mark findings as resolved
- reopen_findings - Reopen previously archived/resolved findings
Resources
On-demand Security Hub findings triage workflow. Collects severity summary, critical/high findings, and diff since last run from a single Security Hub delegated admin model instance. Usage: AWS_PROFILE="jw-cd-security-tooling/ReadOnlyPlus" \ swamp workflow run securityhub-triage --input modelName=sh-findings # Custom time window: AWS_PROFILE="jw-cd-security-tooling/ReadOnlyPlus" \ swamp workflow run securityhub-triage --input modelName=sh-findings --input startTime=7d
Aggregates Security Hub triage workflow data into an actionable summary
Added 1 workflows. Added 1 reports
Modified 1 models
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository2/2earned