Skip to content

Commit

Permalink
Fix a couple miscellaneous issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker authored and teoli2003 committed Aug 13, 2021
1 parent b6cf097 commit 4ba6576
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/http/cookies/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Please note the security issues in the [Security](#security) section below. Cook
Ways to mitigate attacks involving cookies:

- Use the `HttpOnly` attribute to prevent access to cookie values via JavaScript.
- Cookies that are used for sensitive information (such as indicating authentication) should have a short lifetime, with the `SameSite` attribute set to `Strict` or `Lax`. (See [SameSite cookies](#), above.) In [browsers that support SameSite](/en-US/docs/Web/HTTP/Headers/Set-Cookie#browser_compatibility), this has the effect of ensuring that the authentication cookie is not sent with cross-site requests, so such a request is effectively unauthenticated to the application server.
- Cookies that are used for sensitive information (such as indicating authentication) should have a short lifetime, with the `SameSite` attribute set to `Strict` or `Lax`. (See [SameSite attribute](#samesite_attribute), above.) In [browsers that support SameSite](/en-US/docs/Web/HTTP/Headers/Set-Cookie#browser_compatibility), this has the effect of ensuring that the authentication cookie is not sent with cross-site requests, so such a request is effectively unauthenticated to the application server.

## Tracking and privacy

Expand Down
4 changes: 0 additions & 4 deletions files/en-us/web/http/csp/errors/cspviolation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,10 @@ with:
- `uvw`
- : Text that provides information that may help you resolve the problem, potentially including specific changes you might make to the CSP configuration.

**<<<--- The Chrome information above may be incomplete; we need to investigate that when we resume work on this content --->>>**

## What went wrong?

This warning message means that due to the existence of a particular CSP directive, a resource wasn't loaded.

**<<<--- add details and suggested fixes --->>>**

## See also

- [CSP errors and warnings](/en-US/docs/Web/HTTP/CSP/Errors)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ myIpAddress()
#### Parameters
**(none)**
(none)
#### Return value
Returns the server IP address of the machine Firefox is running on, as a string in the dot-separated integer format.
Expand Down

0 comments on commit 4ba6576

Please sign in to comment.