diff --git a/.github/workflows/sdk-build-lint-push-containers.yml b/.github/workflows/sdk-build-lint-push-containers.yml
index ec1d71a0cb..e17241eb46 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..a66868db3b 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/users/forms/edit-tenant-form.tsx b/ui/components/users/forms/edit-tenant-form.tsx
index 71aabb654c..affc03c95f 100644
--- a/ui/components/users/forms/edit-tenant-form.tsx
+++ b/ui/components/users/forms/edit-tenant-form.tsx
@@ -21,17 +21,17 @@ export const EditTenantForm = ({
const { toast } = useToast();
useEffect(() => {
- if (state?.success) {
+ if (state && "success" in state) {
toast({
title: "Changed successfully",
description: state.success,
});
setIsOpen(false);
- } else if (state?.errors?.general) {
+ } else if (state && "error" in state) {
toast({
variant: "destructive",
title: "Oops! Something went wrong",
- description: state.errors.general,
+ description: state.error,
});
}
}, [state, toast, setIsOpen]);
@@ -49,8 +49,8 @@ export const EditTenantForm = ({
labelPlacement="outside"
variant="bordered"
isRequired={true}
- isInvalid={!!state?.errors?.name}
- errorMessage={state?.errors?.name}
+ isInvalid={!!(state && "error" in state)}
+ errorMessage={state && "error" in state ? state.error : undefined}
/>
{/* Hidden inputs for Server Action */}
diff --git a/ui/lib/helper.ts b/ui/lib/helper.ts
index 61b431c7c9..016201c5bd 100644
--- a/ui/lib/helper.ts
+++ b/ui/lib/helper.ts
@@ -345,18 +345,38 @@ export const permissionFormFields: PermissionInfo[] = [
export const handleApiResponse = async (
response: Response,
pathToRevalidate?: string,
+ parse = true,
) => {
+ if (!response.ok) {
+ const errorData = await response.json().catch(() => null);
+ const errorDetail = errorData?.errors?.[0]?.detail;
+
+ // Special handling for server errors (500+)
+ if (response.status >= 500) {
+ throw new Error(
+ errorDetail ||
+ `Server error (${response.status}): The server encountered an error. Please try again later.`,
+ );
+ }
+
+ // Client errors (4xx)
+ throw new Error(
+ errorDetail ||
+ `Request failed (${response.status}): ${response.statusText}`,
+ );
+ }
+
const data = await response.json();
- if (pathToRevalidate) {
+ if (pathToRevalidate && pathToRevalidate !== "") {
revalidatePath(pathToRevalidate);
}
- return parseStringify(data);
+ return parse ? parseStringify(data) : data;
};
// Helper function to handle API errors consistently
-export const handleApiError = (error: unknown) => {
+export const handleApiError = (error: unknown): { error: string } => {
console.error(error);
return {
error: getErrorMessage(error),
diff --git a/ui/package-lock.json b/ui/package-lock.json
index 0d53f26376..984c9a0895 100644
--- a/ui/package-lock.json
+++ b/ui/package-lock.json
@@ -44,7 +44,7 @@
"jwt-decode": "^4.0.0",
"lucide-react": "^0.471.0",
"marked": "^15.0.12",
- "next": "^14.2.30",
+ "next": "^14.2.32",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.2.1",
"radix-ui": "^1.1.3",
@@ -75,7 +75,7 @@
"@typescript-eslint/parser": "^7.10.0",
"autoprefixer": "10.4.19",
"eslint": "^8.56.0",
- "eslint-config-next": "^14.2.30",
+ "eslint-config-next": "^14.2.32",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
@@ -1258,15 +1258,15 @@
}
},
"node_modules/@next/env": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.30.tgz",
- "integrity": "sha512-KBiBKrDY6kxTQWGzKjQB7QirL3PiiOkV7KW98leHFjtVRKtft76Ra5qSA/SL75xT44dp6hOcqiiJ6iievLOYug==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.32.tgz",
+ "integrity": "sha512-n9mQdigI6iZ/DF6pCTwMKeWgF2e8lg7qgt5M7HXMLtyhZYMnf/u905M18sSpPmHL9MKp9JHo56C6jrD2EvWxng==",
"license": "MIT"
},
"node_modules/@next/eslint-plugin-next": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.30.tgz",
- "integrity": "sha512-mvVsMIutMxQ4NGZEMZ1kiBNc+la8Xmlk30bKUmCPQz2eFkmsLv54Mha8QZarMaCtSPkkFA1TMD+FIZk0l/PpzA==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.32.tgz",
+ "integrity": "sha512-tyZMX8g4cWg/uPW4NxiJK13t62Pab47SKGJGVZJa6YtFwtfrXovH4j1n9tdpRdXW03PGQBugYEVGM7OhWfytdA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1274,9 +1274,9 @@
}
},
"node_modules/@next/swc-darwin-arm64": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.30.tgz",
- "integrity": "sha512-EAqfOTb3bTGh9+ewpO/jC59uACadRHM6TSA9DdxJB/6gxOpyV+zrbqeXiFTDy9uV6bmipFDkfpAskeaDcO+7/g==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.32.tgz",
+ "integrity": "sha512-osHXveM70zC+ilfuFa/2W6a1XQxJTvEhzEycnjUaVE8kpUS09lDpiDDX2YLdyFCzoUbvbo5r0X1Kp4MllIOShw==",
"cpu": [
"arm64"
],
@@ -1290,9 +1290,9 @@
}
},
"node_modules/@next/swc-darwin-x64": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.30.tgz",
- "integrity": "sha512-TyO7Wz1IKE2kGv8dwQ0bmPL3s44EKVencOqwIY69myoS3rdpO1NPg5xPM5ymKu7nfX4oYJrpMxv8G9iqLsnL4A==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.32.tgz",
+ "integrity": "sha512-P9NpCAJuOiaHHpqtrCNncjqtSBi1f6QUdHK/+dNabBIXB2RUFWL19TY1Hkhu74OvyNQEYEzzMJCMQk5agjw1Qg==",
"cpu": [
"x64"
],
@@ -1306,9 +1306,9 @@
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.30.tgz",
- "integrity": "sha512-I5lg1fgPJ7I5dk6mr3qCH1hJYKJu1FsfKSiTKoYwcuUf53HWTrEkwmMI0t5ojFKeA6Vu+SfT2zVy5NS0QLXV4Q==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.32.tgz",
+ "integrity": "sha512-v7JaO0oXXt6d+cFjrrKqYnR2ubrD+JYP7nQVRZgeo5uNE5hkCpWnHmXm9vy3g6foMO8SPwL0P3MPw1c+BjbAzA==",
"cpu": [
"arm64"
],
@@ -1322,9 +1322,9 @@
}
},
"node_modules/@next/swc-linux-arm64-musl": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.30.tgz",
- "integrity": "sha512-8GkNA+sLclQyxgzCDs2/2GSwBc92QLMrmYAmoP2xehe5MUKBLB2cgo34Yu242L1siSkwQkiV4YLdCnjwc/Micw==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.32.tgz",
+ "integrity": "sha512-tA6sIKShXtSJBTH88i0DRd6I9n3ZTirmwpwAqH5zdJoQF7/wlJXR8DkPmKwYl5mFWhEKr5IIa3LfpMW9RRwKmQ==",
"cpu": [
"arm64"
],
@@ -1338,9 +1338,9 @@
}
},
"node_modules/@next/swc-linux-x64-gnu": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.30.tgz",
- "integrity": "sha512-8Ly7okjssLuBoe8qaRCcjGtcMsv79hwzn/63wNeIkzJVFVX06h5S737XNr7DZwlsbTBDOyI6qbL2BJB5n6TV/w==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.32.tgz",
+ "integrity": "sha512-7S1GY4TdnlGVIdeXXKQdDkfDysoIVFMD0lJuVVMeb3eoVjrknQ0JNN7wFlhCvea0hEk0Sd4D1hedVChDKfV2jw==",
"cpu": [
"x64"
],
@@ -1354,9 +1354,9 @@
}
},
"node_modules/@next/swc-linux-x64-musl": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.30.tgz",
- "integrity": "sha512-dBmV1lLNeX4mR7uI7KNVHsGQU+OgTG5RGFPi3tBJpsKPvOPtg9poyav/BYWrB3GPQL4dW5YGGgalwZ79WukbKQ==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.32.tgz",
+ "integrity": "sha512-OHHC81P4tirVa6Awk6eCQ6RBfWl8HpFsZtfEkMpJ5GjPsJ3nhPe6wKAJUZ/piC8sszUkAgv3fLflgzPStIwfWg==",
"cpu": [
"x64"
],
@@ -1370,9 +1370,9 @@
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.30.tgz",
- "integrity": "sha512-6MMHi2Qc1Gkq+4YLXAgbYslE1f9zMGBikKMdmQRHXjkGPot1JY3n5/Qrbg40Uvbi8//wYnydPnyvNhI1DMUW1g==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.32.tgz",
+ "integrity": "sha512-rORQjXsAFeX6TLYJrCG5yoIDj+NKq31Rqwn8Wpn/bkPNy5rTHvOXkW8mLFonItS7QC6M+1JIIcLe+vOCTOYpvg==",
"cpu": [
"arm64"
],
@@ -1386,9 +1386,9 @@
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.30.tgz",
- "integrity": "sha512-pVZMnFok5qEX4RT59mK2hEVtJX+XFfak+/rjHpyFh7juiT52r177bfFKhnlafm0UOSldhXjj32b+LZIOdswGTg==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.32.tgz",
+ "integrity": "sha512-jHUeDPVHrgFltqoAqDB6g6OStNnFxnc7Aks3p0KE0FbwAvRg6qWKYF5mSTdCTxA3axoSAUwxYdILzXJfUwlHhA==",
"cpu": [
"ia32"
],
@@ -1402,9 +1402,9 @@
}
},
"node_modules/@next/swc-win32-x64-msvc": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.30.tgz",
- "integrity": "sha512-4KCo8hMZXMjpTzs3HOqOGYYwAXymXIy7PEPAXNEcEOyKqkjiDlECumrWziy+JEF0Oi4ILHGxzgQ3YiMGG2t/Lg==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.32.tgz",
+ "integrity": "sha512-2N0lSoU4GjfLSO50wvKpMQgKd4HdI2UHEhQPPPnlgfBJlOgJxkjpkYBqzk08f1gItBB6xF/n+ykso2hgxuydsA==",
"cpu": [
"x64"
],
@@ -9070,13 +9070,13 @@
}
},
"node_modules/eslint-config-next": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.30.tgz",
- "integrity": "sha512-4pTMb3wfpI+piVeEz3TWG1spjuXJJBZaYabi2H08z2ZTk6/N304POEovHdFmK6EZb4QlKpETulBNaRIITA0+xg==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.32.tgz",
+ "integrity": "sha512-mP/NmYtDBsKlKIOBnH+CW+pYeyR3wBhE+26DAqQ0/aRtEBeTEjgY2wAFUugUELkTLmrX6PpuMSSTpOhz7j9kdQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@next/eslint-plugin-next": "14.2.30",
+ "@next/eslint-plugin-next": "14.2.32",
"@rushstack/eslint-patch": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0",
@@ -12758,12 +12758,12 @@
"license": "MIT"
},
"node_modules/next": {
- "version": "14.2.30",
- "resolved": "https://registry.npmjs.org/next/-/next-14.2.30.tgz",
- "integrity": "sha512-+COdu6HQrHHFQ1S/8BBsCag61jZacmvbuL2avHvQFbWa2Ox7bE+d8FyNgxRLjXQ5wtPyQwEmk85js/AuaG2Sbg==",
+ "version": "14.2.32",
+ "resolved": "https://registry.npmjs.org/next/-/next-14.2.32.tgz",
+ "integrity": "sha512-fg5g0GZ7/nFc09X8wLe6pNSU8cLWbLRG3TZzPJ1BJvi2s9m7eF991se67wliM9kR5yLHRkyGKU49MMx58s3LJg==",
"license": "MIT",
"dependencies": {
- "@next/env": "14.2.30",
+ "@next/env": "14.2.32",
"@swc/helpers": "0.5.5",
"busboy": "1.6.0",
"caniuse-lite": "^1.0.30001579",
@@ -12778,15 +12778,15 @@
"node": ">=18.17.0"
},
"optionalDependencies": {
- "@next/swc-darwin-arm64": "14.2.30",
- "@next/swc-darwin-x64": "14.2.30",
- "@next/swc-linux-arm64-gnu": "14.2.30",
- "@next/swc-linux-arm64-musl": "14.2.30",
- "@next/swc-linux-x64-gnu": "14.2.30",
- "@next/swc-linux-x64-musl": "14.2.30",
- "@next/swc-win32-arm64-msvc": "14.2.30",
- "@next/swc-win32-ia32-msvc": "14.2.30",
- "@next/swc-win32-x64-msvc": "14.2.30"
+ "@next/swc-darwin-arm64": "14.2.32",
+ "@next/swc-darwin-x64": "14.2.32",
+ "@next/swc-linux-arm64-gnu": "14.2.32",
+ "@next/swc-linux-arm64-musl": "14.2.32",
+ "@next/swc-linux-x64-gnu": "14.2.32",
+ "@next/swc-linux-x64-musl": "14.2.32",
+ "@next/swc-win32-arm64-msvc": "14.2.32",
+ "@next/swc-win32-ia32-msvc": "14.2.32",
+ "@next/swc-win32-x64-msvc": "14.2.32"
},
"peerDependencies": {
"@opentelemetry/api": "^1.1.0",
diff --git a/ui/package.json b/ui/package.json
index 05484fe77d..e6b8a95641 100644
--- a/ui/package.json
+++ b/ui/package.json
@@ -36,7 +36,7 @@
"jwt-decode": "^4.0.0",
"lucide-react": "^0.471.0",
"marked": "^15.0.12",
- "next": "^14.2.30",
+ "next": "^14.2.32",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.2.1",
"radix-ui": "^1.1.3",
@@ -67,7 +67,7 @@
"@typescript-eslint/parser": "^7.10.0",
"autoprefixer": "10.4.19",
"eslint": "^8.56.0",
- "eslint-config-next": "^14.2.30",
+ "eslint-config-next": "^14.2.32",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
diff --git a/ui/types/server-actions.ts b/ui/types/server-actions.ts
new file mode 100644
index 0000000000..e69de29bb2
-
-
+
+
@@ -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..6307aa94b0 100644
--- a/prowler/CHANGELOG.md
+++ b/prowler/CHANGELOG.md
@@ -1,6 +1,38 @@
# Prowler SDK Changelog
All notable changes to the **Prowler SDK** are documented in this file.
+## [v5.12.0] (Prowler UNRELEASED)
+
+### Added
+
+### Changed
+
+### Fixed
+
+---
+
+## [v5.11.1] (Prowler UNRELEASED)
+
+### Fixed
+
+---
+
+## [v5.12.0] (Prowler UNRELEASED)
+
+### Added
+- Add more fields for the Jira ticket and handle custom fields errors [(#8601)](https://github.com/prowler-cloud/prowler/pull/8601)
+
+### Changed
+
+### Fixed
+
+---
+
+## [v5.11.1] (Prowler UNRELEASED)
+
+### Fixed
+
+---
## [v5.12.0] (Prowler UNRELEASED)
@@ -33,6 +65,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/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/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..0ec9900066 100644
--- a/ui/CHANGELOG.md
+++ b/ui/CHANGELOG.md
@@ -2,7 +2,17 @@
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)
+
+### 🔄 Changed
+
+- Markdown rendering in finding details page [(#8604)](https://github.com/prowler-cloud/prowler/pull/8604)
+
+## [1.11.0] (Prowler v5.11.0)
### 🚀 Added
@@ -25,8 +35,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..dff6bb5bb0 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;
}
@@ -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)/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 (
-