diff --git a/.github/workflows/sdk-build-lint-push-containers.yml b/.github/workflows/sdk-build-lint-push-containers.yml
index ec1d71a0cb..591b07dc50 100644
--- a/.github/workflows/sdk-build-lint-push-containers.yml
+++ b/.github/workflows/sdk-build-lint-push-containers.yml
@@ -157,6 +157,22 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
+# - name: Push README to Docker Hub (toniblyx)
+# uses: peter-evans/dockerhub-description@432a30c9e07499fd01da9f8a49f0faf9e0ca5b77 # v4.0.2
+# with:
+# username: ${{ secrets.DOCKERHUB_USERNAME }}
+# password: ${{ secrets.DOCKERHUB_TOKEN }}
+# repository: ${{ env.DOCKER_HUB_REPOSITORY }}/${{ env.IMAGE_NAME }}
+# readme-filepath: ./README.md
+#
+# - name: Push README to Docker Hub (prowlercloud)
+# uses: peter-evans/dockerhub-description@432a30c9e07499fd01da9f8a49f0faf9e0ca5b77 # v4.0.2
+# with:
+# username: ${{ secrets.DOCKERHUB_USERNAME }}
+# password: ${{ secrets.DOCKERHUB_TOKEN }}
+# repository: ${{ env.PROWLERCLOUD_DOCKERHUB_REPOSITORY }}/${{ env.PROWLERCLOUD_DOCKERHUB_IMAGE }}
+# readme-filepath: ./README.md
+
dispatch-action:
needs: container-build-push
runs-on: ubuntu-latest
diff --git a/README.md b/README.md
index fce0fbdc48..2fb1b94cf4 100644
--- a/README.md
+++ b/README.md
@@ -19,19 +19,16 @@
-
+
-
-
-
- By September 2025, MFA will be mandatory.
+ By October 2025, MFA will be mandatory.
diff --git a/ui/components/ui/custom/custom-banner.tsx b/ui/components/ui/custom/custom-banner.tsx
new file mode 100644
index 0000000000..96c3b438ad
--- /dev/null
+++ b/ui/components/ui/custom/custom-banner.tsx
@@ -0,0 +1,47 @@
+"use client";
+
+import { InfoIcon } from "lucide-react";
+
+import { CustomButton } from ".";
+
+interface CustomBannerProps {
+ title: string;
+ message: string;
+ buttonLabel?: string;
+ buttonLink?: string;
+}
+
+export const CustomBanner = ({
+ title,
+ message,
+ buttonLabel = "Go Home",
+ buttonLink = "/",
+}: CustomBannerProps) => {
+ return (
+ {message}
-
-
+
+
@@ -55,15 +52,11 @@ Prowler includes hundreds of built-in controls to ensure compliance with standar
- **National Security Standards:** ENS (Spanish National Security Scheme)
- **Custom Security Frameworks:** Tailored to your needs
-## Prowler CLI and Prowler Cloud
-
-Prowler offers a Command Line Interface (CLI), known as Prowler Open Source, and an additional service built on top of it, called Prowler Cloud.
-
## Prowler App
Prowler App is a web-based application that simplifies running Prowler across your cloud provider accounts. It provides a user-friendly interface to visualize the results and streamline your security assessments.
-
+
>For more details, refer to the [Prowler App Documentation](https://docs.prowler.com/projects/prowler-open-source/en/latest/#prowler-app-installation)
@@ -80,13 +73,16 @@ prowler
+
- **Compliance** – Displays compliance insights based on security frameworks.
diff --git a/docs/tutorials/aws/securityhub.md b/docs/tutorials/aws/securityhub.md
index 1ece9e61e5..050896763b 100644
--- a/docs/tutorials/aws/securityhub.md
+++ b/docs/tutorials/aws/securityhub.md
@@ -132,7 +132,7 @@ prowler --security-hub --role arn:aws:iam::123456789012:role/ProwlerExecutionRol
```
???+ note
- The specified IAM role must have the necessary permissions to send findings to Security Hub. For details on the required permissions, refer to the IAM policy: [prowler-security-hub.json](https://github.com/prowler-cloud/prowler/blob/master/permissions/prowler-security-hub.json)
+ The specified IAM role must have the necessary permissions to send findings to Security Hub. For details on the required permissions, refer to the IAM policy: [prowler-additions-policy.json](https://github.com/prowler-cloud/prowler/blob/master/permissions/prowler-additions-policy.json)
## Sending Only Failed Findings to AWS Security Hub
diff --git a/docs/tutorials/configuration_file.md b/docs/tutorials/configuration_file.md
index b99e5064d0..bdd0254f41 100644
--- a/docs/tutorials/configuration_file.md
+++ b/docs/tutorials/configuration_file.md
@@ -83,6 +83,9 @@ The following list includes all the Azure checks with configurable variables tha
| `vm_sufficient_daily_backup_retention_period` | `vm_backup_min_daily_retention_days` | Integer |
| `vm_desired_sku_size` | `desired_vm_sku_sizes` | List of Strings |
| `defender_attack_path_notifications_properly_configured` | `defender_attack_path_minimal_risk_level` | String |
+| `apim_threat_detection_llm_jacking` | `apim_threat_detection_llm_jacking_threshold` | Float |
+| `apim_threat_detection_llm_jacking` | `apim_threat_detection_llm_jacking_minutes` | Integer |
+| `apim_threat_detection_llm_jacking` | `apim_threat_detection_llm_jacking_actions` | List of Strings |
## GCP
@@ -494,6 +497,48 @@ azure:
"Standard_DS3_v2",
"Standard_D4s_v3",
]
+ # Azure VM Backup Configuration
+ # azure.vm_sufficient_daily_backup_retention_period
+ vm_backup_min_daily_retention_days: 7
+
+ # Azure API Management Threat Detection Configuration
+ # azure.apim_threat_detection_llm_jacking
+ apim_threat_detection_llm_jacking_threshold: 0.1
+ apim_threat_detection_llm_jacking_minutes: 1440
+ apim_threat_detection_llm_jacking_actions:
+ [
+ # OpenAI API endpoints
+ "ImageGenerations_Create",
+ "ChatCompletions_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+
+ # Azure OpenAI endpoints
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+
+ # Anthropic endpoints
+ "Messages_Create",
+ "Claude_Create",
+
+ # Google AI endpoints
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+
+ # Meta AI endpoints
+ "Llama_Create",
+ "CodeLlama_Create",
+
+ # Other LLM endpoints
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate"
+ ]
# GCP Configuration
gcp:
diff --git a/docs/tutorials/img/security-hub/create-integration.png b/docs/tutorials/img/security-hub/create-integration.png
new file mode 100644
index 0000000000..145e68d201
Binary files /dev/null and b/docs/tutorials/img/security-hub/create-integration.png differ
diff --git a/docs/tutorials/img/security-hub/integration-settings.png b/docs/tutorials/img/security-hub/integration-settings.png
new file mode 100644
index 0000000000..3a32bf0830
Binary files /dev/null and b/docs/tutorials/img/security-hub/integration-settings.png differ
diff --git a/docs/tutorials/img/security-hub/integrations-tab.png b/docs/tutorials/img/security-hub/integrations-tab.png
new file mode 100644
index 0000000000..9d11cae33a
Binary files /dev/null and b/docs/tutorials/img/security-hub/integrations-tab.png differ
diff --git a/docs/tutorials/microsoft365/authentication.md b/docs/tutorials/microsoft365/authentication.md
index c8f78c1c78..fde711d4ff 100644
--- a/docs/tutorials/microsoft365/authentication.md
+++ b/docs/tutorials/microsoft365/authentication.md
@@ -8,7 +8,7 @@ Prowler for Microsoft 365 (M365) supports the following authentication methods:
- **Interactive browser authentication**
???+ warning
- Prowler App supports the **Service Principal** authentication method and the **Service Principal with User Credentials** authentication method, but this last one will be deprecated in September once Microsoft will enforce MFA in all tenants not allowing User authentication without interactive method.
+ Prowler App supports the **Service Principal** authentication method and the **Service Principal with User Credentials** authentication method, but this last one will be deprecated in October once Microsoft will enforce MFA in all tenants not allowing User authentication without interactive method.
### Service Principal Authentication (Recommended)
@@ -109,7 +109,7 @@ When using service principal authentication, add the following **Application Per
> If you do this you will need to add also the `Organization.Read.All` permission to the service principal application in order to authenticate.
???+ note
- This is the **recommended authentication method** because it allows you to run the full M365 provider including PowerShell checks, providing complete coverage of all available security checks, same as the Service Principal Authentication + User Credentials Authentication but this last one will be deprecated in September once Microsoft will enforce MFA in all tenants not allowing User authentication without interactive method.
+ This is the **recommended authentication method** because it allows you to run the full M365 provider including PowerShell checks, providing complete coverage of all available security checks, same as the Service Principal Authentication + User Credentials Authentication but this last one will be deprecated in October once Microsoft will enforce MFA in all tenants not allowing User authentication without interactive method.
#### Service Principal + User Credentials Authentication (`--env-auth`)
diff --git a/docs/tutorials/microsoft365/getting-started-m365.md b/docs/tutorials/microsoft365/getting-started-m365.md
index 988f58a1b5..8c3037f728 100644
--- a/docs/tutorials/microsoft365/getting-started-m365.md
+++ b/docs/tutorials/microsoft365/getting-started-m365.md
@@ -194,7 +194,7 @@ To grant the permissions for the PowerShell modules via application authenticati
#### If using user authentication
-This method is not recommended because it requires a user with MFA enabled and Microsoft will not allow MFA capable users to authenticate programmatically after 1st September 2025. See [Microsoft documentation](https://learn.microsoft.com/en-us/entra/identity/authentication/concept-mandatory-multifactor-authentication?tabs=dotnet) for more information.
+This method is not recommended because it requires a user with MFA enabled and Microsoft will not allow MFA capable users to authenticate programmatically after 1st October 2025. See [Microsoft documentation](https://learn.microsoft.com/en-us/entra/identity/authentication/concept-mandatory-multifactor-authentication?tabs=dotnet) for more information.
???+ warning
Remember that if the user is newly created, you need to sign in with that account first, as Microsoft will prompt you to change the password. If you don’t complete this step, user authentication will fail because Microsoft marks the initial password as expired.
diff --git a/docs/tutorials/prowler-app-security-hub-integration.md b/docs/tutorials/prowler-app-security-hub-integration.md
new file mode 100644
index 0000000000..0cc4193b98
--- /dev/null
+++ b/docs/tutorials/prowler-app-security-hub-integration.md
@@ -0,0 +1,128 @@
+# AWS Security Hub Integration
+
+Prowler App enables automatic export of security findings to AWS Security Hub, providing seamless integration with AWS's native security and compliance service. This comprehensive guide demonstrates how to configure and manage AWS Security Hub integrations to centralize security findings and enhance compliance tracking across AWS environments.
+
+Integrating Prowler App with AWS Security Hub provides:
+
+* **Centralized security visibility:** Consolidate findings from multiple AWS accounts and regions
+* **Native AWS integration:** Leverage existing AWS security workflows and compliance frameworks
+* **Automated finding management:** Archive resolved findings and filter results based on severity
+* **Cost optimization:** Send only failed findings to reduce AWS Security Hub costs
+* **Real-time updates:** Automatically export findings after each scan completion
+
+## How It Works
+
+When enabled and configured:
+
+1. Scan results are automatically sent to AWS Security Hub after each scan completes
+2. Findings are formatted in [AWS Security Finding Format](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format.html) (ASFF)
+3. The integration automatically detects new AWS regions to send findings if the Prowler partner integration is enabled
+4. Previously resolved findings are archived to maintain clean Security Hub dashboards
+
+???+ note
+ Refer to [AWS Security Hub pricing](https://aws.amazon.com/security-hub/pricing/) for cost information.
+
+## Prerequisites
+
+Before configuring AWS Security Hub Integration in Prowler App, complete these steps:
+
+### AWS Security Hub Setup
+
+Enable the Prowler partner integration in AWS Security Hub by following the [AWS Security Hub setup documentation](./aws/securityhub.md#enabling-aws-security-hub-for-prowler-integration).
+
+### AWS Authentication
+
+Configure AWS credentials by following the [AWS authentication setup guide](./aws/getting-started-aws.md#step-3-set-up-aws-authentication).
+
+## Configuration
+
+To configure AWS Security Hub integration in Prowler App:
+
+1. Navigate to **Integrations** in the Prowler App interface
+2. Locate the **AWS Security Hub** card and click **Manage**, then select **Add integration**
+
+ 
+
+3. Complete the integration settings
+
+* **AWS Provider:** Select the AWS provider whose findings should be exported to Security Hub
+* **Send Only Failed Findings:** Filter out `PASS` findings to reduce AWS Security Hub costs (enabled by default)
+* **Archive Previous Findings:** Automatically archive findings resolved since the last scan to maintain clean Security Hub dashboards
+
+ 
+
+4. Configure authentication:
+
+Choose the appropriate authentication method:
+
+* **Use Provider Credentials** (recommended): Leverages the AWS provider's existing credentials
+
+ ???+ tip "Simplified Credential Management"
+ Using provider credentials reduces administrative complexity by managing a single set of credentials instead of maintaining separate authentication mechanisms. This approach minimizes security risks and provides the most efficient integration path when the AWS account has sufficient permissions to export findings to Security Hub.
+
+* **Custom Credentials:** Configure separate credentials specifically for Security Hub access
+
+
+5. Click **Create integration** to enable the integration
+
+ 
+
+Once configured successfully, findings from subsequent scans will automatically appear in AWS Security Hub.
+
+### Integration Status
+
+Once the integration is active, monitor its status and make adjustments as needed through the integrations management interface.
+
+1. Review configured integrations in the management interface
+2. Each integration displays:
+
+ - **Connection Status:** Connected or Disconnected indicator.
+ - **Provider Information:** Selected AWS provider name.
+ - **Finding Filters:** Status of failed-only and archive settings.
+ - **Last Checked:** Timestamp of the most recent connection test.
+ - **Regions:** List of regions where the integration is active.
+
+#### Actions
+
+Each Security Hub integration provides several management actions accessible through dedicated buttons:
+
+| Button | Purpose | Available Actions | Notes |
+|--------|---------|------------------|-------|
+| **Test** | Verify integration connectivity | • Test AWS credential validity
• Check Security Hub accessibility
• Detect enabled regions automatically
• Validate finding export capability | Results displayed in notification message |
+| **Config** | Modify integration settings | • Update AWS provider selection
• Change finding filter settings
• Modify archive preferences | Click "Update Configuration" to save changes |
+| **Credentials** | Update authentication settings | • Switch between provider/custom credentials
• Update AWS access keys
• Change IAM role configuration | Click "Update Credentials" to save changes |
+| **Enable/Disable** | Toggle integration status | • Enable integration to start exporting findings
• Disable integration to pause exports | Status change takes effect immediately |
+| **Delete** | Remove integration permanently | • Permanently delete integration
• Remove all configuration data | ⚠️ **Cannot be undone** - confirm before deleting |
+
+???+ tip "Management Best Practices"
+ - Test the integration after any configuration changes
+ - Use the Enable/Disable toggle for temporary changes instead of deleting
+ - Monitor the Last Checked timestamp to ensure recent connectivity
+
+
+## Viewing Findings in AWS Security Hub
+
+After successful configuration and scan completion, Prowler findings automatically appear in AWS Security Hub. For detailed information about accessing and interpreting findings in the Security Hub console, refer to the [AWS Security Hub findings documentation](./aws/securityhub.md#viewing-prowler-findings-in-aws-security-hub).
+
+
+## Troubleshooting
+
+**Connection test fails:**
+
+- Verify AWS Security Hub is enabled in target regions
+- Confirm Prowler integration is accepted in Security Hub
+- Check IAM permissions include required Security Hub actions
+- If using IAM Role, verify trust policy and External ID
+
+**No findings in Security Hub:**
+
+- Ensure integration shows "Connected" status
+- Verify a scan has completed after enabling integration
+- Check Security Hub console in the correct region
+- Confirm finding filters match expectations
+
+**Authentication errors:**
+
+- For provider credentials, verify provider configuration
+- For custom credentials, check access key validity
+- For IAM roles, confirm role ARN and External ID match
diff --git a/mkdocs.yml b/mkdocs.yml
index 68aa34bcc6..96622f0201 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -66,7 +66,9 @@ nav:
- Social Login: tutorials/prowler-app-social-login.md
- SSO with SAML: tutorials/prowler-app-sso.md
- Mute findings: tutorials/prowler-app-mute-findings.md
- - Amazon S3 Integration: tutorials/prowler-app-s3-integration.md
+ - Integrations:
+ - Amazon S3: tutorials/prowler-app-s3-integration.md
+ - AWS Security Hub: tutorials/prowler-app-security-hub-integration.md
- Lighthouse: tutorials/prowler-app-lighthouse.md
- Bulk Provider Provisioning: tutorials/bulk-provider-provisioning.md
- CLI:
diff --git a/poetry.lock b/poetry.lock
index ab1e7d5e4c..9d4fb31e02 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,4 +1,4 @@
-# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand.
+# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand.
[[package]]
name = "about-time"
@@ -394,6 +394,24 @@ cryptography = ">=2.1.4"
isodate = ">=0.6.1"
typing-extensions = ">=4.0.1"
+[[package]]
+name = "azure-mgmt-apimanagement"
+version = "5.0.0"
+description = "Microsoft Azure API Management Client Library for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "azure_mgmt_apimanagement-5.0.0-py3-none-any.whl", hash = "sha256:b88c42a392333b60722fb86f15d092dfc19a8d67510dccd15c217381dff4e6ec"},
+ {file = "azure_mgmt_apimanagement-5.0.0.tar.gz", hash = "sha256:0ab7fe17e70fe3154cd840ff47d19d7a4610217003eaa7c21acf3511a6e57999"},
+]
+
+[package.dependencies]
+azure-common = ">=1.1"
+azure-mgmt-core = ">=1.3.2"
+isodate = ">=0.6.1"
+typing-extensions = ">=4.6.0"
+
[[package]]
name = "azure-mgmt-applicationinsights"
version = "4.1.0"
@@ -551,6 +569,23 @@ azure-mgmt-core = ">=1.3.2"
isodate = ">=0.6.1"
typing-extensions = ">=4.6.0"
+[[package]]
+name = "azure-mgmt-loganalytics"
+version = "12.0.0"
+description = "Microsoft Azure Log Analytics Management Client Library for Python"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "azure-mgmt-loganalytics-12.0.0.zip", hash = "sha256:da128a7e0291be7fa2063848df92a9180cf5c16d42adc09d2bc2efd711536bfb"},
+ {file = "azure_mgmt_loganalytics-12.0.0-py2.py3-none-any.whl", hash = "sha256:75ac1d47dd81179905c40765be8834643d8994acff31056ddc1863017f3faa02"},
+]
+
+[package.dependencies]
+azure-common = ">=1.1,<2.0"
+azure-mgmt-core = ">=1.2.0,<2.0.0"
+msrest = ">=0.6.21"
+
[[package]]
name = "azure-mgmt-monitor"
version = "6.0.2"
@@ -761,6 +796,23 @@ azure-mgmt-core = ">=1.3.2"
isodate = ">=0.6.1"
typing-extensions = ">=4.6.0"
+[[package]]
+name = "azure-monitor-query"
+version = "2.0.0"
+description = "Microsoft Corporation Azure Monitor Query Client Library for Python"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "azure_monitor_query-2.0.0-py3-none-any.whl", hash = "sha256:8f52d581271d785e12f49cd5aaa144b8910fb843db2373855a7ef94c7fc462ea"},
+ {file = "azure_monitor_query-2.0.0.tar.gz", hash = "sha256:7b05f2fcac4fb67fc9f77a7d4c5d98a0f3099fb73b57c69ec1b080773994671b"},
+]
+
+[package.dependencies]
+azure-core = ">=1.30.0"
+isodate = ">=0.6.1"
+typing-extensions = ">=4.6.0"
+
[[package]]
name = "azure-storage-blob"
version = "12.24.1"
@@ -2352,8 +2404,6 @@ python-versions = "*"
groups = ["dev"]
files = [
{file = "jsonpath-ng-1.7.0.tar.gz", hash = "sha256:f6f5f7fd4e5ff79c785f1573b394043b39849fb2bb47bcead935d12b00beab3c"},
- {file = "jsonpath_ng-1.7.0-py2-none-any.whl", hash = "sha256:898c93fc173f0c336784a3fa63d7434297544b7198124a68f9a3ef9597b0ae6e"},
- {file = "jsonpath_ng-1.7.0-py3-none-any.whl", hash = "sha256:f3d7f9e848cba1b6da28c55b1c26ff915dc9e0b1ba7e752a53d6da8d5cbd00b6"},
]
[package.dependencies]
@@ -5841,4 +5891,4 @@ type = ["pytest-mypy"]
[metadata]
lock-version = "2.1"
python-versions = ">3.9.1,<3.13"
-content-hash = "fdd2cbdb6913d0dd8d05030ee41c0d36d3954e473783d43b730ec163e697ec15"
+content-hash = "aea38b0311bfabac00d4bf9ee5d2fa0a7f3e32dd2ee5c5d27eb54c69a80b35e9"
diff --git a/prowler/CHANGELOG.md b/prowler/CHANGELOG.md
index a0c294861e..671edf528a 100644
--- a/prowler/CHANGELOG.md
+++ b/prowler/CHANGELOG.md
@@ -1,6 +1,28 @@
# Prowler SDK Changelog
All notable changes to the **Prowler SDK** are documented in this file.
+## [v5.12.0] (Prowler UNRELEASED)
+
+### Added
+- Get Jira Project's metadata [(#8630)](https://github.com/prowler-cloud/prowler/pull/8630)
+- Add more fields for the Jira ticket and handle custom fields errors [(#8601)](https://github.com/prowler-cloud/prowler/pull/8601)
+- Get Jira projects from test_connection [(#8634)](https://github.com/prowler-cloud/prowler/pull/8634)
+- `AdditionalUrls` field in CheckMetadata [(#8590)](https://github.com/prowler-cloud/prowler/pull/8590)
+- Support color for MANUAL finidngs in Jira tickets [(#8642)](https://github.com/prowler-cloud/prowler/pull/8642)
+
+### Changed
+
+### Fixed
+- Renamed `AdditionalUrls` to `AdditionalURLs` field in CheckMetadata [(#8639)](https://github.com/prowler-cloud/prowler/pull/8639)
+
+---
+
+## [v5.11.1] (Prowler UNRELEASED)
+
+### Fixed
+- TypeError from Python 3.9 in Security Hub module by updating type annotations [(#8619)](https://github.com/prowler-cloud/prowler/pull/8619)
+
+---
## [v5.12.0] (Prowler UNRELEASED)
@@ -33,6 +55,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
- `eks_cluster_deletion_protection_enabled` check for AWS provider [(#8536)](https://github.com/prowler-cloud/prowler/pull/8536)
- ECS privilege escalation patterns (StartTask and RunTask) for AWS provider [(#8541)](https://github.com/prowler-cloud/prowler/pull/8541)
- Resource Explorer enumeration v2 API actions in `cloudtrail_threat_detection_enumeration` check [(#8557)](https://github.com/prowler-cloud/prowler/pull/8557)
+- `apim_threat_detection_llm_jacking` check for Azure provider [(#8571)](https://github.com/prowler-cloud/prowler/pull/8571)
- GCP `--skip-api-check` command line flag [(#8575)](https://github.com/prowler-cloud/prowler/pull/8575)
### Changed
diff --git a/prowler/config/config.py b/prowler/config/config.py
index 46dd6f8c1c..6f596ee9ea 100644
--- a/prowler/config/config.py
+++ b/prowler/config/config.py
@@ -12,7 +12,7 @@ from prowler.lib.logger import logger
timestamp = datetime.today()
timestamp_utc = datetime.now(timezone.utc).replace(tzinfo=timezone.utc)
-prowler_version = "5.11.0"
+prowler_version = "5.12.0"
html_logo_url = "https://github.com/prowler-cloud/prowler/"
square_logo_img = "https://prowler.com/wp-content/uploads/logo-html.png"
aws_logo = "https://user-images.githubusercontent.com/38561120/235953920-3e3fba08-0795-41dc-b480-9bea57db9f2e.png"
diff --git a/prowler/config/config.yaml b/prowler/config/config.yaml
index 7932131af6..33da81eaab 100644
--- a/prowler/config/config.yaml
+++ b/prowler/config/config.yaml
@@ -463,6 +463,45 @@ azure:
# azure.vm_sufficient_daily_backup_retention_period
vm_backup_min_daily_retention_days: 7
+ # Azure API Management Configuration
+ # azure.apim_threat_detection_llm_jacking
+ apim_threat_detection_llm_jacking_threshold: 0.1
+ apim_threat_detection_llm_jacking_minutes: 1440
+ apim_threat_detection_llm_jacking_actions:
+ [
+ # OpenAI API endpoints
+ "ImageGenerations_Create",
+ "ChatCompletions_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+
+ # Azure OpenAI endpoints
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+
+ # Anthropic endpoints
+ "Messages_Create",
+ "Claude_Create",
+
+ # Google AI endpoints
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+
+ # Meta AI endpoints
+ "Llama_Create",
+ "CodeLlama_Create",
+
+ # Other LLM endpoints
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate"
+ ]
+
# GCP Configuration
gcp:
# GCP Compute Configuration
diff --git a/prowler/lib/check/models.py b/prowler/lib/check/models.py
index de38162cbc..02813edc76 100644
--- a/prowler/lib/check/models.py
+++ b/prowler/lib/check/models.py
@@ -7,7 +7,7 @@ from dataclasses import asdict, dataclass, is_dataclass
from enum import Enum
from typing import Any, Dict, Optional, Set
-from pydantic.v1 import BaseModel, ValidationError, validator
+from pydantic.v1 import BaseModel, Field, ValidationError, validator
from prowler.config.config import Provider
from prowler.lib.check.compliance_models import Compliance
@@ -85,6 +85,7 @@ class CheckMetadata(BaseModel):
Risk (str): The risk associated with the check.
RelatedUrl (str): The URL related to the check.
Remediation (Remediation): The remediation steps for the check.
+ AdditionalURLs (list[str]): Additional URLs related to the check. Defaults to an empty list.
Categories (list[str]): The categories of the check.
DependsOn (list[str]): The dependencies of the check.
RelatedTo (list[str]): The related checks.
@@ -97,13 +98,14 @@ class CheckMetadata(BaseModel):
valid_severity(severity): Validator function to validate the severity of the check.
valid_cli_command(remediation): Validator function to validate the CLI command is not an URL.
valid_resource_type(resource_type): Validator function to validate the resource type is not empty.
+ validate_additional_urls(additional_urls): Validator function to ensure AdditionalURLs contains no duplicates.
"""
Provider: str
CheckID: str
CheckTitle: str
CheckType: list[str]
- CheckAliases: list[str] = []
+ CheckAliases: list[str] = Field(default_factory=list)
ServiceName: str
SubServiceName: str
ResourceIdTemplate: str
@@ -113,13 +115,14 @@ class CheckMetadata(BaseModel):
Risk: str
RelatedUrl: str
Remediation: Remediation
+ AdditionalURLs: list[str] = Field(default_factory=list)
Categories: list[str]
DependsOn: list[str]
RelatedTo: list[str]
Notes: str
# We set the compliance to None to
# store the compliance later if supplied
- Compliance: Optional[list[Any]] = []
+ Compliance: Optional[list[Any]] = Field(default_factory=list)
@validator("Categories", each_item=True, pre=True, always=True)
def valid_category(value):
@@ -178,6 +181,19 @@ class CheckMetadata(BaseModel):
return check_id
+ @validator("AdditionalURLs", pre=True, always=True)
+ def validate_additional_urls(cls, additional_urls):
+ if not isinstance(additional_urls, list):
+ raise ValueError("AdditionalURLs must be a list")
+
+ if any(not url or not url.strip() for url in additional_urls):
+ raise ValueError("AdditionalURLs cannot contain empty items")
+
+ if len(additional_urls) != len(set(additional_urls)):
+ raise ValueError("AdditionalURLs cannot contain duplicate items")
+
+ return additional_urls
+
@staticmethod
def get_bulk(provider: str) -> dict[str, "CheckMetadata"]:
"""
diff --git a/prowler/lib/outputs/jira/jira.py b/prowler/lib/outputs/jira/jira.py
index dfae32ebd4..81e6651df9 100644
--- a/prowler/lib/outputs/jira/jira.py
+++ b/prowler/lib/outputs/jira/jira.py
@@ -1,5 +1,6 @@
import base64
import os
+from dataclasses import dataclass
from datetime import datetime, timedelta
from typing import Dict
@@ -35,6 +36,17 @@ from prowler.lib.outputs.jira.exceptions.exceptions import (
from prowler.providers.common.models import Connection
+@dataclass
+class JiraConnection(Connection):
+ """
+ Represents a Jira connection object.
+ Attributes:
+ projects (dict): Dictionary of projects in Jira.
+ """
+
+ projects: dict = None
+
+
class Jira:
"""
Jira class to interact with the Jira API
@@ -464,7 +476,7 @@ class Jira:
api_token: str = None,
domain: str = None,
raise_on_exception: bool = True,
- ) -> Connection:
+ ) -> JiraConnection:
"""Test the connection to Jira
Args:
@@ -477,7 +489,7 @@ class Jira:
- raise_on_exception: Whether to raise an exception or not
Returns:
- - Connection: The connection object
+ - JiraConnection: The connection object
Raises:
- JiraGetCloudIDNoResourcesError: No resources were found in Jira when getting the cloud id
@@ -485,6 +497,8 @@ class Jira:
- JiraGetCloudIDError: Failed to get the cloud ID from Jira
- JiraAuthenticationError: Failed to authenticate
- JiraTestConnectionError: Failed to test the connection
+ - JiraNoProjectsError: No projects found in Jira
+ - JiraGetProjectsResponseError: Failed to get projects from Jira, response code did not match 200
"""
try:
jira = Jira(
@@ -495,60 +509,51 @@ class Jira:
api_token=api_token,
domain=domain,
)
- access_token = jira.get_access_token()
+ projects = jira.get_projects()
- if not access_token:
- return ValueError("Failed to get access token")
-
- if jira.using_basic_auth:
- headers = {"Authorization": f"Basic {access_token}"}
- else:
- headers = {"Authorization": f"Bearer {access_token}"}
-
- response = requests.get(
- f"https://api.atlassian.com/ex/jira/{jira.cloud_id}/rest/api/3/myself",
- headers=headers,
- )
-
- if response.status_code == 200:
- return Connection(is_connected=True)
- else:
- return Connection(is_connected=False, error=response.json())
- except JiraGetCloudIDNoResourcesError as no_resources_error:
+ return JiraConnection(is_connected=True, projects=projects)
+ except JiraNoProjectsError as no_projects_error:
logger.error(
- f"{no_resources_error.__class__.__name__}[{no_resources_error.__traceback__.tb_lineno}]: {no_resources_error}"
+ f"{no_projects_error.__class__.__name__}[{no_projects_error.__traceback__.tb_lineno}]: {no_projects_error}"
)
if raise_on_exception:
- raise no_resources_error
- return Connection(error=no_resources_error)
+ raise no_projects_error
+ return JiraConnection(error=no_projects_error)
except JiraGetCloudIDResponseError as response_error:
logger.error(
f"{response_error.__class__.__name__}[{response_error.__traceback__.tb_lineno}]: {response_error}"
)
if raise_on_exception:
raise response_error
- return Connection(error=response_error)
+ return JiraConnection(error=response_error)
except JiraGetCloudIDError as cloud_id_error:
logger.error(
f"{cloud_id_error.__class__.__name__}[{cloud_id_error.__traceback__.tb_lineno}]: {cloud_id_error}"
)
if raise_on_exception:
raise cloud_id_error
- return Connection(error=cloud_id_error)
+ return JiraConnection(error=cloud_id_error)
except JiraAuthenticationError as auth_error:
logger.error(
f"{auth_error.__class__.__name__}[{auth_error.__traceback__.tb_lineno}]: {auth_error}"
)
if raise_on_exception:
raise auth_error
- return Connection(error=auth_error)
+ return JiraConnection(error=auth_error)
except JiraBasicAuthError as basic_auth_error:
logger.error(
f"{basic_auth_error.__class__.__name__}[{basic_auth_error.__traceback__.tb_lineno}]: {basic_auth_error}"
)
if raise_on_exception:
raise basic_auth_error
- return Connection(error=basic_auth_error)
+ return JiraConnection(error=basic_auth_error)
+ except JiraGetProjectsResponseError as projects_response_error:
+ logger.error(
+ f"{projects_response_error.__class__.__name__}[{projects_response_error.__traceback__.tb_lineno}]: {projects_response_error}"
+ )
+ if raise_on_exception:
+ raise projects_response_error
+ return JiraConnection(error=projects_response_error)
except Exception as error:
logger.error(f"Failed to test connection: {error}")
if raise_on_exception:
@@ -556,7 +561,7 @@ class Jira:
message="Failed to test connection on the Jira integration",
file=os.path.basename(__file__),
)
- return Connection(is_connected=False, error=error)
+ return JiraConnection(is_connected=False, error=error)
def get_projects(self) -> Dict[str, str]:
"""Get the projects from Jira
@@ -683,6 +688,92 @@ class Jira:
file=os.path.basename(__file__),
)
+ def get_metadata(self) -> dict:
+ """Get the metadata from Jira
+
+ Returns:
+ - dict: The projects and issue types from Jira as a dictionary, the projects format is {"KEY": {"name": "NAME", "issue_types": ["ISSUE_TYPE_1", "ISSUE_TYPE_2"]}}
+ """
+ try:
+ access_token = self.get_access_token()
+
+ if not access_token:
+ return ValueError("Failed to get access token")
+
+ if self._using_basic_auth:
+ headers = {"Authorization": f"Basic {access_token}"}
+ else:
+ headers = {"Authorization": f"Bearer {access_token}"}
+
+ response = requests.get(
+ f"https://api.atlassian.com/ex/jira/{self.cloud_id}/rest/api/3/project",
+ headers=headers,
+ )
+ if response.status_code == 200:
+ projects_data = {}
+ projects_list = response.json()
+ if not projects_list:
+ logger.error("No projects found")
+ raise JiraNoProjectsError(
+ message="No projects found in Jira",
+ file=os.path.basename(__file__),
+ )
+ else:
+ for project in projects_list:
+ project_response = requests.get(
+ f"https://api.atlassian.com/ex/jira/{self.cloud_id}/rest/api/3/issue/createmeta?projectKeys={project['key']}&expand=projects.issuetypes.fields",
+ headers=headers,
+ )
+ if project_response.status_code == 200:
+ project_metadata = project_response.json()
+ if len(project_metadata["projects"]) == 0:
+ logger.warning(
+ f"No project metadata found for project {project['key']}, setting empty issue types"
+ )
+ issue_types = []
+ else:
+ issue_types = [
+ issue_type["name"]
+ for issue_type in project_metadata["projects"][0][
+ "issuetypes"
+ ]
+ ]
+ else:
+ raise JiraGetAvailableIssueTypesResponseError(
+ message="Failed to get available issue types from Jira",
+ file=os.path.basename(__file__),
+ )
+ projects_data[project["key"]] = {
+ "name": project["name"],
+ "issue_types": issue_types,
+ }
+ return projects_data
+ else:
+ logger.error(
+ f"Failed to get projects: {response.status_code} - {response.text}"
+ )
+ raise JiraGetProjectsResponseError(
+ message="Failed to get projects from Jira",
+ file=os.path.basename(__file__),
+ )
+ except JiraNoProjectsError as no_projects_error:
+ raise no_projects_error
+ except JiraGetAvailableIssueTypesResponseError as issue_types_error:
+ raise JiraGetProjectsError(
+ message=f"Failed to get projects and issue types from Jira: {issue_types_error}",
+ file=os.path.basename(__file__),
+ )
+ except JiraRefreshTokenError as refresh_error:
+ raise refresh_error
+ except JiraRefreshTokenResponseError as response_error:
+ raise response_error
+ except Exception as e:
+ logger.error(f"Failed to get projects: {e}")
+ raise JiraGetProjectsError(
+ message="Failed to get projects from Jira",
+ file=os.path.basename(__file__),
+ )
+
@staticmethod
def get_color_from_status(status: str) -> str:
"""Get the color from the status
@@ -699,6 +790,9 @@ class Jira:
return "#FF0000"
if status == "MUTED":
return "#FFA500"
+ if status == "MANUAL":
+ return "#FFFF00"
+ return "#000000"
@staticmethod
def get_severity_color(severity: str) -> str:
diff --git a/prowler/providers/aws/lib/security_hub/security_hub.py b/prowler/providers/aws/lib/security_hub/security_hub.py
index b2809b25a4..5dcd0b199c 100644
--- a/prowler/providers/aws/lib/security_hub/security_hub.py
+++ b/prowler/providers/aws/lib/security_hub/security_hub.py
@@ -1,7 +1,7 @@
import os
from concurrent.futures import ThreadPoolExecutor, as_completed
from dataclasses import dataclass
-from typing import Optional
+from typing import Optional, Union
from boto3 import Session
from botocore.client import ClientError
@@ -219,7 +219,7 @@ class SecurityHub:
session: Session,
aws_account_id: str,
aws_partition: str,
- ) -> tuple[str, Session | None]:
+ ) -> tuple[str, Union[Session, None]]:
"""
Check if Security Hub is enabled in a specific region and if Prowler integration is active.
diff --git a/prowler/providers/azure/lib/service/service.py b/prowler/providers/azure/lib/service/service.py
index 83ed9031f4..b91fd51f56 100644
--- a/prowler/providers/azure/lib/service/service.py
+++ b/prowler/providers/azure/lib/service/service.py
@@ -25,6 +25,9 @@ class AzureService:
try:
if "GraphServiceClient" in str(service):
clients.update({identity.tenant_domain: service(credentials=session)})
+ elif "LogsQueryClient" in str(service):
+ for display_name, id in identity.subscriptions.items():
+ clients.update({display_name: service(credential=session)})
else:
for display_name, id in identity.subscriptions.items():
clients.update(
diff --git a/prowler/providers/azure/services/apim/__init__.py b/prowler/providers/azure/services/apim/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/prowler/providers/azure/services/apim/apim_client.py b/prowler/providers/azure/services/apim/apim_client.py
new file mode 100644
index 0000000000..d435153f3a
--- /dev/null
+++ b/prowler/providers/azure/services/apim/apim_client.py
@@ -0,0 +1,4 @@
+from prowler.providers.azure.services.apim.apim_service import APIM
+from prowler.providers.common.provider import Provider
+
+apim_client = APIM(Provider.get_global_provider())
diff --git a/prowler/providers/azure/services/apim/apim_service.py b/prowler/providers/azure/services/apim/apim_service.py
new file mode 100644
index 0000000000..793eb727c3
--- /dev/null
+++ b/prowler/providers/azure/services/apim/apim_service.py
@@ -0,0 +1,252 @@
+from datetime import datetime, timedelta
+from typing import List, Optional
+
+from azure.mgmt.apimanagement import ApiManagementClient
+from pydantic.v1 import BaseModel
+
+from prowler.lib.logger import logger
+from prowler.providers.azure.azure_provider import AzureProvider
+from prowler.providers.azure.lib.service.service import AzureService
+from prowler.providers.azure.services.logs.loganalytics_client import (
+ loganalytics_client,
+)
+from prowler.providers.azure.services.logs.logsquery_client import logsquery_client
+from prowler.providers.azure.services.monitor.monitor_client import monitor_client
+
+
+class APIMInstance(BaseModel):
+ """APIM Instance model"""
+
+ id: str
+ name: str
+ location: str
+ log_analytics_workspace_id: Optional[str] = None
+
+
+class LogsQueryLogEntry(BaseModel):
+ """Represents a log entry from Azure Log Analytics query results."""
+
+ time_generated: datetime
+ operation_id: str
+ caller_ip_address: str
+ correlation_id: str
+
+
+class APIM(AzureService):
+ def __init__(self, provider: AzureProvider):
+ """Initialize the APIM service client.
+
+ Args:
+ provider: The Azure provider instance containing authentication and client configuration
+ """
+ super().__init__(ApiManagementClient, provider)
+ self.instances = self._get_instances()
+
+ def _get_workspace_customer_id(
+ self, subscription: str, workspace_arm_id: str
+ ) -> Optional[str]:
+ """Get the Customer ID (GUID) for a workspace from its full ARM ID.
+
+ This method extracts the resource group and workspace name from the ARM ID
+ and queries the Log Analytics client to retrieve the customer ID (GUID)
+ needed for workspace-specific queries.
+
+ Args:
+ subscription: The Azure subscription ID
+ workspace_arm_id: The full ARM ID of the Log Analytics workspace
+
+ Returns:
+ The customer ID (GUID) of the workspace if successful, None otherwise
+ """
+ try:
+ resource_group = workspace_arm_id.split("/")[4]
+ workspace_name = workspace_arm_id.split("/")[-1]
+
+ workspace = loganalytics_client.clients[subscription].workspaces.get(
+ resource_group_name=resource_group, workspace_name=workspace_name
+ )
+ return workspace.customer_id
+ except Exception as error:
+ logger.error(
+ f"Failed to get customer ID for workspace {workspace_arm_id}: {error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}"
+ )
+ return None
+
+ def _get_log_analytics_workspace_id(
+ self, instance_id: str, subscription: str
+ ) -> Optional[str]:
+ """Retrieve the Log Analytics workspace ARM ID from an APIM instance's diagnostic settings.
+
+ This method queries the Azure Monitor diagnostic settings for a specific APIM
+ instance to find the configured Log Analytics workspace. It specifically looks
+ for diagnostic settings that have GatewayLogs enabled, which are essential for
+ monitoring APIM API calls and operations.
+
+ Args:
+ instance_id: The ARM ID of the APIM instance
+ subscription: The Azure subscription ID
+
+ Returns:
+ The ARM ID of the Log Analytics workspace if diagnostic settings are found
+ and GatewayLogs are enabled, None otherwise
+ """
+ try:
+ diagnostic_settings = monitor_client.diagnostic_settings_with_uri(
+ subscription, instance_id, monitor_client.clients[subscription]
+ )
+ for setting in diagnostic_settings:
+ if setting.workspace_id and setting.logs:
+ for log_setting in setting.logs:
+ if (
+ log_setting.enabled
+ and log_setting.category == "GatewayLogs"
+ ):
+ logger.info(
+ f"Found enabled Log Analytics workspace for APIM instance {instance_id} with category {log_setting.category}"
+ )
+ return setting.workspace_id
+ except Exception as error:
+ logger.error(
+ f"Failed to get diagnostic settings for {instance_id}: {error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}"
+ )
+ return None
+
+ def _get_instances(self):
+ """Get all APIM instances and their configured Log Analytics workspace.
+
+ This method iterates through all accessible Azure subscriptions and retrieves
+ all APIM instances within each subscription. For each instance, it also
+ determines the associated Log Analytics workspace by checking diagnostic
+ settings. The method populates the instances dictionary with APIMInstance
+ objects containing all relevant metadata and configuration.
+
+ Returns:
+ A dictionary mapping subscription IDs to lists of APIMInstance objects.
+ Each APIMInstance contains the instance details and its associated
+ Log Analytics workspace ID if configured.
+ """
+ logger.info("APIM - Getting instances...")
+ instances = {}
+
+ for subscription, client in self.clients.items():
+ try:
+ instances.update({subscription: []})
+ apim_instances = client.api_management_service.list()
+
+ for instance in apim_instances:
+ workspace_id = self._get_log_analytics_workspace_id(
+ instance.id, subscription
+ )
+ instances[subscription].append(
+ APIMInstance(
+ id=instance.id,
+ name=instance.name,
+ location=instance.location,
+ log_analytics_workspace_id=workspace_id,
+ )
+ )
+ except Exception as error:
+ logger.error(
+ f"Subscription name: {subscription} -- {error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}"
+ )
+
+ return instances
+
+ def query_logs(
+ self,
+ subscription: str,
+ query: str,
+ timespan: timedelta,
+ workspace_customer_id: str,
+ ) -> List[LogsQueryLogEntry]:
+ """Query a specific Log Analytics workspace using its Customer ID (GUID).
+
+ This method executes Kusto Query Language (KQL) queries against a specific
+ Log Analytics workspace. It's used to retrieve log data for analysis and
+ monitoring purposes. The method handles the response parsing and converts
+ the tabular results into a list of dictionaries for easy consumption.
+
+ Args:
+ subscription: The Azure subscription ID
+ query: The KQL query string to execute
+ timespan: The time range for the query as a timedelta
+ workspace_customer_id: The customer ID (GUID) of the Log Analytics workspace
+
+ Returns:
+ A list of dictionaries where each dictionary represents a row from the
+ query results. The keys are the column names from the query response.
+ Returns an empty list if the query fails or returns no results.
+ """
+ try:
+ response = logsquery_client.clients[subscription].query_workspace(
+ workspace_id=workspace_customer_id,
+ query=query,
+ timespan=timespan,
+ )
+
+ if response.tables:
+ columns = response.tables[0].columns
+ rows = response.tables[0].rows
+ result = []
+
+ for row in rows:
+ # Create a mapping from Azure column names to our snake_case field names
+ row_dict = dict(zip(columns, row))
+ mapped_dict = {
+ "time_generated": row_dict.get("TimeGenerated"),
+ "operation_id": row_dict.get("OperationId"),
+ "caller_ip_address": row_dict.get("CallerIpAddress"),
+ "correlation_id": row_dict.get("CorrelationId"),
+ }
+ result.append(LogsQueryLogEntry(**mapped_dict))
+
+ return result
+
+ except Exception as error:
+ logger.error(
+ f"Failed to query Log Analytics workspace with customer ID {workspace_customer_id}: {error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}"
+ )
+ return []
+
+ def get_llm_operations_logs(
+ self, subscription: str, instance: APIMInstance, minutes: int = 1440
+ ) -> List[LogsQueryLogEntry]:
+ """Get LLM-related operations from the APIM instance's specific Log Analytics workspace.
+
+ This method retrieves logs related to Large Language Model (LLM) operations
+ from a specific APIM instance. It queries the GatewayLogs table in the
+ associated Log Analytics workspace to find API calls and operations that
+ may be related to LLM services. The method automatically handles the
+ translation from workspace ARM ID to customer ID for querying.
+
+ Args:
+ subscription: The Azure subscription ID
+ instance: The APIMInstance object containing the instance details
+ minutes: The time range in minutes to look back (default: 1440 = 24 hours)
+
+ Returns:
+ A list of dictionaries containing log entries with fields like
+ time_generated, operation_id, caller_ip_address, and correlation_id.
+ Returns an empty list if no workspace is configured or if the query fails.
+ """
+ if not instance.log_analytics_workspace_id:
+ logger.warning(
+ f"APIM instance {instance.name} has no configured Log Analytics workspace."
+ )
+ return []
+
+ # Translate the workspace ARM ID to the Customer ID (GUID) before querying
+ workspace_customer_id = self._get_workspace_customer_id(
+ subscription, instance.log_analytics_workspace_id
+ )
+ if not workspace_customer_id:
+ return []
+
+ query = f"""
+ ApiManagementGatewayLogs
+ | where _ResourceId has '{instance.id}'
+ | where isnotempty(OperationId)
+ | project TimeGenerated, OperationId, CallerIpAddress, CorrelationId
+ """
+ timespan = timedelta(minutes=minutes)
+ return self.query_logs(subscription, query, timespan, workspace_customer_id)
diff --git a/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/__init__.py b/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.metadata.json b/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.metadata.json
new file mode 100644
index 0000000000..1673f9cf64
--- /dev/null
+++ b/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.metadata.json
@@ -0,0 +1,34 @@
+{
+ "Provider": "azure",
+ "CheckID": "apim_threat_detection_llm_jacking",
+ "CheckTitle": "Ensure Azure API Management is protected against LLM Jacking attacks",
+ "CheckType": [],
+ "ServiceName": "apim",
+ "SubServiceName": "",
+ "ResourceIdTemplate": "",
+ "Severity": "high",
+ "ResourceType": "Azure API Management Instance",
+ "Description": "This check analyzes Azure API Management diagnostic logs in Log Analytics to detect potential LLM Jacking attacks by monitoring the frequency of LLM-related operations (ImageGenerations_Create, ChatCompletions_Create, Completions_Create) from individual IP addresses within a configurable time window.",
+ "Risk": "LLM Jacking attacks can lead to unauthorized access to AI models, potential data exfiltration, increased costs, and abuse of AI services. Attackers may use these endpoints to generate content, bypass rate limits, or access premium AI capabilities without proper authorization.",
+ "RelatedUrl": "https://learn.microsoft.com/en-us/azure/api-management/monitor-api-management",
+ "Remediation": {
+ "Code": {
+ "CLI": "",
+ "NativeIaC": "",
+ "Other": "",
+ "Terraform": ""
+ },
+ "Recommendation": {
+ "Text": "To protect against LLM Jacking attacks: 1. Enable diagnostic logging for APIM instances and send logs to Log Analytics workspace 2. Configure appropriate thresholds for LLM operation frequency monitoring 3. Set up alerts for suspicious activity patterns 4. Implement rate limiting and IP allowlisting for sensitive AI endpoints 5. Regularly review and analyze APIM access logs for anomalies",
+ "Url": "https://learn.microsoft.com/en-us/azure/api-management/monitor-api-management"
+ }
+ },
+ "Categories": [
+ "threat-detection",
+ "monitoring",
+ "logging"
+ ],
+ "DependsOn": [],
+ "RelatedTo": [],
+ "Notes": "This check requires: 1. APIM diagnostic logging to be enabled and configured to send logs to Log Analytics workspace 2. Log Analytics workspace ID and key to be configured in the audit configuration 3. Appropriate permissions to query Log Analytics workspace"
+}
diff --git a/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.py b/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.py
new file mode 100644
index 0000000000..e511b9859b
--- /dev/null
+++ b/prowler/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking.py
@@ -0,0 +1,107 @@
+from typing import List
+
+from prowler.lib.check.models import Check, Check_Report_Azure
+from prowler.providers.azure.services.apim.apim_client import apim_client
+from prowler.providers.azure.services.apim.apim_service import LogsQueryLogEntry
+
+
+class apim_threat_detection_llm_jacking(Check):
+ def execute(self):
+ findings = []
+
+ # Get configuration from audit config with defaults
+ threshold = float(
+ getattr(apim_client, "audit_config", {}).get(
+ "apim_threat_detection_llm_jacking_threshold", 0.1
+ )
+ )
+ threat_detection_minutes = getattr(apim_client, "audit_config", {}).get(
+ "apim_threat_detection_llm_jacking_minutes", 1440
+ )
+ monitored_actions = getattr(apim_client, "audit_config", {}).get(
+ "apim_threat_detection_llm_jacking_actions",
+ [
+ # OpenAI API endpoints
+ "ImageGenerations_Create",
+ "ChatCompletions_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ # Azure OpenAI endpoints
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ # Anthropic endpoints
+ "Messages_Create",
+ "Claude_Create",
+ # Google AI endpoints
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ # Meta AI endpoints
+ "Llama_Create",
+ "CodeLlama_Create",
+ # Other LLM endpoints
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
+ )
+
+ # 1. Aggregate logs from all APIM instances first
+ all_llm_logs: List[LogsQueryLogEntry] = []
+ for subscription, instances in apim_client.instances.items():
+ for instance in instances:
+ if instance.log_analytics_workspace_id:
+ logs = apim_client.get_llm_operations_logs(
+ subscription, instance, threat_detection_minutes
+ )
+ all_llm_logs.extend(logs)
+
+ # 2. Perform a single, global analysis on all collected logs
+ potential_llm_jacking_attackers = {}
+ for log in all_llm_logs:
+ operation_name = log.operation_id
+ caller_ip = log.caller_ip_address
+
+ if operation_name in monitored_actions and caller_ip:
+ # Use IP address as the principal identifier
+ if caller_ip not in potential_llm_jacking_attackers:
+ potential_llm_jacking_attackers[caller_ip] = set()
+ potential_llm_jacking_attackers[caller_ip].add(operation_name)
+
+ # 3. Check each principal against the threshold and report failures
+ found_potential_llm_jacking_attackers = False
+ for (
+ principal_ip,
+ distinct_actions,
+ ) in potential_llm_jacking_attackers.items():
+ action_ratio = round(len(distinct_actions) / len(monitored_actions), 2)
+
+ if action_ratio > threshold:
+ found_potential_llm_jacking_attackers = True
+ # Build Identity resource for the report
+ resource = {
+ "name": principal_ip,
+ "id": principal_ip,
+ }
+ # Report against the subscription, identifying the offending principal (IP)
+ report = Check_Report_Azure(self.metadata(), resource=resource)
+ report.subscription = subscription
+ report.status = "FAIL"
+ report.status_extended = f"Potential LLM Jacking attack detected from IP address {principal_ip} with a threshold of {action_ratio}."
+ findings.append(report)
+
+ # 4. If no threats were found after checking all principals, create a single PASS report
+ if not found_potential_llm_jacking_attackers:
+ report = Check_Report_Azure(self.metadata(), resource={})
+ report.resource_name = "Azure API Management"
+ report.resource_id = "Azure API Management"
+ report.subscription = subscription
+ report.status = "PASS"
+ report.status_extended = f"No potential LLM Jacking attacks detected across all monitored APIM instances in the last {threat_detection_minutes} minutes."
+ findings.append(report)
+
+ return findings
diff --git a/prowler/providers/azure/services/logs/__init__.py b/prowler/providers/azure/services/logs/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/prowler/providers/azure/services/logs/loganalytics_client.py b/prowler/providers/azure/services/logs/loganalytics_client.py
new file mode 100644
index 0000000000..dc7ef16f68
--- /dev/null
+++ b/prowler/providers/azure/services/logs/loganalytics_client.py
@@ -0,0 +1,4 @@
+from prowler.providers.azure.services.logs.logs_service import LogAnalytics
+from prowler.providers.common.provider import Provider
+
+loganalytics_client = LogAnalytics(Provider.get_global_provider())
diff --git a/prowler/providers/azure/services/logs/logs_service.py b/prowler/providers/azure/services/logs/logs_service.py
new file mode 100644
index 0000000000..e0a2cf07e5
--- /dev/null
+++ b/prowler/providers/azure/services/logs/logs_service.py
@@ -0,0 +1,15 @@
+from azure.mgmt.loganalytics import LogAnalyticsManagementClient
+from azure.monitor.query import LogsQueryClient
+
+from prowler.providers.azure.azure_provider import AzureProvider
+from prowler.providers.azure.lib.service.service import AzureService
+
+
+class LogsQuery(AzureService):
+ def __init__(self, provider: AzureProvider):
+ super().__init__(LogsQueryClient, provider)
+
+
+class LogAnalytics(AzureService):
+ def __init__(self, provider: AzureProvider):
+ super().__init__(LogAnalyticsManagementClient, provider)
diff --git a/prowler/providers/azure/services/logs/logsquery_client.py b/prowler/providers/azure/services/logs/logsquery_client.py
new file mode 100644
index 0000000000..0aabde0c24
--- /dev/null
+++ b/prowler/providers/azure/services/logs/logsquery_client.py
@@ -0,0 +1,4 @@
+from prowler.providers.azure.services.logs.logs_service import LogsQuery
+from prowler.providers.common.provider import Provider
+
+logsquery_client = LogsQuery(Provider.get_global_provider())
diff --git a/prowler/providers/azure/services/monitor/monitor_service.py b/prowler/providers/azure/services/monitor/monitor_service.py
index b4542a7b14..948b0cceec 100644
--- a/prowler/providers/azure/services/monitor/monitor_service.py
+++ b/prowler/providers/azure/services/monitor/monitor_service.py
@@ -56,6 +56,7 @@ class Monitor(AzureService):
for log_settings in (getattr(setting, "logs", []) or [])
],
storage_account_id=setting.storage_account_id,
+ workspace_id=getattr(setting, "workspace_id", None),
)
)
except Exception as error:
@@ -112,6 +113,7 @@ class DiagnosticSetting:
storage_account_name: str
logs: List[LogSettings]
name: str
+ workspace_id: Optional[str] = None
@dataclass
diff --git a/prowler/providers/m365/lib/powershell/m365_powershell.py b/prowler/providers/m365/lib/powershell/m365_powershell.py
index 26380ae2a2..be36964b11 100644
--- a/prowler/providers/m365/lib/powershell/m365_powershell.py
+++ b/prowler/providers/m365/lib/powershell/m365_powershell.py
@@ -77,7 +77,7 @@ class M365PowerShell(PowerShellSession):
Initialize PowerShell credential object for Microsoft 365 authentication.
Supports three authentication methods:
- 1. User authentication (username/password) - Will be deprecated in September 2025
+ 1. User authentication (username/password) - Will be deprecated in October 2025
2. Application authentication (client_id/client_secret)
3. Certificate authentication (certificate_content in base64/application_id)
@@ -115,7 +115,7 @@ class M365PowerShell(PowerShellSession):
self.execute(f'$tenantID = "{sanitized_tenant_id}"')
self.execute(f'$tenantDomain = "{credentials.tenant_domains[0]}"')
- # User Auth (Will be deprecated in September 2025)
+ # User Auth (Will be deprecated in October 2025)
elif credentials.user and credentials.passwd:
credentials.encrypted_passwd = self.encrypt_password(credentials.passwd)
diff --git a/pyproject.toml b/pyproject.toml
index 4308b55f91..d1381c298f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -35,6 +35,9 @@ dependencies = [
"azure-mgmt-storage==22.1.1",
"azure-mgmt-subscription==3.1.1",
"azure-mgmt-web==8.0.0",
+ "azure-mgmt-apimanagement==5.0.0",
+ "azure-mgmt-loganalytics==12.0.0",
+ "azure-monitor-query==2.0.0",
"azure-storage-blob==12.24.1",
"boto3==1.39.15",
"botocore==1.39.15",
@@ -71,7 +74,7 @@ maintainers = [{name = "Prowler Engineering", email = "engineering@prowler.com"}
name = "prowler"
readme = "README.md"
requires-python = ">3.9.1,<3.13"
-version = "5.11.0"
+version = "5.12.0"
[project.scripts]
prowler = "prowler.__main__:prowler"
diff --git a/tests/lib/check/models_test.py b/tests/lib/check/models_test.py
index 83b294f171..a992da946c 100644
--- a/tests/lib/check/models_test.py
+++ b/tests/lib/check/models_test.py
@@ -1,5 +1,8 @@
from unittest import mock
+import pytest
+from pydantic.v1 import ValidationError
+
from prowler.lib.check.models import CheckMetadata
from tests.lib.check.compliance_check_test import custom_compliance_metadata
@@ -325,3 +328,391 @@ class TestCheckMetada:
result = CheckMetadata.list(bulk_checks_metadata=bulk_metadata)
assert result == set()
+
+ def test_additional_urls_valid_empty_list(self):
+ """Test AdditionalURLs with valid empty list (default)"""
+ metadata = CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=[],
+ Compliance=[],
+ )
+ assert metadata.AdditionalURLs == []
+
+ def test_additional_urls_valid_with_urls(self):
+ """Test AdditionalURLs with valid URLs"""
+ valid_urls = [
+ "https://example.com/doc1",
+ "https://example.com/doc2",
+ "https://aws.amazon.com/docs",
+ ]
+ metadata = CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=valid_urls,
+ Compliance=[],
+ )
+ assert metadata.AdditionalURLs == valid_urls
+
+ def test_additional_urls_invalid_not_list(self):
+ """Test AdditionalURLs with non-list value"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs="not_a_list",
+ Compliance=[],
+ )
+ assert "AdditionalURLs must be a list" in str(exc_info.value)
+
+ def test_additional_urls_invalid_empty_items(self):
+ """Test AdditionalURLs with empty string items"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=["https://example.com", "", "https://example2.com"],
+ Compliance=[],
+ )
+ assert "AdditionalURLs cannot contain empty items" in str(exc_info.value)
+
+ def test_additional_urls_invalid_whitespace_items(self):
+ """Test AdditionalURLs with whitespace-only items"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=["https://example.com", " ", "https://example2.com"],
+ Compliance=[],
+ )
+ assert "AdditionalURLs cannot contain empty items" in str(exc_info.value)
+
+ def test_additional_urls_invalid_duplicates(self):
+ """Test AdditionalURLs with duplicate items"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check",
+ CheckTitle="Test Check",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="url1",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=[
+ "https://example.com",
+ "https://example2.com",
+ "https://example.com",
+ ],
+ Compliance=[],
+ )
+ assert "AdditionalURLs cannot contain duplicate items" in str(exc_info.value)
+
+ def test_fields_with_explicit_empty_values(self):
+ """Test that RelatedUrl and AdditionalURLs can be set to explicit empty values"""
+ metadata = CheckMetadata(
+ Provider="aws",
+ CheckID="test_check_empty_fields",
+ CheckTitle="Test Check with Empty Fields",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="", # Explicit empty string
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=[], # Explicit empty list
+ Compliance=[],
+ )
+
+ # Assert that the fields are set to empty values
+ assert metadata.RelatedUrl == ""
+ assert metadata.AdditionalURLs == []
+
+ def test_fields_default_values(self):
+ """Test that RelatedUrl and AdditionalURLs use proper defaults when not provided"""
+ metadata = CheckMetadata(
+ Provider="aws",
+ CheckID="test_check_defaults",
+ CheckTitle="Test Check with Default Fields",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ # AdditionalURLs not provided - should default to empty list via default_factory
+ Compliance=[],
+ )
+
+ # Assert that the fields use their default values
+ assert metadata.RelatedUrl == "" # Should default to empty string
+ assert metadata.AdditionalURLs == [] # Should default to empty list
+
+ def test_related_url_none_fails(self):
+ """Test that setting RelatedUrl to None raises a ValidationError"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check_none_related_url",
+ CheckTitle="Test Check with None RelatedUrl",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl=None, # This should fail
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=[],
+ Compliance=[],
+ )
+ # Should contain a validation error for RelatedUrl
+ assert "RelatedUrl" in str(exc_info.value)
+
+ def test_additional_urls_none_fails(self):
+ """Test that setting AdditionalURLs to None raises a ValidationError"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check_none_additional_urls",
+ CheckTitle="Test Check with None AdditionalURLs",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="https://example.com",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs=None, # This should fail
+ Compliance=[],
+ )
+ # Should contain the validation error we set in the validator
+ assert "AdditionalURLs must be a list" in str(exc_info.value)
+
+ def test_additional_urls_invalid_type_fails(self):
+ """Test that setting AdditionalURLs to non-list value raises a ValidationError"""
+ with pytest.raises(ValidationError) as exc_info:
+ CheckMetadata(
+ Provider="aws",
+ CheckID="test_check_invalid_additional_urls",
+ CheckTitle="Test Check with Invalid AdditionalURLs",
+ CheckType=["type1"],
+ ServiceName="test",
+ SubServiceName="subservice1",
+ ResourceIdTemplate="template1",
+ Severity="high",
+ ResourceType="resource1",
+ Description="Description 1",
+ Risk="risk1",
+ RelatedUrl="https://example.com",
+ Remediation={
+ "Code": {
+ "CLI": "cli1",
+ "NativeIaC": "native1",
+ "Other": "other1",
+ "Terraform": "terraform1",
+ },
+ "Recommendation": {"Text": "text1", "Url": "url1"},
+ },
+ Categories=["categoryone"],
+ DependsOn=["dependency1"],
+ RelatedTo=["related1"],
+ Notes="notes1",
+ AdditionalURLs="not_a_list", # This should fail
+ Compliance=[],
+ )
+ # Should contain the validation error we set in the validator
+ assert "AdditionalURLs must be a list" in str(exc_info.value)
diff --git a/tests/lib/outputs/jira/jira_test.py b/tests/lib/outputs/jira/jira_test.py
index ef9ea7be86..d85b5a7f3c 100644
--- a/tests/lib/outputs/jira/jira_test.py
+++ b/tests/lib/outputs/jira/jira_test.py
@@ -13,9 +13,11 @@ from prowler.lib.outputs.jira.exceptions.exceptions import (
JiraGetAvailableIssueTypesError,
JiraGetCloudIDError,
JiraGetProjectsError,
+ JiraGetProjectsResponseError,
JiraNoProjectsError,
JiraRefreshTokenError,
JiraRequiredCustomFieldsError,
+ JiraTestConnectionError,
)
from prowler.lib.outputs.jira.jira import Jira
@@ -293,25 +295,19 @@ class TestJiraIntegration:
with pytest.raises(JiraRefreshTokenError):
self.jira_integration.refresh_access_token()
- @patch.object(Jira, "get_access_token", return_value="valid_access_token")
- @patch.object(Jira, "get_cloud_id", return_value="test_cloud_id")
@patch.object(Jira, "get_auth", return_value=None)
- @patch("prowler.lib.outputs.jira.jira.requests.get")
- def test_test_connection_successful(
- self, mock_get, mock_get_cloud_id, mock_get_auth, mock_get_access_token
- ):
- """Test that a successful connection returns an active Connection object."""
+ @patch.object(
+ Jira,
+ "get_projects",
+ return_value={"PROJ1": "Project One", "PROJ2": "Project Two"},
+ )
+ def test_test_connection_successful(self, mock_get_projects, mock_get_auth):
+ """Test that a successful connection returns an active Connection object with projects."""
# To disable vulture
- mock_get_cloud_id = mock_get_cloud_id
+ mock_get_projects = mock_get_projects
mock_get_auth = mock_get_auth
- mock_get_access_token = mock_get_access_token
- mock_response = MagicMock()
- mock_response.status_code = 200
- mock_response.json.return_value = {"id": "test_user_id"}
- mock_get.return_value = mock_response
-
- connection = self.jira_integration.test_connection(
+ connection = Jira.test_connection(
redirect_uri=self.redirect_uri,
client_id=self.client_id,
client_secret=self.client_secret,
@@ -319,26 +315,23 @@ class TestJiraIntegration:
assert connection.is_connected
assert connection.error is None
+ assert connection.projects == {"PROJ1": "Project One", "PROJ2": "Project Two"}
- @patch.object(Jira, "get_access_token", return_value="valid_access_token")
- @patch.object(Jira, "get_cloud_id", return_value="test_cloud_id")
@patch.object(Jira, "get_basic_auth", return_value=None)
- @patch("prowler.lib.outputs.jira.jira.requests.get")
+ @patch.object(
+ Jira,
+ "get_projects",
+ return_value={"PROJ1": "Project One", "PROJ2": "Project Two"},
+ )
def test_test_connection_successful_basic_auth(
- self, mock_get, mock_get_cloud_id, mock_get_auth, mock_get_access_token
+ self, mock_get_projects, mock_get_basic_auth
):
- """Test that a successful connection returns an active Connection object."""
+ """Test that a successful connection returns an active Connection object with projects."""
# To disable vulture
- mock_get_cloud_id = mock_get_cloud_id
- mock_get_auth = mock_get_auth
- mock_get_access_token = mock_get_access_token
+ mock_get_projects = mock_get_projects
+ mock_get_basic_auth = mock_get_basic_auth
- mock_response = MagicMock()
- mock_response.status_code = 200
- mock_response.json.return_value = {"id": "test_user_id"}
- mock_get.return_value = mock_response
-
- connection = self.jira_integration_basic_auth.test_connection(
+ connection = Jira.test_connection(
user_mail=self.user_mail,
api_token=self.api_token,
domain=self.domain,
@@ -346,19 +339,20 @@ class TestJiraIntegration:
assert connection.is_connected
assert connection.error is None
+ assert connection.projects == {"PROJ1": "Project One", "PROJ2": "Project Two"}
@patch.object(
Jira,
- "get_access_token",
+ "get_auth",
side_effect=JiraAuthenticationError("Failed to authenticate with Jira"),
)
- def test_test_connection_failed(self, mock_get_access_token):
+ def test_test_connection_failed(self, mock_get_auth):
"""Test that a failed connection raises JiraAuthenticationError."""
# To disable vulture
- mock_get_access_token = mock_get_access_token
+ mock_get_auth = mock_get_auth
with pytest.raises(JiraAuthenticationError):
- self.jira_integration.test_connection(
+ Jira.test_connection(
redirect_uri=self.redirect_uri,
client_id=self.client_id,
client_secret=self.client_secret,
@@ -366,21 +360,120 @@ class TestJiraIntegration:
@patch.object(
Jira,
- "get_cloud_id",
+ "get_basic_auth",
side_effect=JiraBasicAuthError("Failed to authenticate with Jira"),
)
- def test_test_connection_failed_basic_auth(self, mock_get_access_token):
- """Test that a failed connection raises JiraAuthenticationError."""
+ def test_test_connection_failed_basic_auth(self, mock_get_basic_auth):
+ """Test that a failed connection raises JiraBasicAuthError."""
# To disable vulture
- mock_get_access_token = mock_get_access_token
+ mock_get_basic_auth = mock_get_basic_auth
with pytest.raises(JiraBasicAuthError):
- self.jira_integration_basic_auth.test_connection(
+ Jira.test_connection(
user_mail=self.user_mail,
api_token=self.api_token,
domain=self.domain,
)
+ @patch.object(Jira, "get_auth", return_value=None)
+ @patch.object(
+ Jira, "get_projects", side_effect=JiraNoProjectsError("No projects found")
+ )
+ def test_test_connection_no_projects_found(self, mock_get_projects, mock_get_auth):
+ """Test that test_connection raises JiraNoProjectsError when no projects are found."""
+ # To disable vulture
+ mock_get_projects = mock_get_projects
+ mock_get_auth = mock_get_auth
+
+ with pytest.raises(JiraNoProjectsError):
+ Jira.test_connection(
+ redirect_uri=self.redirect_uri,
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ )
+
+ @patch.object(Jira, "get_auth", return_value=None)
+ @patch.object(
+ Jira,
+ "get_projects",
+ side_effect=JiraGetProjectsResponseError("Projects request failed"),
+ )
+ def test_test_connection_projects_request_error(
+ self, mock_get_projects, mock_get_auth
+ ):
+ """Test that test_connection raises JiraGetProjectsResponseError when projects request fails."""
+ # To disable vulture
+ mock_get_projects = mock_get_projects
+ mock_get_auth = mock_get_auth
+
+ with pytest.raises(JiraGetProjectsResponseError):
+ Jira.test_connection(
+ redirect_uri=self.redirect_uri,
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ )
+
+ @patch.object(Jira, "get_auth", return_value=None)
+ @patch.object(
+ Jira, "get_projects", side_effect=JiraNoProjectsError("No projects found")
+ )
+ def test_test_connection_no_projects_found_no_exception(
+ self, mock_get_projects, mock_get_auth
+ ):
+ """Test that test_connection returns error connection object when no projects found and raise_on_exception=False."""
+ # To disable vulture
+ mock_get_projects = mock_get_projects
+ mock_get_auth = mock_get_auth
+
+ connection = Jira.test_connection(
+ redirect_uri=self.redirect_uri,
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ raise_on_exception=False,
+ )
+
+ assert not connection.is_connected
+ assert isinstance(connection.error, JiraNoProjectsError)
+
+ @patch.object(Jira, "get_auth", return_value=None)
+ @patch.object(
+ Jira,
+ "get_projects",
+ side_effect=JiraGetProjectsResponseError("Projects request failed"),
+ )
+ def test_test_connection_projects_request_error_no_exception(
+ self, mock_get_projects, mock_get_auth
+ ):
+ """Test that test_connection returns error connection object when projects request fails and raise_on_exception=False."""
+ # To disable vulture
+ mock_get_projects = mock_get_projects
+ mock_get_auth = mock_get_auth
+
+ connection = Jira.test_connection(
+ redirect_uri=self.redirect_uri,
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ raise_on_exception=False,
+ )
+
+ assert not connection.is_connected
+ assert isinstance(connection.error, JiraGetProjectsResponseError)
+
+ @patch.object(Jira, "get_auth", return_value=None)
+ @patch.object(Jira, "get_projects", side_effect=Exception("Unexpected error"))
+ def test_test_connection_unexpected_error(self, mock_get_projects, mock_get_auth):
+ """Test that test_connection raises JiraTestConnectionError on unexpected exceptions."""
+ # To disable vulture
+ mock_get_projects = mock_get_projects
+ mock_get_auth = mock_get_auth
+
+ with pytest.raises(JiraTestConnectionError):
+ Jira.test_connection(
+ redirect_uri=self.redirect_uri,
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ )
+
@patch.object(Jira, "get_access_token", return_value="valid_access_token")
@patch.object(
Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
@@ -616,6 +709,10 @@ class TestJiraIntegration:
call_args = mock_post.call_args
+ mock_post.assert_called_once()
+
+ call_args = mock_post.call_args
+
expected_url = (
"https://api.atlassian.com/ex/jira/valid_cloud_id/rest/api/3/issue"
)
@@ -736,6 +833,7 @@ class TestJiraIntegration:
mock_get_available_issue_types = mock_get_available_issue_types
mock_get_access_token = mock_get_access_token
mock_post = mock_post
+ mock_post = mock_post
with pytest.raises(JiraCreateIssueError):
self.jira_integration.send_findings(
@@ -887,7 +985,12 @@ class TestJiraIntegration:
@pytest.mark.parametrize(
"status, expected_color",
- [("FAIL", "#FF0000"), ("PASS", "#008000"), ("MUTED", "#FFA500")],
+ [
+ ("FAIL", "#FF0000"),
+ ("PASS", "#008000"),
+ ("MUTED", "#FFA500"),
+ ("MANUAL", "#FFFF00"),
+ ],
)
def test_get_color_from_status(self, status, expected_color):
"""Test that get_color_from_status returns the correct color for a status."""
@@ -907,3 +1010,270 @@ class TestJiraIntegration:
def test_get_severity_color(self, severity, expected_color):
"""Test that get_severity_color returns the correct color for a severity."""
assert self.jira_integration.get_severity_color(severity) == expected_color
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_successful(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test successful retrieval of metadata associated to projects from Jira."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ # Mock the projects response
+ mock_projects_response = MagicMock()
+ mock_projects_response.status_code = 200
+ mock_projects_response.json.return_value = [
+ {"key": "PROJ1", "name": "Project One"},
+ {"key": "PROJ2", "name": "Project Two"},
+ ]
+
+ # Mock the issue types responses
+ mock_issue_types_response_1 = MagicMock()
+ mock_issue_types_response_1.status_code = 200
+ mock_issue_types_response_1.json.return_value = {
+ "projects": [
+ {
+ "issuetypes": [
+ {"name": "Bug", "id": "1"},
+ {"name": "Task", "id": "2"},
+ ]
+ }
+ ]
+ }
+
+ mock_issue_types_response_2 = MagicMock()
+ mock_issue_types_response_2.status_code = 200
+ mock_issue_types_response_2.json.return_value = {
+ "projects": [
+ {
+ "issuetypes": [
+ {"name": "Story", "id": "3"},
+ {"name": "Epic", "id": "4"},
+ ]
+ }
+ ]
+ }
+
+ # Configure side_effect to return different responses for different calls
+ mock_get.side_effect = [
+ mock_projects_response,
+ mock_issue_types_response_1,
+ mock_issue_types_response_2,
+ ]
+
+ jira_metadata = self.jira_integration.get_metadata()
+
+ expected_result = {
+ "PROJ1": {
+ "name": "Project One",
+ "issue_types": ["Bug", "Task"],
+ },
+ "PROJ2": {
+ "name": "Project Two",
+ "issue_types": ["Story", "Epic"],
+ },
+ }
+
+ assert jira_metadata == expected_result
+
+ # Verify the correct number of calls were made
+ assert mock_get.call_count == 3
+
+ # Verify the URLs called
+ calls = mock_get.call_args_list
+ assert (
+ calls[0][0][0]
+ == "https://api.atlassian.com/ex/jira/test_cloud_id/rest/api/3/project"
+ )
+ assert "projectKeys=PROJ1" in calls[1][0][0]
+ assert "projectKeys=PROJ2" in calls[2][0][0]
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_no_projects_found(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test that get_metadata raises JiraNoProjectsError when no projects are found."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ mock_response = MagicMock()
+ mock_response.status_code = 200
+ mock_response.json.return_value = []
+ mock_get.return_value = mock_response
+
+ with pytest.raises(JiraNoProjectsError):
+ self.jira_integration.get_metadata()
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_projects_response_error(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test that get_metadata raises JiraGetProjectsError when projects request fails."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ mock_response = MagicMock()
+ mock_response.status_code = 404
+ mock_response.text = "Not Found"
+ mock_get.return_value = mock_response
+
+ with pytest.raises(JiraGetProjectsError):
+ self.jira_integration.get_metadata()
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_issue_types_response_error(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test that get_metadata raises JiraGetProjectsError when issue types request fails."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ # Mock successful projects response
+ mock_projects_response = MagicMock()
+ mock_projects_response.status_code = 200
+ mock_projects_response.json.return_value = [
+ {"key": "PROJ1", "name": "Project One"}
+ ]
+
+ # Mock failed issue types response
+ mock_issue_types_response = MagicMock()
+ mock_issue_types_response.status_code = 404
+
+ mock_get.side_effect = [mock_projects_response, mock_issue_types_response]
+
+ with pytest.raises(JiraGetProjectsError):
+ self.jira_integration.get_metadata()
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_no_project_metadata(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test that get_metadata returns empty issue_types when project metadata is empty."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ # Mock successful projects response
+ mock_projects_response = MagicMock()
+ mock_projects_response.status_code = 200
+ mock_projects_response.json.return_value = [
+ {"key": "PROJ1", "name": "Project One"}
+ ]
+
+ # Mock issue types response with empty projects list
+ mock_issue_types_response = MagicMock()
+ mock_issue_types_response.status_code = 200
+ mock_issue_types_response.json.return_value = {"projects": []}
+
+ mock_get.side_effect = [mock_projects_response, mock_issue_types_response]
+
+ projects_and_issue_types = self.jira_integration.get_metadata()
+
+ expected_result = {
+ "PROJ1": {
+ "name": "Project One",
+ "issue_types": [],
+ }
+ }
+
+ assert projects_and_issue_types == expected_result
+
+ @patch.object(
+ Jira,
+ "get_access_token",
+ side_effect=JiraRefreshTokenError("Failed to refresh the access token"),
+ )
+ def test_get_projects_and_issue_types_refresh_token_error(
+ self, mock_get_access_token
+ ):
+ """Test that get_metadata raises JiraRefreshTokenError when refreshing the token fails."""
+ # To disable vulture
+ mock_get_access_token = mock_get_access_token
+
+ with pytest.raises(JiraRefreshTokenError):
+ self.jira_integration.get_metadata()
+
+ @patch.object(Jira, "get_access_token", return_value="valid_access_token")
+ @patch.object(
+ Jira, "cloud_id", new_callable=PropertyMock, return_value="test_cloud_id"
+ )
+ @patch("prowler.lib.outputs.jira.jira.requests.get")
+ def test_get_projects_and_issue_types_mixed_scenarios(
+ self, mock_get, mock_cloud_id, mock_get_access_token
+ ):
+ """Test get_metadata with mixed success and empty metadata scenarios."""
+ # To disable vulture
+ mock_cloud_id = mock_cloud_id
+ mock_get_access_token = mock_get_access_token
+
+ # Mock projects response with two projects
+ mock_projects_response = MagicMock()
+ mock_projects_response.status_code = 200
+ mock_projects_response.json.return_value = [
+ {"key": "PROJ1", "name": "Project One"},
+ {"key": "PROJ2", "name": "Project Two"},
+ ]
+
+ # Mock successful issue types response for first project
+ mock_issue_types_response_1 = MagicMock()
+ mock_issue_types_response_1.status_code = 200
+ mock_issue_types_response_1.json.return_value = {
+ "projects": [
+ {
+ "issuetypes": [
+ {"name": "Bug", "id": "1"},
+ {"name": "Task", "id": "2"},
+ ]
+ }
+ ]
+ }
+
+ # Mock empty issue types response for second project
+ mock_issue_types_response_2 = MagicMock()
+ mock_issue_types_response_2.status_code = 200
+ mock_issue_types_response_2.json.return_value = {"projects": []}
+
+ mock_get.side_effect = [
+ mock_projects_response,
+ mock_issue_types_response_1,
+ mock_issue_types_response_2,
+ ]
+
+ projects_and_issue_types = self.jira_integration.get_metadata()
+
+ expected_result = {
+ "PROJ1": {
+ "name": "Project One",
+ "issue_types": ["Bug", "Task"],
+ },
+ "PROJ2": {
+ "name": "Project Two",
+ "issue_types": [],
+ },
+ }
+
+ assert projects_and_issue_types == expected_result
diff --git a/tests/providers/aws/lib/security_hub/security_hub_test.py b/tests/providers/aws/lib/security_hub/security_hub_test.py
index 17dec4505c..0ee74a4c30 100644
--- a/tests/providers/aws/lib/security_hub/security_hub_test.py
+++ b/tests/providers/aws/lib/security_hub/security_hub_test.py
@@ -1283,3 +1283,167 @@ class TestSecurityHub:
assert connection.error is None
assert len(connection.enabled_regions) == 1
assert len(connection.disabled_regions) == 1
+
+ # Tests for _check_region_security_hub static method
+ @patch("botocore.client.BaseClient._make_api_call", new=mock_make_api_call)
+ def test_check_region_security_hub_success(self):
+ # Test successful security hub check
+ mock_session = session.Session(region_name=AWS_REGION_EU_WEST_1)
+
+ region, client = SecurityHub._check_region_security_hub(
+ region=AWS_REGION_EU_WEST_1,
+ session=mock_session,
+ aws_account_id=AWS_ACCOUNT_NUMBER,
+ aws_partition=AWS_COMMERCIAL_PARTITION,
+ )
+
+ assert region == AWS_REGION_EU_WEST_1
+ assert client is not None
+ assert hasattr(client, "_make_api_call")
+
+ def test_check_region_security_hub_invalid_access_exception(self, caplog):
+ caplog.set_level(WARNING)
+
+ with patch("boto3.Session.client") as mock_client:
+ error_message = (
+ f"Account {AWS_ACCOUNT_NUMBER} is not subscribed to AWS Security Hub"
+ )
+ error_code = "InvalidAccessException"
+ error_response = {
+ "Error": {
+ "Code": error_code,
+ "Message": error_message,
+ }
+ }
+ operation_name = "DescribeHub"
+ mock_client.side_effect = ClientError(error_response, operation_name)
+
+ mock_session = session.Session(region_name=AWS_REGION_EU_WEST_1)
+
+ region, client = SecurityHub._check_region_security_hub(
+ region=AWS_REGION_EU_WEST_1,
+ session=mock_session,
+ aws_account_id=AWS_ACCOUNT_NUMBER,
+ aws_partition=AWS_COMMERCIAL_PARTITION,
+ )
+
+ assert region == AWS_REGION_EU_WEST_1
+ assert client is None
+
+ # Check that warning was logged for InvalidAccessException
+ log_pattern = re.compile(
+ r"ClientError -- \[\d+\]: An error occurred \({error_code}\) when calling the {operation_name} operation: {error_message}".format(
+ error_code=re.escape(error_code),
+ operation_name=re.escape(operation_name),
+ error_message=re.escape(error_message),
+ )
+ )
+ assert any(
+ log_pattern.match(record.message) for record in caplog.records
+ ), "Expected log message not found"
+
+ def test_check_region_security_hub_prowler_integration_not_enabled(self, caplog):
+ from logging import INFO
+
+ caplog.set_level(INFO)
+
+ with patch("boto3.Session.client") as mock_client:
+ mock_security_hub_client = mock_client.return_value
+ mock_security_hub_client.describe_hub.return_value = {}
+ mock_security_hub_client.list_enabled_products_for_import.return_value = {
+ "ProductSubscriptions": []
+ }
+
+ mock_session = session.Session(region_name=AWS_REGION_EU_WEST_1)
+
+ region, client = SecurityHub._check_region_security_hub(
+ region=AWS_REGION_EU_WEST_1,
+ session=mock_session,
+ aws_account_id=AWS_ACCOUNT_NUMBER,
+ aws_partition=AWS_COMMERCIAL_PARTITION,
+ )
+
+ assert region == AWS_REGION_EU_WEST_1
+ assert client is None
+
+ # Check that warning was logged for missing Prowler integration
+ assert caplog.record_tuples == [
+ (
+ "root",
+ INFO,
+ f"Checking if the prowler/prowler is enabled in the {AWS_REGION_EU_WEST_1} region.",
+ ),
+ (
+ "root",
+ WARNING,
+ f"Security Hub is enabled in {AWS_REGION_EU_WEST_1} but Prowler integration does not accept findings. More info: https://docs.prowler.cloud/en/latest/tutorials/aws/securityhub/",
+ ),
+ ]
+
+ def test_check_region_security_hub_other_client_error(self, caplog):
+ caplog.set_level(WARNING)
+
+ with patch("boto3.Session.client") as mock_client:
+ error_message = "Some other error"
+ error_code = "SomeOtherException"
+ error_response = {
+ "Error": {
+ "Code": error_code,
+ "Message": error_message,
+ }
+ }
+ operation_name = "DescribeHub"
+ mock_client.side_effect = ClientError(error_response, operation_name)
+
+ mock_session = session.Session(region_name=AWS_REGION_EU_WEST_1)
+
+ region, client = SecurityHub._check_region_security_hub(
+ region=AWS_REGION_EU_WEST_1,
+ session=mock_session,
+ aws_account_id=AWS_ACCOUNT_NUMBER,
+ aws_partition=AWS_COMMERCIAL_PARTITION,
+ )
+
+ assert region == AWS_REGION_EU_WEST_1
+ assert client is None
+
+ # Check that error was logged for other ClientError
+ log_pattern = re.compile(
+ r"ClientError -- \[\d+\]: An error occurred \({error_code}\) when calling the {operation_name} operation: {error_message}".format(
+ error_code=re.escape(error_code),
+ operation_name=re.escape(operation_name),
+ error_message=re.escape(error_message),
+ )
+ )
+ assert any(
+ log_pattern.match(record.message) for record in caplog.records
+ ), "Expected log message not found"
+
+ def test_check_region_security_hub_generic_exception(self, caplog):
+ caplog.set_level(WARNING)
+
+ with patch("boto3.Session.client") as mock_client:
+ error_message = "Generic exception occurred"
+ mock_client.side_effect = Exception(error_message)
+
+ mock_session = session.Session(region_name=AWS_REGION_EU_WEST_1)
+
+ region, client = SecurityHub._check_region_security_hub(
+ region=AWS_REGION_EU_WEST_1,
+ session=mock_session,
+ aws_account_id=AWS_ACCOUNT_NUMBER,
+ aws_partition=AWS_COMMERCIAL_PARTITION,
+ )
+
+ assert region == AWS_REGION_EU_WEST_1
+ assert client is None
+
+ # Check that error was logged for generic exception
+ log_pattern = re.compile(
+ r"Exception -- \[\d+\]: {error_message}".format(
+ error_message=re.escape(error_message),
+ )
+ )
+ assert any(
+ log_pattern.match(record.message) for record in caplog.records
+ ), "Expected log message not found"
diff --git a/tests/providers/azure/azure_provider_test.py b/tests/providers/azure/azure_provider_test.py
index 5796b15ada..a0c8a5e5d4 100644
--- a/tests/providers/azure/azure_provider_test.py
+++ b/tests/providers/azure/azure_provider_test.py
@@ -92,6 +92,30 @@ class TestAzureProvider:
"Standard_D4s_v3",
],
"defender_attack_path_minimal_risk_level": "High",
+ "apim_threat_detection_llm_jacking_threshold": 0.1,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ImageGenerations_Create",
+ "ChatCompletions_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ "Messages_Create",
+ "Claude_Create",
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ "Llama_Create",
+ "CodeLlama_Create",
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
}
def test_azure_provider_not_auth_methods(self):
diff --git a/tests/providers/azure/services/apim/__init__.py b/tests/providers/azure/services/apim/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tests/providers/azure/services/apim/apim_service_test.py b/tests/providers/azure/services/apim/apim_service_test.py
new file mode 100644
index 0000000000..3b1a061293
--- /dev/null
+++ b/tests/providers/azure/services/apim/apim_service_test.py
@@ -0,0 +1,318 @@
+from datetime import timedelta
+from unittest import TestCase, mock
+from unittest.mock import patch
+
+from azure.mgmt.loganalytics.models import Workspace
+from azure.mgmt.monitor.models import DiagnosticSettingsResource
+from azure.monitor.query import LogsQueryResult
+
+from tests.providers.azure.azure_fixtures import (
+ AZURE_SUBSCRIPTION_ID,
+ set_mocked_azure_provider,
+)
+
+# Define constants for reusable mock data
+APIM_INSTANCE_ID = f"/subscriptions/{AZURE_SUBSCRIPTION_ID}/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apim1"
+APIM_INSTANCE_NAME = "apim1"
+LOCATION = "West US"
+RESOURCE_GROUP = "rg"
+WORKSPACE_ID = f"/subscriptions/{AZURE_SUBSCRIPTION_ID}/resourcegroups/rg/providers/microsoft.operationalinsights/workspaces/loganalytics"
+WORKSPACE_CUSTOMER_ID = "12345678-1234-1234-1234-1234567890ab"
+
+
+def mock_apim_get_instances(_):
+ """Mock function to replace APIM._get_instances."""
+ from prowler.providers.azure.services.apim.apim_service import APIMInstance
+
+ return {
+ AZURE_SUBSCRIPTION_ID: [
+ APIMInstance(
+ id=APIM_INSTANCE_ID,
+ name=APIM_INSTANCE_NAME,
+ location=LOCATION,
+ log_analytics_workspace_id=WORKSPACE_ID,
+ )
+ ]
+ }
+
+
+class Test_APIM_Service(TestCase):
+ def test_get_client(self):
+ """Test that the APIM service client is created correctly."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with (
+ patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ apim = APIM(set_mocked_azure_provider())
+ self.assertEqual(
+ apim.clients[AZURE_SUBSCRIPTION_ID].__class__.__name__,
+ "ApiManagementClient",
+ )
+
+ def test_get_subscriptions(self):
+ """Test that subscriptions are retrieved correctly."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with (
+ patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ apim = APIM(set_mocked_azure_provider())
+ self.assertEqual(apim.subscriptions.__class__.__name__, "dict")
+
+ def test_get_instances(self):
+ """Test that APIM instances are retrieved and parsed correctly."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with (
+ patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ new=mock_apim_get_instances,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ apim = APIM(set_mocked_azure_provider())
+ self.assertEqual(len(apim.instances), 1)
+ self.assertEqual(len(apim.instances[AZURE_SUBSCRIPTION_ID]), 1)
+ instance = apim.instances[AZURE_SUBSCRIPTION_ID][0]
+ self.assertEqual(instance.id, APIM_INSTANCE_ID)
+ self.assertEqual(instance.name, APIM_INSTANCE_NAME)
+ self.assertEqual(instance.location, LOCATION)
+ self.assertEqual(instance.log_analytics_workspace_id, WORKSPACE_ID)
+
+ def test_get_log_analytics_workspace_id_success(self):
+ """Test retrieving a Log Analytics workspace ID successfully."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with (
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.monitor_client"
+ ) as mock_monitor_client,
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ mock_log_setting = mock.MagicMock(enabled=True, category="GatewayLogs")
+ mock_setting = DiagnosticSettingsResource(
+ workspace_id=WORKSPACE_ID, logs=[mock_log_setting]
+ )
+ mock_monitor_client.diagnostic_settings_with_uri.return_value = [
+ mock_setting
+ ]
+ workspace_id = apim._get_log_analytics_workspace_id(
+ APIM_INSTANCE_ID, AZURE_SUBSCRIPTION_ID
+ )
+ self.assertEqual(workspace_id, WORKSPACE_ID)
+
+ def test_get_log_analytics_workspace_id_not_enabled(self):
+ """Test that no workspace ID is returned if GatewayLogs are not enabled."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with (
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.monitor_client"
+ ) as mock_monitor_client,
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ mock_log_setting = mock.MagicMock(enabled=False, category="GatewayLogs")
+ mock_setting = DiagnosticSettingsResource(
+ workspace_id=WORKSPACE_ID, logs=[mock_log_setting]
+ )
+ mock_monitor_client.diagnostic_settings_with_uri.return_value = [
+ mock_setting
+ ]
+ workspace_id = apim._get_log_analytics_workspace_id(
+ APIM_INSTANCE_ID, AZURE_SUBSCRIPTION_ID
+ )
+ self.assertIsNone(workspace_id)
+
+ def test_get_workspace_customer_id_success(self):
+ """Test retrieving a workspace customer ID successfully."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with (
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.loganalytics_client"
+ ) as mock_loganalytics_client,
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ mock_workspace = Workspace(location=LOCATION)
+ # Set customer_id after creation since it's readonly
+ mock_workspace.customer_id = WORKSPACE_CUSTOMER_ID
+
+ # Properly mock the nested client structure
+ mock_client = mock.MagicMock()
+ mock_workspaces = mock.MagicMock()
+ mock_workspaces.get.return_value = mock_workspace
+ mock_client.workspaces = mock_workspaces
+ mock_loganalytics_client.clients = {AZURE_SUBSCRIPTION_ID: mock_client}
+
+ customer_id = apim._get_workspace_customer_id(
+ AZURE_SUBSCRIPTION_ID, WORKSPACE_ID
+ )
+ self.assertEqual(customer_id, WORKSPACE_CUSTOMER_ID)
+
+ def test_query_logs_success(self):
+ """Test querying logs successfully."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with (
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.logsquery_client"
+ ) as mock_logsquery_client,
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ # Create a mock table with the expected structure for LogsQueryLogEntry
+ mock_table = mock.MagicMock()
+ mock_table.columns = [
+ "TimeGenerated",
+ "OperationId",
+ "CallerIpAddress",
+ "CorrelationId",
+ ]
+ from datetime import datetime
+
+ mock_table.rows = [
+ [
+ datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ "test-operation",
+ "192.168.1.100",
+ "test-correlation",
+ ]
+ ]
+
+ mock_response = LogsQueryResult(tables=[mock_table], status="Success")
+
+ # Properly mock the nested client structure
+ mock_client = mock.MagicMock()
+ mock_client.query_workspace.return_value = mock_response
+ mock_logsquery_client.clients = {AZURE_SUBSCRIPTION_ID: mock_client}
+
+ result = apim.query_logs(
+ AZURE_SUBSCRIPTION_ID,
+ "query",
+ timedelta(minutes=60),
+ WORKSPACE_CUSTOMER_ID,
+ )
+ self.assertEqual(len(result), 1)
+ # The result should be LogsQueryLogEntry objects
+ from datetime import datetime
+
+ self.assertEqual(
+ result[0].time_generated,
+ datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ )
+ self.assertEqual(result[0].operation_id, "test-operation")
+ self.assertEqual(result[0].caller_ip_address, "192.168.1.100")
+ self.assertEqual(result[0].correlation_id, "test-correlation")
+
+ def test_get_llm_operations_logs_no_workspace_id(self):
+ """Test getting logs when the APIM instance has no workspace configured."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ return_value={},
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ instance = mock.MagicMock(
+ log_analytics_workspace_id=None, name="test-apim"
+ )
+ result = apim.get_llm_operations_logs(AZURE_SUBSCRIPTION_ID, instance)
+ self.assertEqual(result, [])
+
+ def test_get_llm_operations_logs_success(self):
+ """Test the successful retrieval of LLM operation logs."""
+ mock_provider = mock.MagicMock()
+ mock_provider.identity = mock.MagicMock()
+ with patch(
+ "prowler.providers.azure.azure_provider.Provider.get_global_provider",
+ return_value=mock_provider,
+ ):
+ from prowler.providers.azure.services.apim.apim_service import APIM
+
+ with (
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_instances",
+ new=mock_apim_get_instances,
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM.query_logs",
+ return_value=[{"log": "data"}],
+ ),
+ patch(
+ "prowler.providers.azure.services.apim.apim_service.APIM._get_workspace_customer_id",
+ return_value=WORKSPACE_CUSTOMER_ID,
+ ),
+ ):
+ apim = APIM(set_mocked_azure_provider())
+ instance = apim.instances[AZURE_SUBSCRIPTION_ID][0]
+ result = apim.get_llm_operations_logs(AZURE_SUBSCRIPTION_ID, instance)
+ self.assertEqual(result, [{"log": "data"}])
diff --git a/tests/providers/azure/services/apim/apim_threat_detection_llm_jacking/__init__.py b/tests/providers/azure/services/apim/apim_threat_detection_llm_jacking/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tests/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking_test.py b/tests/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking_test.py
new file mode 100644
index 0000000000..d37385f585
--- /dev/null
+++ b/tests/providers/azure/services/apim/apim_threat_detection_llm_jacking/apim_threat_detection_llm_jacking_test.py
@@ -0,0 +1,491 @@
+from datetime import datetime
+from unittest import mock
+
+from tests.providers.azure.azure_fixtures import (
+ AZURE_SUBSCRIPTION_ID,
+ set_mocked_azure_provider,
+)
+
+
+# Create a mock LogsQueryLogEntry class for testing
+class MockLogsQueryLogEntry:
+ def __init__(self, **kwargs):
+ for key, value in kwargs.items():
+ setattr(self, key, value)
+
+
+def mock_get_llm_operations_logs(subscription, instance, minutes):
+ """Mock LLM operations logs for testing - returns 2 operations"""
+ return [
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ operation_id="ChatCompletions_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-1",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:01:00+00:00"),
+ operation_id="ImageGenerations_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-2",
+ ),
+ ]
+
+
+def mock_get_llm_operations_logs_6_operations(subscription, instance, minutes):
+ """Mock LLM operations logs for testing - returns 6 operations"""
+ return [
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ operation_id="ChatCompletions_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-1",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:01:00+00:00"),
+ operation_id="ImageGenerations_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-2",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:02:00+00:00"),
+ operation_id="Completions_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-3",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:03:00+00:00"),
+ operation_id="Embeddings_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-4",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:04:00+00:00"),
+ operation_id="FineTuning_Jobs_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-5",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:05:00+00:00"),
+ operation_id="Models_List",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-6",
+ ),
+ ]
+
+
+def mock_get_llm_operations_logs_2_operations(subscription, instance, minutes):
+ """Mock LLM operations logs for testing - returns 2 operations"""
+ return [
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ operation_id="ChatCompletions_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-1",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:01:00+00:00"),
+ operation_id="ImageGenerations_Create",
+ caller_ip_address="192.168.1.100",
+ correlation_id="test-correlation-id-2",
+ ),
+ ]
+
+
+def mock_get_llm_operations_logs_attacker(subscription, instance, minutes):
+ """Mock LLM operations logs showing potential attack"""
+ return [
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:00:00+00:00"),
+ operation_id="ChatCompletions_Create",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-1",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:01:00+00:00"),
+ operation_id="ImageGenerations_Create",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-2",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:02:00+00:00"),
+ operation_id="Completions_Create",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-3",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:03:00+00:00"),
+ operation_id="Embeddings_Create",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-4",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:04:00+00:00"),
+ operation_id="FineTuning_Jobs_Create",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-5",
+ ),
+ MockLogsQueryLogEntry(
+ time_generated=datetime.fromisoformat("2024-01-01T10:05:00+00:00"),
+ operation_id="Models_List",
+ caller_ip_address="10.0.0.50",
+ correlation_id="test-correlation-id-6",
+ ),
+ ]
+
+
+def mock_get_llm_operations_logs_no_workspace(subscription, instance, minutes):
+ """Mock LLM operations logs for instance without workspace"""
+ return []
+
+
+class Test_apim_threat_detection_llm_jacking:
+ def test_no_apim_instances(self):
+ """Test when there are no APIM instances"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {}
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.1,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ ],
+ }
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 0
+
+ def test_no_potential_llm_jacking(self):
+ """Test when no potential LLM jacking is detected"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {
+ AZURE_SUBSCRIPTION_ID: [
+ mock.MagicMock(
+ id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/test-apim",
+ name="test-apim",
+ log_analytics_workspace_id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.OperationalInsights/workspaces/test-workspace",
+ )
+ ]
+ }
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.9,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ "Messages_Create",
+ "Claude_Create",
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ "Llama_Create",
+ "CodeLlama_Create",
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
+ }
+ apim_client.get_llm_operations_logs = mock_get_llm_operations_logs_6_operations
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 1
+ assert result[0].status == "PASS"
+ assert (
+ "No potential LLM Jacking attacks detected" in result[0].status_extended
+ )
+ assert result[0].subscription == AZURE_SUBSCRIPTION_ID
+
+ def test_potential_llm_jacking_detected(self):
+ """Test when potential LLM jacking is detected"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {
+ AZURE_SUBSCRIPTION_ID: [
+ mock.MagicMock(
+ id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/test-apim",
+ name="test-apim",
+ log_analytics_workspace_id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.OperationalInsights/workspaces/test-workspace",
+ )
+ ]
+ }
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.1,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ ],
+ }
+ apim_client.get_llm_operations_logs = mock_get_llm_operations_logs_attacker
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 1
+ assert result[0].status == "FAIL"
+ assert (
+ "Potential LLM Jacking attack detected from IP address 10.0.0.50"
+ in result[0].status_extended
+ )
+ assert result[0].subscription == AZURE_SUBSCRIPTION_ID
+ assert result[0].resource["name"] == "10.0.0.50"
+ assert result[0].resource["id"] == "10.0.0.50"
+
+ def test_higher_threshold_no_detection(self):
+ """Test when threshold is higher and no attack is detected"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {
+ AZURE_SUBSCRIPTION_ID: [
+ mock.MagicMock(
+ id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/test-apim",
+ name="test-apim",
+ log_analytics_workspace_id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.OperationalInsights/workspaces/test-workspace",
+ )
+ ]
+ }
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.9,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ "Messages_Create",
+ "Claude_Create",
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ "Llama_Create",
+ "CodeLlama_Create",
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
+ }
+ apim_client.get_llm_operations_logs = mock_get_llm_operations_logs_6_operations
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 1
+ assert result[0].status == "PASS"
+ assert (
+ "No potential LLM Jacking attacks detected" in result[0].status_extended
+ )
+ assert result[0].subscription == AZURE_SUBSCRIPTION_ID
+
+ def test_instance_without_workspace(self):
+ """Test when APIM instance has no Log Analytics workspace configured"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {
+ AZURE_SUBSCRIPTION_ID: [
+ mock.MagicMock(
+ id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/test-apim",
+ name="test-apim",
+ log_analytics_workspace_id=None,
+ )
+ ]
+ }
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.9,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ "Messages_Create",
+ "Claude_Create",
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ "Llama_Create",
+ "CodeLlama_Create",
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
+ }
+ apim_client.get_llm_operations_logs = mock_get_llm_operations_logs_2_operations
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 1
+ assert result[0].status == "PASS"
+ assert (
+ "No potential LLM Jacking attacks detected" in result[0].status_extended
+ )
+ assert result[0].subscription == AZURE_SUBSCRIPTION_ID
+
+ def test_multiple_subscriptions(self):
+ """Test with multiple subscriptions"""
+ apim_client = mock.MagicMock()
+ apim_client.instances = {
+ AZURE_SUBSCRIPTION_ID: [
+ mock.MagicMock(
+ id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/test-apim",
+ name="test-apim",
+ log_analytics_workspace_id="/subscriptions/test-sub/resourceGroups/test-rg/providers/Microsoft.OperationalInsights/workspaces/test-workspace",
+ )
+ ],
+ "another-subscription": [
+ mock.MagicMock(
+ id="/subscriptions/another-sub/resourceGroups/test-rg/providers/Microsoft.ApiManagement/service/another-apim",
+ name="another-apim",
+ log_analytics_workspace_id="/subscriptions/another-sub/resourceGroups/test-rg/providers/Microsoft.OperationalInsights/workspaces/another-workspace",
+ )
+ ],
+ }
+ apim_client.audit_config = {
+ "apim_threat_detection_llm_jacking_threshold": 0.9,
+ "apim_threat_detection_llm_jacking_minutes": 1440,
+ "apim_threat_detection_llm_jacking_actions": [
+ "ChatCompletions_Create",
+ "ImageGenerations_Create",
+ "Completions_Create",
+ "Embeddings_Create",
+ "FineTuning_Jobs_Create",
+ "Models_List",
+ "Deployments_List",
+ "Deployments_Get",
+ "Deployments_Create",
+ "Deployments_Delete",
+ "Messages_Create",
+ "Claude_Create",
+ "GenerateContent",
+ "GenerateText",
+ "GenerateImage",
+ "Llama_Create",
+ "CodeLlama_Create",
+ "Gemini_Generate",
+ "Claude_Generate",
+ "Llama_Generate",
+ ],
+ }
+ apim_client.get_llm_operations_logs = mock_get_llm_operations_logs_2_operations
+
+ with (
+ mock.patch(
+ "prowler.providers.common.provider.Provider.get_global_provider",
+ return_value=set_mocked_azure_provider(),
+ ),
+ mock.patch(
+ "prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking.apim_client",
+ new=apim_client,
+ ),
+ ):
+ from prowler.providers.azure.services.apim.apim_threat_detection_llm_jacking.apim_threat_detection_llm_jacking import (
+ apim_threat_detection_llm_jacking,
+ )
+
+ check = apim_threat_detection_llm_jacking()
+ result = check.execute()
+
+ assert len(result) == 2
+ # Both subscriptions should have PASS results
+ for report in result:
+ assert report.status == "PASS"
+ assert (
+ "No potential LLM Jacking attacks detected"
+ in report.status_extended
+ )
diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md
index 407e76abd1..36642e0428 100644
--- a/ui/CHANGELOG.md
+++ b/ui/CHANGELOG.md
@@ -2,7 +2,22 @@
All notable changes to the **Prowler UI** are documented in this file.
-## [1.11.0] (Prowler v5.11.0 - UNRELEASED)
+## [1.11.1] (Prowler v5.11.1)
+
+### 🐞 Added
+
+- Handle API responses and errors consistently across the app [(#8621)](https://github.com/prowler-cloud/prowler/pull/8621)
+- No-permission message on the scan page [(#8624)](https://github.com/prowler-cloud/prowler/pull/8624)
+
+### 🔄 Changed
+
+- Markdown rendering in finding details page [(#8604)](https://github.com/prowler-cloud/prowler/pull/8604)
+
+### 🐞 Fixed
+- Scan page shows NoProvidersAdded when no providers [(#8626)](https://github.com/prowler-cloud/prowler/pull/8626)
+- XML field in SAML configuration form validation [(#8638)](https://github.com/prowler-cloud/prowler/pull/8638)
+
+## [1.11.0] (Prowler v5.11.0)
### 🚀 Added
@@ -25,8 +40,6 @@ All notable changes to the **Prowler UI** are documented in this file.
- Auth callback route checking working as expected [(#8556)](https://github.com/prowler-cloud/prowler/pull/8556)
- DataTable column headers set to single-line [(#8480)](https://github.com/prowler-cloud/prowler/pull/8480)
-### ❌ Removed
-
---
## [1.10.2] (Prowler v5.10.3)
diff --git a/ui/actions/compliances/compliances.ts b/ui/actions/compliances/compliances.ts
index cdc947fd8c..c29b771984 100644
--- a/ui/actions/compliances/compliances.ts
+++ b/ui/actions/compliances/compliances.ts
@@ -1,7 +1,6 @@
"use server";
-import { revalidatePath } from "next/cache";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib";
+import { apiBaseUrl, getAuthHeaders, handleApiResponse } from "@/lib";
export const getCompliancesOverview = async ({
scanId,
@@ -25,15 +24,12 @@ export const getCompliancesOverview = async ({
}
try {
- const compliances = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await compliances.json();
- const parsedData = parseStringify(data);
- revalidatePath("/compliance");
- return parsedData;
+
+ return handleApiResponse(response, "/compliance");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching providers:", error);
return undefined;
}
@@ -52,8 +48,8 @@ export const getComplianceOverviewMetadataInfo = async ({
if (sort) url.searchParams.append("sort", sort);
Object.entries(filters).forEach(([key, value]) => {
- // Define filters to exclude
- if (key !== "filter[search]") {
+ // Define filters to exclude and check for valid values
+ if (key !== "filter[search]" && value && String(value).trim() !== "") {
url.searchParams.append(key, String(value));
}
});
@@ -63,17 +59,8 @@ export const getComplianceOverviewMetadataInfo = async ({
headers,
});
- if (!response.ok) {
- throw new Error(
- `Failed to fetch compliance overview metadata info: ${response.statusText}`,
- );
- }
-
- const parsedData = parseStringify(await response.json());
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching compliance overview metadata info:", error);
return undefined;
}
@@ -90,22 +77,11 @@ export const getComplianceAttributes = async (complianceId: string) => {
headers,
});
- if (!response.ok) {
- throw new Error(
- `Failed to fetch compliance attributes: ${response.statusText}`,
- );
- }
-
- const data = await response.json();
-
- const parsedData = parseStringify(data);
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching compliance attributes:", error);
return undefined;
}
- // */
};
export const getComplianceRequirements = async ({
@@ -135,20 +111,9 @@ export const getComplianceRequirements = async ({
headers,
});
- if (!response.ok) {
- throw new Error(
- `Failed to fetch compliance requirements: ${response.statusText}`,
- );
- }
-
- const data = await response.json();
- const parsedData = parseStringify(data);
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching compliance requirements:", error);
return undefined;
}
- // */
};
diff --git a/ui/actions/findings/findings.ts b/ui/actions/findings/findings.ts
index 438459b4d2..f37e48637c 100644
--- a/ui/actions/findings/findings.ts
+++ b/ui/actions/findings/findings.ts
@@ -1,9 +1,8 @@
"use server";
-import { revalidatePath } from "next/cache";
import { redirect } from "next/navigation";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib";
+import { apiBaseUrl, getAuthHeaders, handleApiResponse } from "@/lib";
export const getFindings = async ({
page = 1,
@@ -33,12 +32,8 @@ export const getFindings = async ({
const findings = await fetch(url.toString(), {
headers,
});
- const data = await findings.json();
- const parsedData = parseStringify(data);
- revalidatePath("/findings");
- return parsedData;
+ return handleApiResponse(findings, "/findings");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching findings:", error);
return undefined;
}
@@ -74,12 +69,8 @@ export const getLatestFindings = async ({
const findings = await fetch(url.toString(), {
headers,
});
- const data = await findings.json();
- const parsedData = parseStringify(data);
- revalidatePath("/findings");
- return parsedData;
+ return handleApiResponse(findings, "/findings");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching findings:", error);
return undefined;
}
@@ -113,15 +104,8 @@ export const getMetadataInfo = async ({
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch metadata info: ${response.statusText}`);
- }
-
- const parsedData = parseStringify(await response.json());
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching metadata info:", error);
return undefined;
}
@@ -155,15 +139,8 @@ export const getLatestMetadataInfo = async ({
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch metadata info: ${response.statusText}`);
- }
-
- const parsedData = parseStringify(await response.json());
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching metadata info:", error);
return undefined;
}
@@ -176,14 +153,11 @@ export const getFindingById = async (findingId: string, include = "") => {
if (include) url.searchParams.append("include", include);
try {
- const finding = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await finding.json();
- const parsedData = parseStringify(data);
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
console.error("Error fetching finding by ID:", error);
return undefined;
diff --git a/ui/actions/integrations/index.ts b/ui/actions/integrations/index.ts
index ab4160c009..1e05de036c 100644
--- a/ui/actions/integrations/index.ts
+++ b/ui/actions/integrations/index.ts
@@ -1,7 +1,6 @@
export {
createIntegration,
deleteIntegration,
- getIntegration,
getIntegrations,
pollConnectionTestStatus,
testIntegrationConnection,
diff --git a/ui/actions/integrations/integrations.ts b/ui/actions/integrations/integrations.ts
index 2121810a50..32de22a8cc 100644
--- a/ui/actions/integrations/integrations.ts
+++ b/ui/actions/integrations/integrations.ts
@@ -2,14 +2,14 @@
import { revalidatePath } from "next/cache";
+import { getTask } from "@/actions/task";
import {
apiBaseUrl,
getAuthHeaders,
handleApiError,
+ handleApiResponse,
parseStringify,
} from "@/lib";
-
-import { getTask } from "@/actions/task";
import { IntegrationType } from "@/types/integrations";
export const getIntegrations = async (searchParams?: URLSearchParams) => {
@@ -25,39 +25,13 @@ export const getIntegrations = async (searchParams?: URLSearchParams) => {
try {
const response = await fetch(url.toString(), { method: "GET", headers });
- if (response.ok) {
- const data = await response.json();
- return parseStringify(data);
- }
-
- console.error(`Failed to fetch integrations: ${response.statusText}`);
- return { data: [], meta: { pagination: { count: 0 } } };
+ return handleApiResponse(response);
} catch (error) {
console.error("Error fetching integrations:", error);
return { data: [], meta: { pagination: { count: 0 } } };
}
};
-export const getIntegration = async (id: string) => {
- const headers = await getAuthHeaders({ contentType: false });
- const url = new URL(`${apiBaseUrl}/integrations/${id}`);
-
- try {
- const response = await fetch(url.toString(), { method: "GET", headers });
-
- if (response.ok) {
- const data = await response.json();
- return parseStringify(data);
- }
-
- console.error(`Failed to fetch integration: ${response.statusText}`);
- return null;
- } catch (error) {
- console.error("Error fetching integration:", error);
- return null;
- }
-};
-
export const createIntegration = async (
formData: FormData,
): Promise<{ success: string; integrationId?: string } | { error: string }> => {
diff --git a/ui/actions/integrations/saml.ts b/ui/actions/integrations/saml.ts
index c5bc6d18bb..782f896143 100644
--- a/ui/actions/integrations/saml.ts
+++ b/ui/actions/integrations/saml.ts
@@ -2,7 +2,7 @@
import { revalidatePath } from "next/cache";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib/helper";
+import { apiBaseUrl, getAuthHeaders, handleApiResponse } from "@/lib/helper";
import { samlConfigFormSchema } from "@/types/formSchemas";
export const createSamlConfig = async (_prevState: any, formData: FormData) => {
@@ -39,16 +39,7 @@ export const createSamlConfig = async (_prevState: any, formData: FormData) => {
}),
});
- if (!response.ok) {
- const errorData = await response.json().catch(() => ({}));
- throw new Error(
- errorData.errors?.[0]?.detail ||
- `Failed to create SAML config: ${response.statusText}`,
- );
- }
-
- await response.json();
- revalidatePath("/integrations");
+ handleApiResponse(response, "/integrations", false);
return { success: "SAML configuration created successfully!" };
} catch (error) {
console.error("Error creating SAML config:", error);
@@ -98,16 +89,7 @@ export const updateSamlConfig = async (_prevState: any, formData: FormData) => {
}),
});
- if (!response.ok) {
- const errorData = await response.json().catch(() => ({}));
- throw new Error(
- errorData.errors?.[0]?.detail ||
- `Failed to update SAML config: ${response.statusText}`,
- );
- }
-
- await response.json();
- revalidatePath("/integrations");
+ handleApiResponse(response, "/integrations", false);
return { success: "SAML configuration updated successfully!" };
} catch (error) {
console.error("Error updating SAML config:", error);
@@ -132,13 +114,7 @@ export const getSamlConfig = async () => {
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch SAML config: ${response.statusText}`);
- }
-
- const data = await response.json();
- const parsedData = parseStringify(data);
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
console.error("Error fetching SAML config:", error);
return undefined;
diff --git a/ui/actions/invitations/invitation.ts b/ui/actions/invitations/invitation.ts
index 44cbd1a455..a46b60bf11 100644
--- a/ui/actions/invitations/invitation.ts
+++ b/ui/actions/invitations/invitation.ts
@@ -6,8 +6,8 @@ import { redirect } from "next/navigation";
import {
apiBaseUrl,
getAuthHeaders,
- getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
export const getInvitations = async ({
@@ -36,15 +36,12 @@ export const getInvitations = async ({
});
try {
- const invitations = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await invitations.json();
- const parsedData = parseStringify(data);
- revalidatePath("/invitations");
- return parsedData;
+
+ return handleApiResponse(response, "/invitations");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching invitations:", error);
return undefined;
}
@@ -84,13 +81,10 @@ export const sendInvite = async (formData: FormData) => {
headers,
body,
});
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -145,13 +139,9 @@ export const updateInvite = async (formData: FormData) => {
return { error };
}
- const data = await response.json();
- revalidatePath("/invitations");
- return parseStringify(data);
+ return handleApiResponse(response, "/invitations");
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -165,12 +155,9 @@ export const getInvitationInfoById = async (invitationId: string) => {
headers,
});
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -209,8 +196,6 @@ export const revokeInvite = async (formData: FormData) => {
revalidatePath("/invitations");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error revoking invitation:", error);
- return { error: getErrorMessage(error) };
+ handleApiError(error);
}
};
diff --git a/ui/actions/manage-groups/manage-groups.ts b/ui/actions/manage-groups/manage-groups.ts
index 3b12f619f9..3ac89e29ad 100644
--- a/ui/actions/manage-groups/manage-groups.ts
+++ b/ui/actions/manage-groups/manage-groups.ts
@@ -7,7 +7,8 @@ import {
apiBaseUrl,
getAuthHeaders,
getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
import { ManageGroupPayload, ProviderGroupsResponse } from "@/types/components";
@@ -47,16 +48,8 @@ export const getProviderGroups = async ({
headers,
});
- if (!response.ok) {
- throw new Error(`Error fetching provider groups: ${response.statusText}`);
- }
-
- const data: ProviderGroupsResponse = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/manage-groups");
- return parsedData;
+ return handleApiResponse(response, "/manage-groups");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching provider groups:", error);
return undefined;
}
@@ -72,18 +65,9 @@ export const getProviderGroupInfoById = async (providerGroupId: string) => {
headers,
});
- if (!response.ok) {
- throw new Error(
- `Failed to fetch provider group info: ${response.statusText}`,
- );
- }
-
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -131,13 +115,10 @@ export const createProviderGroup = async (formData: FormData) => {
headers,
body,
});
- const data = await response.json();
- revalidatePath("/manage-groups");
- return parseStringify(data);
+
+ return handleApiResponse(response, "/manage-groups");
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -180,19 +161,9 @@ export const updateProviderGroup = async (
body: JSON.stringify(payload),
});
- if (!response.ok) {
- throw new Error(
- `Failed to update provider group: ${response.status} ${response.statusText}`,
- );
- }
-
- const data = await response.json();
- revalidatePath("/manage-groups");
- return parseStringify(data);
+ return handleApiResponse(response, "/manage-groups");
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -233,9 +204,8 @@ export const deleteProviderGroup = async (formData: FormData) => {
revalidatePath("/manage-groups");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error deleting provider group:", error);
- const message = await getErrorMessage(error);
+ const message = getErrorMessage(error);
return { errors: [{ detail: message }] };
}
};
diff --git a/ui/actions/overview/overview.ts b/ui/actions/overview/overview.ts
index 363a2b9df3..052d0f0322 100644
--- a/ui/actions/overview/overview.ts
+++ b/ui/actions/overview/overview.ts
@@ -1,8 +1,7 @@
"use server";
-import { revalidatePath } from "next/cache";
import { redirect } from "next/navigation";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib";
+import { apiBaseUrl, getAuthHeaders, handleApiResponse } from "@/lib";
export const getProvidersOverview = async ({
page = 1,
@@ -32,12 +31,8 @@ export const getProvidersOverview = async ({
headers,
});
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/");
- return parsedData;
+ return handleApiResponse(response, "/");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching providers overview:", error);
return undefined;
}
@@ -71,16 +66,8 @@ export const getFindingsByStatus = async ({
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch findings severity: ${response.status}`);
- }
-
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/");
- return parsedData;
+ return handleApiResponse(response, "/");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching findings severity overview:", error);
return undefined;
}
@@ -114,16 +101,8 @@ export const getFindingsBySeverity = async ({
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch findings severity: ${response.status}`);
- }
-
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/");
- return parsedData;
+ return handleApiResponse(response, "/");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching findings severity overview:", error);
return undefined;
}
diff --git a/ui/actions/providers/providers.ts b/ui/actions/providers/providers.ts
index 19bf794de1..58c4ccd470 100644
--- a/ui/actions/providers/providers.ts
+++ b/ui/actions/providers/providers.ts
@@ -6,11 +6,9 @@ import { redirect } from "next/navigation";
import {
apiBaseUrl,
getAuthHeaders,
- getErrorMessage,
getFormValue,
handleApiError,
handleApiResponse,
- parseStringify,
wait,
} from "@/lib";
import { buildSecretConfig } from "@/lib/provider-credentials/build-crendentials";
@@ -43,15 +41,12 @@ export const getProviders = async ({
});
try {
- const providers = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await providers.json();
- const parsedData = parseStringify(data);
- revalidatePath("/providers");
- return parsedData;
+
+ return handleApiResponse(response, "/providers");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching providers:", error);
return undefined;
}
@@ -64,16 +59,13 @@ export const getProvider = async (formData: FormData) => {
const url = new URL(`${apiBaseUrl}/providers/${providerId}`);
try {
- const providers = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await providers.json();
- const parsedData = parseStringify(data);
- return parsedData;
+
+ return handleApiResponse(response, "/providers");
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ return handleApiError(error);
}
};
@@ -129,15 +121,9 @@ export const addProvider = async (formData: FormData) => {
body: JSON.stringify(bodyData),
});
- const data = await response.json();
- revalidatePath("/providers");
- return parseStringify(data);
+ return handleApiResponse(response, "/providers");
} catch (error) {
- // eslint-disable-next-line no-console
- console.error(error);
- return {
- error: getErrorMessage(error),
- };
+ return handleApiError(error);
}
};
@@ -204,11 +190,6 @@ export const updateCredentialsProvider = async (
}),
});
- if (!response.ok) {
- const data = await response.json();
- return parseStringify(data); // Return API errors for UI handling
- }
-
return handleApiResponse(response, "/providers");
} catch (error) {
return handleApiError(error);
@@ -223,6 +204,7 @@ export const checkConnectionProvider = async (formData: FormData) => {
try {
const response = await fetch(url.toString(), { method: "POST", headers });
await wait(2000);
+
return handleApiResponse(response, "/providers");
} catch (error) {
return handleApiError(error);
@@ -263,9 +245,7 @@ export const deleteCredentials = async (secretId: string) => {
revalidatePath("/providers");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error deleting credentials:", error);
- return { error: getErrorMessage(error) };
+ handleApiError(error);
}
};
@@ -302,8 +282,6 @@ export const deleteProvider = async (formData: FormData) => {
revalidatePath("/providers");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error deleting provider:", error);
- return { error: getErrorMessage(error) };
+ handleApiError(error);
}
};
diff --git a/ui/actions/resources/resources.ts b/ui/actions/resources/resources.ts
index 4fa78104de..31c7ae21d6 100644
--- a/ui/actions/resources/resources.ts
+++ b/ui/actions/resources/resources.ts
@@ -1,9 +1,8 @@
"use server";
-import { revalidatePath } from "next/cache";
import { redirect } from "next/navigation";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib";
+import { apiBaseUrl, getAuthHeaders, handleApiResponse } from "@/lib";
export const getResources = async ({
page = 1,
@@ -43,15 +42,11 @@ export const getResources = async ({
});
try {
- const resources = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await resources.json();
- const parsedData = parseStringify(data);
-
- revalidatePath("/resources");
- return parsedData;
+ return handleApiResponse(response, "/resources");
} catch (error) {
console.error("Error fetching resources:", error);
return undefined;
@@ -96,15 +91,11 @@ export const getLatestResources = async ({
});
try {
- const resources = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await resources.json();
- const parsedData = parseStringify(data);
-
- revalidatePath("/resources");
- return parsedData;
+ return handleApiResponse(response, "/resources");
} catch (error) {
console.error("Error fetching latest resources:", error);
return undefined;
@@ -128,16 +119,12 @@ export const getMetadataInfo = async ({
});
try {
- const metadata = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await metadata.json();
- const parsedData = parseStringify(data);
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching metadata info:", error);
return undefined;
}
@@ -160,14 +147,11 @@ export const getLatestMetadataInfo = async ({
});
try {
- const metadata = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await metadata.json();
- const parsedData = parseStringify(data);
-
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
console.error("Error fetching latest metadata info:", error);
return undefined;
@@ -205,10 +189,7 @@ export const getResourceById = async (
throw new Error(`Error fetching resource: ${resource.status}`);
}
- const data = await resource.json();
- const parsedData = parseStringify(data);
-
- return parsedData;
+ return handleApiResponse(resource);
} catch (error) {
console.error("Error fetching resource by ID:", error);
return undefined;
diff --git a/ui/actions/roles/roles.ts b/ui/actions/roles/roles.ts
index e69300ab26..36295fe462 100644
--- a/ui/actions/roles/roles.ts
+++ b/ui/actions/roles/roles.ts
@@ -6,8 +6,8 @@ import { redirect } from "next/navigation";
import {
apiBaseUrl,
getAuthHeaders,
- getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
export const getRoles = async ({
@@ -36,15 +36,12 @@ export const getRoles = async ({
});
try {
- const roles = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await roles.json();
- const parsedData = parseStringify(data);
- revalidatePath("/roles");
- return parsedData;
+
+ return handleApiResponse(response, "/roles");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching roles:", error);
return undefined;
}
@@ -60,16 +57,9 @@ export const getRoleInfoById = async (roleId: string) => {
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch role info: ${response.statusText}`);
- }
-
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -92,14 +82,8 @@ export const getRolesByIds = async (roleIds: string[]) => {
headers,
});
- if (!response.ok) {
- throw new Error(`Failed to fetch roles: ${response.statusText}`);
- }
-
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching roles by IDs:", error);
return { data: [] };
}
@@ -153,15 +137,9 @@ export const addRole = async (formData: FormData) => {
body,
});
- const data = await response.json();
- revalidatePath("/roles");
- return data;
+ return handleApiResponse(response, "/roles", false);
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error during API call:", error);
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -215,15 +193,9 @@ export const updateRole = async (formData: FormData, roleId: string) => {
body,
});
- const data = await response.json();
- revalidatePath("/roles");
- return data;
+ return handleApiResponse(response, "/roles", false);
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error during API call:", error);
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -254,8 +226,6 @@ export const deleteRole = async (roleId: string) => {
revalidatePath("/roles");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error deleting role:", error);
- return { error: getErrorMessage(error) };
+ handleApiError(error);
}
};
diff --git a/ui/actions/scans/scans.ts b/ui/actions/scans/scans.ts
index 80505b3ca1..73602215ad 100644
--- a/ui/actions/scans/scans.ts
+++ b/ui/actions/scans/scans.ts
@@ -1,13 +1,13 @@
"use server";
-import { revalidatePath } from "next/cache";
import { redirect } from "next/navigation";
import {
apiBaseUrl,
getAuthHeaders,
getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
export const getScans = async ({
@@ -43,12 +43,9 @@ export const getScans = async ({
try {
const response = await fetch(url.toString(), { headers });
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/scans");
- return parsedData;
+
+ return handleApiResponse(response, "/scans");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching scans:", error);
return undefined;
}
@@ -56,9 +53,7 @@ export const getScans = async ({
export const getScansByState = async () => {
const headers = await getAuthHeaders({ contentType: false });
-
const url = new URL(`${apiBaseUrl}/scans`);
-
// Request only the necessary fields to optimize the response
url.searchParams.append("fields[scans]", "state");
@@ -67,20 +62,8 @@ export const getScansByState = async () => {
headers,
});
- if (!response.ok) {
- try {
- const errorData = await response.json();
- throw new Error(errorData?.message || "Failed to fetch scans by state");
- } catch {
- throw new Error("Failed to fetch scans by state");
- }
- }
-
- const data = await response.json();
-
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching scans by state:", error);
return undefined;
}
@@ -92,17 +75,13 @@ export const getScan = async (scanId: string) => {
const url = new URL(`${apiBaseUrl}/scans/${scanId}`);
try {
- const scan = await fetch(url.toString(), {
+ const response = await fetch(url.toString(), {
headers,
});
- const data = await scan.json();
- const parsedData = parseStringify(data);
- return parsedData;
+ return handleApiResponse(response);
} catch (error) {
- return {
- error: getErrorMessage(error),
- };
+ return handleApiError(error);
}
};
@@ -139,20 +118,9 @@ export const scanOnDemand = async (formData: FormData) => {
body: JSON.stringify(requestBody),
});
- if (!response.ok) {
- const errorData = await response.json();
-
- return { success: false, error: errorData.errors[0].detail };
- }
-
- const data = await response.json();
- revalidatePath("/scans");
-
- return parseStringify(data);
+ return handleApiResponse(response, "/scans");
} catch (error) {
- console.error("Error starting scan:", error);
-
- return { error: getErrorMessage(error) };
+ return handleApiError(error);
}
};
@@ -177,19 +145,9 @@ export const scheduleDaily = async (formData: FormData) => {
}),
});
- if (!response.ok) {
- throw new Error(`Failed to schedule daily: ${response.statusText}`);
- }
-
- const data = await response.json();
- revalidatePath("/scans");
- return parseStringify(data);
+ return handleApiResponse(response, "/scans");
} catch (error) {
- // eslint-disable-next-line no-console
- console.error(error);
- return {
- error: getErrorMessage(error),
- };
+ return handleApiError(error);
}
};
@@ -215,15 +173,10 @@ export const updateScan = async (formData: FormData) => {
},
}),
});
- const data = await response.json();
- revalidatePath("/scans");
- return parseStringify(data);
+
+ return handleApiResponse(response, "/scans");
} catch (error) {
- // eslint-disable-next-line no-console
- console.error(error);
- return {
- error: getErrorMessage(error),
- };
+ return handleApiError(error);
}
};
diff --git a/ui/actions/task/tasks.ts b/ui/actions/task/tasks.ts
index 13cff62345..cd72884566 100644
--- a/ui/actions/task/tasks.ts
+++ b/ui/actions/task/tasks.ts
@@ -3,8 +3,8 @@
import {
apiBaseUrl,
getAuthHeaders,
- getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
export const getTask = async (taskId: string) => {
@@ -16,9 +16,9 @@ export const getTask = async (taskId: string) => {
const response = await fetch(url.toString(), {
headers,
});
- const data = await response.json();
- return parseStringify(data);
+
+ return handleApiResponse(response);
} catch (error) {
- return { error: getErrorMessage(error) };
+ return handleApiError(error);
}
};
diff --git a/ui/actions/users/tenants.ts b/ui/actions/users/tenants.ts
index 9063fc9e1b..0cadab0444 100644
--- a/ui/actions/users/tenants.ts
+++ b/ui/actions/users/tenants.ts
@@ -1,9 +1,13 @@
"use server";
-import { revalidatePath } from "next/cache";
import { z } from "zod";
-import { apiBaseUrl, getAuthHeaders, parseStringify } from "@/lib/helper";
+import {
+ apiBaseUrl,
+ getAuthHeaders,
+ handleApiError,
+ handleApiResponse,
+} from "@/lib/helper";
export const getAllTenants = async () => {
const headers = await getAuthHeaders({ contentType: false });
@@ -19,12 +23,8 @@ export const getAllTenants = async () => {
throw new Error(`Failed to fetch tenants data: ${response.statusText}`);
}
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/profile");
- return parsedData;
+ return handleApiResponse(response, "/profile");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching tenants:", error);
return undefined;
}
@@ -80,16 +80,9 @@ export async function updateTenantName(prevState: any, formData: FormData) {
throw new Error(`Failed to update tenant name: ${response.statusText}`);
}
- await response.json();
- revalidatePath("/profile");
+ handleApiResponse(response, "/profile", false);
return { success: "Tenant name updated successfully!" };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error updating tenant name:", error);
- return {
- errors: {
- general: "Error updating tenant name. Please try again.",
- },
- };
+ return handleApiError(error);
}
}
diff --git a/ui/actions/users/users.ts b/ui/actions/users/users.ts
index c47c58ebbf..bc0a204d30 100644
--- a/ui/actions/users/users.ts
+++ b/ui/actions/users/users.ts
@@ -6,8 +6,8 @@ import { redirect } from "next/navigation";
import {
apiBaseUrl,
getAuthHeaders,
- getErrorMessage,
- parseStringify,
+ handleApiError,
+ handleApiResponse,
} from "@/lib";
export const getUsers = async ({
@@ -39,12 +39,9 @@ export const getUsers = async ({
const users = await fetch(url.toString(), {
headers,
});
- const data = await users.json();
- const parsedData = parseStringify(data);
- revalidatePath("/users");
- return parsedData;
+
+ return handleApiResponse(users, "/users");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching users:", error);
return undefined;
}
@@ -88,15 +85,9 @@ export const updateUser = async (formData: FormData) => {
}),
});
- const data = await response.json();
- revalidatePath("/users");
- return parseStringify(data);
+ return handleApiResponse(response, "/users");
} catch (error) {
- // eslint-disable-next-line no-console
- console.error(error);
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -129,20 +120,9 @@ export const updateUserRole = async (formData: FormData) => {
body: JSON.stringify(requestBody),
});
- const data = await response.json();
-
- if (!response.ok) {
- return { error: data.errors || "An error occurred" };
- }
-
- revalidatePath("/users"); // Update the path as needed
- return parseStringify(data);
+ return handleApiResponse(response, "/users");
} catch (error) {
- // eslint-disable-next-line no-console
- console.error(error);
- return {
- error: getErrorMessage(error),
- };
+ handleApiError(error);
}
};
@@ -178,9 +158,7 @@ export const deleteUser = async (formData: FormData) => {
revalidatePath("/users");
return data || { success: true };
} catch (error) {
- // eslint-disable-next-line no-console
- console.error("Error deleting user:", error);
- return { error: getErrorMessage(error) };
+ handleApiError(error);
}
};
@@ -198,12 +176,8 @@ export const getUserInfo = async () => {
throw new Error(`Failed to fetch user data: ${response.statusText}`);
}
- const data = await response.json();
- const parsedData = parseStringify(data);
- revalidatePath("/profile");
- return parsedData;
+ return handleApiResponse(response, "/profile");
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching profile:", error);
return undefined;
}
@@ -224,16 +198,8 @@ export const getUserMemberships = async (userId: string) => {
headers,
});
- if (!response.ok) {
- throw new Error(
- `Failed to fetch user memberships: ${response.statusText}`,
- );
- }
-
- const data = await response.json();
- return parseStringify(data);
+ return handleApiResponse(response);
} catch (error) {
- // eslint-disable-next-line no-console
console.error("Error fetching user memberships:", error);
return { data: [] };
}
diff --git a/ui/app/(prowler)/compliance/page.tsx b/ui/app/(prowler)/compliance/page.tsx
index 5a1e7fcca9..e9cd26ac23 100644
--- a/ui/app/(prowler)/compliance/page.tsx
+++ b/ui/app/(prowler)/compliance/page.tsx
@@ -91,12 +91,14 @@ export default async function Compliance({
}
: undefined;
- const metadataInfoData = await getComplianceOverviewMetadataInfo({
- query,
- filters: {
- "filter[scan_id]": selectedScanId,
- },
- });
+ const metadataInfoData = selectedScanId
+ ? await getComplianceOverviewMetadataInfo({
+ query,
+ filters: {
+ "filter[scan_id]": selectedScanId,
+ },
+ })
+ : { data: { attributes: { regions: [] } } };
const uniqueRegions = metadataInfoData?.data?.attributes?.regions || [];
@@ -140,11 +142,15 @@ const SSRComplianceGrid = async ({
// Extract query from filters
const query = (filters["filter[search]"] as string) || "";
- const compliancesData = await getCompliancesOverview({
- scanId,
- region: regionFilter,
- query,
- });
+ // Only fetch compliance data if we have a valid scanId
+ const compliancesData =
+ scanId && scanId.trim() !== ""
+ ? await getCompliancesOverview({
+ scanId,
+ region: regionFilter,
+ query,
+ })
+ : { data: [], errors: [] };
const type = compliancesData?.data?.type;
diff --git a/ui/app/(prowler)/error.tsx b/ui/app/(prowler)/error.tsx
index f1813e0ede..a2ef4650c1 100644
--- a/ui/app/(prowler)/error.tsx
+++ b/ui/app/(prowler)/error.tsx
@@ -1,35 +1,79 @@
"use client";
+import { Icon } from "@iconify/react";
import { useEffect } from "react";
-import { RocketIcon } from "@/components/icons";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui";
+import { CustomButton } from "@/components/ui/custom";
import { CustomLink } from "@/components/ui/custom/custom-link";
export default function Error({
error,
- // reset,
+ reset,
}: {
- error: Error;
+ error: Error & { digest?: string };
reset: () => void;
}) {
useEffect(() => {
- // Log the error to an error reporting service
- /* eslint-disable no-console */
- console.error(error);
+ // Check if it's a 500 error
+ const is500Error =
+ error.message?.includes("500") ||
+ error.message?.includes("502") ||
+ error.message?.includes("503") ||
+ error.message?.toLowerCase().includes("server error");
+
+ if (is500Error) {
+ // Log 500 errors specifically for monitoring
+ console.error("Server error detected:", {
+ message: error.message,
+ digest: error.digest,
+ timestamp: new Date().toISOString(),
+ });
+ // TODO: sent to sentry
+ } else {
+ console.error("Application error:", error);
+ }
}, [error]);
+ const is500Error =
+ error.message?.includes("500") ||
+ error.message?.includes("502") ||
+ error.message?.includes("503") ||
+ error.message?.toLowerCase().includes("server error");
+
return (
-
+ {title}
+
+