✨ New features to highlight in this version
Enjoy them all now for free at https://cloud.prowler.com/
🖥️ Redesigned Resources
The resources detail panel has been rebuilt from the ground up. The new side drawer consolidates resource metadata, associated findings, and events timeline into a cleaner, denser layout — designed to keep you inside the drawer while investigating a resource instead of bouncing back to the list.
🧹 UX and Data Consistency
A large sweep of fixes landed this release targeting the rough edges users actually hit day to day: filter behavior, headers, counters drifting from the underlying data, drawer layouts, and scan/compliance/finding views surfacing stale or mislabeled context.
🆕 AWS Checks
Bedrock Security Hardening
Four new AWS checks tightening the blast radius around Amazon Bedrock and the identities that can reach it:
bedrock_full_access_policy_attached— flags IAM principals withAmazonBedrockFullAccessor equivalent wildcard Bedrock permissions attachediam_role_access_not_stale_to_bedrockandiam_user_access_not_stale_to_bedrock— catch roles and users with Bedrock privileges that haven't been used recently, so dormant GenAI access stops piling up as a standing riskbedrock_vpc_endpoints_configured— verifies Bedrock traffic stays on private VPC endpoints instead of traversing the public internet
Explore all AWS Bedrock checks at Prowler Hub.
IAM Marketplace Guardrails
Two new IAM checks to stop the silent path from a compromised identity to a paid marketplace subscription:
iam_policy_no_wildcard_marketplace_subscribeiam_inline_policy_no_wildcard_marketplace_subscribe
Both detect aws-marketplace:Subscribe granted with wildcards on managed and inline policies — a vector that turns an IAM misconfiguration into a billing incident.
Explore all AWS IAM checks at Prowler Hub.
🆕 Microsoft 365 Checks
Entra Conditional Access
entra_conditional_access_policy_all_apps_all_users— ensures at least one CA policy targets every app and every userentra_conditional_access_policy_mfa_enforced_for_guest_users- checks that guest and external users have MFA enforced. Without that compromised external accounts can access tenant resources using only a passwordentra_conditional_access_policy_block_unknown_device_platforms- block access from unknown device platformsentra_conditional_access_policy_corporate_device_sign_in_frequency_enforced- enforces sign in for non-corporate devices, without that user sessions may persist indefinitely on unmanaged devicesentra_conditional_access_policy_directory_sync_account_excluded— validates that the directory sync service account is excluded from restrictive CA policies to prevent sync outages
Explore all M365 Entra checks at Prowler Hub.
Intune
intune_device_compliance_policy_unassigned_devices_not_compliant_by_default— unassigned devices should not be marked compliant by default by the built-in device policy
Explore all M365 Intune checks at Prowler Hub.
Exchange Online
exchange_organization_delicensing_resiliency_enabled— keeps mailbox data accessible for 30 days after a license is removed, preventing accidental data loss
Explore all M365 Exchange checks at Prowler Hub.
🆕 Exclude Regions in AWS scans
Prowler now lets you exclude specific AWS regions from scans, so you can keep your scan scope focused on the regions that matter to you. You can configure exclusions with
--excluded-regionPROWLER_AWS_DISALLOWED_REGIONSenvironment variableaws.disallowed_regionsinconfig.yaml
See the AWS Regions and Partitions documentation for usage examples.
UI
🚀 Added
- Resources side drawer with redesigned detail panel (#10673)
- Syntax highlighting for remediation code blocks in finding groups drawer with provider-aware auto-detection (Shell, HCL, YAML, Bicep) (#10698)
🔄 Changed
- Attack Paths scan selection: contextual button labels based on graph availability, tooltips on disabled actions, green dot indicator for selectable scans, and a warning banner when viewing data from a previous scan cycle (#10685)
- Remove legacy finding detail sheet, row-details wrapper, and resource detail panel; unify findings and resources around new side drawers (#10692)
- Attack Paths "View Finding" now opens the finding drawer inline over the graph instead of navigating to
/findingsin a new tab, preserving graph zoom, selection, and filter state - Attack Paths scan table: replace action buttons with radio buttons, add dedicated Graph column, use info-colored In Progress badge, remove redundant Progress column, and fix info banner variant (#10704)
🐞 Fixed
- Findings group resource filters now strip unsupported scan parameters, display scan name instead of provider alias in filter badges, migrate mute modal from HeroUI to shadcn, and add searchable accounts/provider type selectors (#10662)
- Compliance detail page header now reflects the actual provider, alias and UID of the selected scan instead of always defaulting to AWS (#10674)
- Provider wizard modal moved to a stable page-level host so the providers table refreshes after link, authenticate, and connection check without closing the modal (#10675)
API
🔄 Changed
- Bump Poetry to
2.3.4in Dockerfile and pre-commit hooks. Regenerateapi/poetry.lock(#10681) - Attack Paths: Remove dead
cleanup_findingsno-op and its supportingprowler_finding_lastupdatedindex (#10684)
🐞 Fixed
- Worker-beat race condition on cold start: replaced
sleep 15with API service healthcheck dependency (Docker Compose) and init containers (Helm), aligned Gunicorn default port to8080(#10603) - API container startup crash on Linux due to root-owned bind-mount preventing JWT key generation (#10646)
🔐 Security
pytestfrom 8.2.2 to 9.0.3 to fix CVE-2025-71176 (#10678)
SDK
🚀 Added
entra_conditional_access_policy_directory_sync_account_excludedcheck for M365 provider (#10620)intune_device_compliance_policy_unassigned_devices_not_compliant_by_defaultcheck for M365 provider (#10599)entra_conditional_access_policy_all_apps_all_userscheck for M365 provider (#10619)bedrock_full_access_policy_attachedcheck for AWS provider (#10577)iam_role_access_not_stale_to_bedrockandiam_user_access_not_stale_to_bedrockchecks for AWS provider (#10536)iam_policy_no_wildcard_marketplace_subscribeandiam_inline_policy_no_wildcard_marketplace_subscribechecks for AWS provider (#10525)bedrock_vpc_endpoints_configuredcheck for AWS provider (#10591)exchange_organization_delicensing_resiliency_enabledcheck for M365 provider (#10608)entra_conditional_access_policy_mfa_enforced_for_guest_userscheck for M365 provider (#10616)entra_conditional_access_policy_corporate_device_sign_in_frequency_enforcedcheck for M365 provider (#10618)entra_conditional_access_policy_block_unknown_device_platformscheck for M365 provider (#10615)--excluded-regionCLI flag,PROWLER_AWS_DISALLOWED_REGIONSenvironment variable, andaws.disallowed_regionsconfig entry to skip specific AWS regions during scans (#10688)
🔄 Changed
- Bump Poetry to
2.3.4and consolidate SDK workflows onto thesetup-python-poetrycomposite action with opt-in lockfile regeneration (#10681) - Normalize Conditional Access platform values in Entra models and simplify platform-based checks (#10635)
🐞 Fixed
- Vercel firewall config handling for team-scoped projects and current API response shapes (#10695)