You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/guides/v2.3/architecture/security_intro.md
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,21 @@ menu_title: Security
6
6
menu_order:
7
7
---
8
8
9
-
## Enhanced password management
9
+
The security of your data and digital experiences is our priority. To better protect Adobe Magento Commerce installations from the physical layer up, we have implemented hundreds of processes and controls to help us comply with [industry-accepted standards][1], regulations, and certifications. To help protect installations from the software layer down, we build in security measures that are based on the [Adobe Secure Product Lifecyle][2].
10
+
11
+
Although there is no single way to eliminate all security risks, there are many steps you can take to harden your installations and make them a less attractive target for bad actors. The [Adobe Magento Commerce Security Best Practices Guide][3] offers insight and practical guidelines to help protect Adobe Magento Commerce installations from security incidents.
12
+
13
+
## Examples of built-in security measures
14
+
15
+
### Enhanced password management
10
16
11
17
Magento has strengthened the hashing algorithms (SHA-256) used in password management. Magento now supports Argon2ID13 through the PHP sodium extension, which requires the libsodium library version 1.0.13 or higher.
12
18
13
-
## Improved prevention of cross-site scripting (XSS) attacks by making escaped data the default
19
+
###Improved prevention of cross-site scripting (XSS) attacks by making escaped data the default
14
20
15
21
The Magento Framework has adopted conventions that regulate the escaping of data in output. These conventions include the ability to escape output for [HTML](https://glossary.magento.com/html) pages (HTML, JSON, and JavaScript) and email. Where possible, escaping is transparent to client code. See [Security measures against XSS attacks]({{page.baseurl}}/extension-dev-guide/xss-protection.html) in the [Frontend](https://glossary.magento.com/frontend) Developer Guide.
16
22
17
-
## More flexible file system ownership and permissions
23
+
###More flexible file system ownership and permissions
18
24
19
25
Starting in version 2.0.6, Magento no longer explicitly sets file system permissions. Instead, we recommend that certain files and directories be writable in a development environment and read-only in a production environment.
20
26
@@ -24,15 +30,19 @@ For an overview, see [Overview of ownership and permissions]({{page.baseurl}}/in
24
30
25
31
For details about ownership and permissions in development and production, see [Magento ownership and permissions in development and production]({{page.baseurl}}).
26
32
27
-
## Improved prevention of clickjacking exploits
33
+
###Improved prevention of clickjacking exploits
28
34
29
35
Magento safeguards your store from clickjacking attacks by using an X-Frame-Options HTTP request header. For more information, see [X-Frame-Options header]({{page.baseurl}}/config-guide/secy/secy-xframe.html).
30
36
31
-
## Use of non-default Magento Admin URL
37
+
###Use of non-default Magento Admin URL
32
38
33
39
A simple [Magento Admin](https://glossary.magento.com/magento-admin)[URL](https://glossary.magento.com/url) (like `admin` or `backend`) makes it easy to target attacks on specific locations using automated password guessing. To prevent against this type of attack, Magento by default creates a random Admin URI when you install the product. The CLI command `php bin/magento info:adminuri` is provided so that you can see the URI if you forget it. You can also use the CLI to change this URI. Although the use of a non-default admin URL will not secure the site, its use will help prevent large-scale automated attacks. See [Display or change the Admin URI]({{page.baseurl}}/install-gde/install/cli/install-cli-adminurl.html) in Configuration Guide for more information.
0 commit comments