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
Copy file name to clipboardExpand all lines: docs/book/v6/security/basic-security.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
# Basic Security
2
2
3
-
`dotkernel/admin` provides all necessary tools to implement safe applications, however you will need to manually make use of some of them.
3
+
Dotkernel Admin provides all necessary tools to implement safe applications, however you will need to manually make use of some of them.
4
4
This section will go over the provided tools and any steps you need to follow in order to use them successfully, as well as a few general considerations.
5
5
6
6
## Form Input Validation
7
7
8
-
In order to create safe forms, `dotkernel/admin` makes use of [laminas/laminas-form](https://github.com/laminas/laminas-form) and [laminas/laminas-inputfilter](https://github.com/laminas/laminas-inputfilter).
8
+
In order to create safe forms, Dotkernel Admin makes use of [laminas/laminas-form](https://github.com/laminas/laminas-form) and [laminas/laminas-inputfilter](https://github.com/laminas/laminas-inputfilter).
9
9
All shipped forms have their inputs validated, and it is strongly recommended any custom forms added also make use of input filters to validate user input.
10
10
11
11
## Cross-Site Request Forgery Protection
12
12
13
-
`dotkernel/admin` provides protection against CSRF attacks by using CSRF token creation and validation, available for all forms.
13
+
Dotkernel Admin provides protection against CSRF attacks by using CSRF token creation and validation, available for all forms.
14
14
15
15
All forms provided make use of CSRF token validation, but you must ensure to implement this step for any new forms you create.
16
16
@@ -41,10 +41,10 @@ Pay extra attention to the following keys, to make sure your desired values are
41
41
42
42
## PHP Dependencies
43
43
44
-
`dotkernel/admin` uses `composer` to handle PHP dependencies.
44
+
Dotkernel Admin uses `composer` to handle PHP dependencies.
45
45
In time, make sure to review any common vulnerabilities and exposures for your dependencies.
46
46
47
-
> You may also keep an eye on the `dotkernel/admin` changelog for any updates relevant to your project.
47
+
> You may also keep an eye on the Dotkernel Admin changelog for any updates relevant to your project.
48
48
49
49
## JavaScript Dependencies
50
50
@@ -65,7 +65,7 @@ Keep an eye on any vulnerabilities whenever using `npm` to install or update pac
65
65
composer development-status
66
66
```
67
67
68
-
-`Admin` ships with a [Laminas Continuous Integration](https://github.com/laminas/laminas-continuous-integration-action) GitHub Action,
68
+
-Dotkernel Admin ships with a [Laminas Continuous Integration](https://github.com/laminas/laminas-continuous-integration-action) GitHub Action,
69
69
if you are using a public repository consider keeping it in your custom applications to ensure code quality.
70
70
71
71
> Read more about using [Laminas Continuous Integration](https://getlaminas.org/blog/2024-08-05-using-laminas-continuous-integration.html).
0 commit comments