IMPORTANT NOTICE: DO NOT REPORT VULNERABILITIES SOLELY TO THE AUTHOR OR MARKETPLACE.
We urge you to report any vulnerabilities directly to us. Our mission is to ensure the safety and security of the PrestaShop ecosystem. Unfortunately, many module developers may not always recognize or acknowledge the vulnerabilities in their code, whether due to lack of awareness, or inability to properly evaluate the associated risk, or other reasons.
Given the rise in professional cybercrime networks actively seeking out these vulnerabilities, it's crucial that any potential threats are promptly addressed and the community is informed. The most effective method to do this is by publishing a CVE, like the one provided below.
Should you discover any vulnerabilities, please report them to us at: report[@]security-presta.org or visit https://security-presta.org for more information.
Every vulnerability report helps make the community more secure, and we are profoundly grateful for any information shared with us.
[CVE-2024-24304] Exposure of Sensitive Information to an Unauthorized Actor in Mailjet module for PrestaShop
In the module “Mailjet” (mailjet) up to version 3.5.0 from Mailjet for PrestaShop, a guest can download technical information without restriction.
Summary
- CVE ID: CVE-2024-24304
- Published at: 2024-02-06
- Platform: PrestaShop
- Product: mailjet
- Impacted release: <= 3.5.0 (3.5.1 fixed the vulnerability)
- Product author: Mailjet
- Weakness: CWE-200
- Severity: high (7.5)
Description
Due to a broken access control, a guest can access multiple technical information such as a full list of modules with their versions, the admin link and a sensitive token.
CVSS base metrics
- Attack vector: network
- Attack complexity: low
- Privilege required: none
- User interaction: none
- Scope: unchanged
- Confidentiality: high
- Integrity: none
- Availability: none
Vector string: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Possible malicious usage
- Get precious technical data to facilitate others attacks like CWE-89
Patch from 3.5.0
--- 3.5.0/modules/mailjet/ajax.php
+++ 3.5.1/modules/mailjet/ajax.php
...
require_once(realpath(dirname(__FILE__) . '/../../init.php'));
}
+$token_ok = Tools::getAdminToken(
+ 'AdminModules' . (int) Tab::getIdFromClassName('AdminModules') . (int) Tools::getValue('id_employee')
+);
+
+if (Tools::getValue('token') != $token_ok) {
+ die('hack attempt');
+}
Other recommendations
- You should restrict access to a given whitelist to these URI patterns /modules/mailjet/ajax/ and /modules/mailjet/ajax.php
Timeline
Date | Action |
---|---|
2022-10-25 | Issue discovered during a code review by TouchWeb.fr |
2022-10-29 | FOP Security Team contact Author to confirm versions scope by author |
2022-11-17 | Author confirm versions scope and release a patch |
2024-02-05 | Received CVE ID |
2024-02-06 | Publish this security advisory |
Links
DISCLAIMER: The French Association Friends Of Presta (FOP) acts as an intermediary to help hosting this advisory. While we strive to ensure the information and advice provided are accurate, FOP cannot be held liable for any consequences arising from reported vulnerabilities or any subsequent actions taken.
This advisory and patch is licensed under CC BY-SA 4.0