From cee9a9a75536ab24eaad467ac0b89be2469a8d89 Mon Sep 17 00:00:00 2001 From: Pepe Fagoaga Date: Thu, 20 Nov 2025 17:11:51 +0100 Subject: [PATCH] fix(html): logo URI (#9282) --- prowler/CHANGELOG.md | 3 +++ prowler/config/config.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/prowler/CHANGELOG.md b/prowler/CHANGELOG.md index 54050102e6..2a26b5959f 100644 --- a/prowler/CHANGELOG.md +++ b/prowler/CHANGELOG.md @@ -62,6 +62,9 @@ All notable changes to the **Prowler SDK** are documented in this file. - Update AWS Kinesis service metadata to new format [(#9262)](https://github.com/prowler-cloud/prowler/pull/9262) - Update AWS DocumentDB service metadata to new format [(#8862)](https://github.com/prowler-cloud/prowler/pull/8862) +### Fixed +- Point HTML logo to the one present in the Github repository [(#9282)](https://github.com/prowler-cloud/prowler/pull/9282) + --- ## [v5.13.2] (Prowler UNRELEASED) diff --git a/prowler/config/config.py b/prowler/config/config.py index 60a4b5e38d..d8618960cb 100644 --- a/prowler/config/config.py +++ b/prowler/config/config.py @@ -40,7 +40,7 @@ timestamp = _MutableTimestamp(datetime.today()) timestamp_utc = _MutableTimestamp(datetime.now(timezone.utc)) prowler_version = "5.14.0" html_logo_url = "https://github.com/prowler-cloud/prowler/" -square_logo_img = "https://prowler.com/wp-content/uploads/logo-html.png" +square_logo_img = "https://raw.githubusercontent.com/prowler-cloud/prowler/dc7d2d5aeb92fdf12e8604f42ef6472cd3e8e889/docs/img/prowler-logo-black.png" aws_logo = "https://user-images.githubusercontent.com/38561120/235953920-3e3fba08-0795-41dc-b480-9bea57db9f2e.png" azure_logo = "https://user-images.githubusercontent.com/38561120/235927375-b23e2e0f-8932-49ec-b59c-d89f61c8041d.png" gcp_logo = "https://user-images.githubusercontent.com/38561120/235928332-eb4accdc-c226-4391-8e97-6ca86a91cf50.png"