diff --git a/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.md b/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.md index 057b5df28e..9b6a439006 100644 --- a/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.md +++ b/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.md @@ -358,7 +358,7 @@ The **POST**, **PUT**, **PATCH**, and **DELETE** methods, being state changing v ### Storing the CSRF Token Value in the DOM -A CSRF token can be included in the `` tag as shown below. All subsequent calls in the page can extract the CSRF token from this `` tag. It can also be stored in a JavaScript variable or anywhere on the DOM. However, it is not recommended to store the CSFR token in cookies or browser local storage. +A CSRF token can be included in the `` tag as shown below. All subsequent calls in the page can extract the CSRF token from this `` tag. It can also be stored in a JavaScript variable or anywhere on the DOM. However, it is not recommended to store the CSRF token in cookies or browser local storage. The following code snippet can be used to include a CSRF token as a `` tag: