From ed18eae4412b83c2f7022d12a97e332d08997874 Mon Sep 17 00:00:00 2001 From: Louis Bels Date: Mon, 2 Mar 2026 10:01:31 +0100 Subject: [PATCH 1/2] Improve PrestaShop detection --- src/technologies/p.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/technologies/p.json b/src/technologies/p.json index fa827511..53fad2ea 100644 --- a/src/technologies/p.json +++ b/src/technologies/p.json @@ -6867,7 +6867,8 @@ "cpe": "cpe:2.3:a:prestashop:prestashop:*:*:*:*:*:*:*:*", "description": "PrestaShop is a freemium, open-source ecommerce solution, written in the PHP programming language with support for the MySQL database management system.", "dom": [ - "img[src*='/modules/prestablog/themes/'], img[data-src*='/modules/prestablog/themes/']" + "img[src*='/modules/prestablog/themes/'], img[data-src*='/modules/prestablog/themes/']", + "link[href*='/modules/ps_']" ], "headers": { "Powered-By": "^Prestashop$" @@ -6893,6 +6894,7 @@ "generator": "PrestaShop" }, "oss": true, + "scriptSrc": "/modules/ps_[a-z]+/", "scripts": [ "PrestaShop-" ], From 1816b64ed5df335a552a724fe4d7f8898f0b38fd Mon Sep 17 00:00:00 2001 From: Louis Bels Date: Mon, 2 Mar 2026 11:18:22 +0100 Subject: [PATCH 2/2] Fix scriptSrc to use array format --- src/technologies/p.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/technologies/p.json b/src/technologies/p.json index 53fad2ea..2ee28570 100644 --- a/src/technologies/p.json +++ b/src/technologies/p.json @@ -6894,7 +6894,9 @@ "generator": "PrestaShop" }, "oss": true, - "scriptSrc": "/modules/ps_[a-z]+/", + "scriptSrc": [ + "/modules/ps_[a-z]+/" + ], "scripts": [ "PrestaShop-" ],