Sensitive Files
PrestaShop parameters.php File Access Check
The parameters.php file contains PrestaShop database credentials. Verify it is not publicly accessible and learn how to secure it.
What this test checks
This test checks whether the PrestaShop configuration file (parameters.php) is publicly accessible. This file contains database connection credentials, security settings, and encryption keys for your store. Its exposure allows an attacker to steal customer data, orders, and take full control of your e‑commerce site.
Our recommendation
Ensure that the parameters.php file is not accessible from the web. By default, it is placed in the /app/config/ folder, which should be protected by your server. Use restrictive permissions (chmod 644) and add a rule in your .htaccess to block direct access to this file. Regularly verify its accessibility.
Security tests