Skip to content

Commit 38d35ea

Browse files
Update best-practices-security.md
1 parent 9963fef commit 38d35ea

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

content/en/docs/howto/security/best-practices-security.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ While the data that should be viewable and editable in which role is application
3333
* Constraints on widgets in pages should not be used as a measure of security, but can filter out irrelevant data for the context of the page
3434
* Keep your attributes editable within data views, because if an access rule prohibits write access, your client will display it as non-editable – this way you are aware of the (correct) working of an access rule
3535

36+
You can review and manage your entity access settings in the Security Overview in Mendix Studio Pro. This section provides an overview of your application's security configuration and allows you to verify which roles have access to specific entities and attributes (for more information, see [Security Overview](/refguide/security-overview/)).
37+
3638
## Avoiding Injection
3739

3840
Injection occurs when (user) input can be misused to influence the behavior of a system. Common cases are parameters for queries (to influence the results of database queries) or HTML with JavaScript contents (to influence browser behavior).
@@ -276,3 +278,9 @@ To scan uploaded files for malicious content, do one of the following:
276278

277279
* Create a custom module and configure the functionality yourself, for example, by using a [before commit event](/refguide/setting-up-data-validation/#validation-before-commit-event).
278280
* Check available modules in the [Mendix Marketplace](https://marketplace.mendix.com/). For more information on how to use the Mendix Marketplace content, see [How to Use Marketplace Content](/appstore/use-content/).
281+
282+
## Enable Strict mode
283+
284+
Enable Strict Mode in your application. Strict mode will help ensure that entities are accessible only in the ways defined within your model – through microflows, nanoflows, widgets, or pages – by restricting certain client APIs.
285+
286+
Configuring access rules is essential for the security of your app. However, accurately setting up these rules can be challenging. By enabling strict mode, you add a safety net in case access rules are misconfigured when your application is deployed, helping to reduce the risk of unintended data access [Strict mode](/refguide/strict-mode/).

0 commit comments

Comments
 (0)