File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Need to extend the Babel configuration further? The easiest way is via
24
24
babelConfig .plugins .push (' styled-jsx/babel' );
25
25
}, {
26
26
// node_modules is not processed through Babel by default
27
- // but you can whitelist specific modules to process
27
+ // but you can allow some specific modules to be processed
28
28
includeNodeModules: [' foundation-sites' ],
29
29
30
30
// or completely control the exclude rule (note that you
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ instance), the host might have been manipulated by an attacker.
519
519
The Symfony :method: `Request::getHost() <Symfony\\ Component\\ HttpFoundation\\ Request::getHost> `
520
520
method might be vulnerable to some of these attacks because it depends on
521
521
the configuration of your web server. One simple solution to avoid these
522
- attacks is to whitelist the hosts that your Symfony application can respond
522
+ attacks is to configure a list of hosts that your Symfony application can respond
523
523
to. That's the purpose of this ``trusted_hosts `` option. If the incoming
524
524
request's hostname doesn't match one of the regular expressions in this list,
525
525
the application won't respond and the user will receive a 400 response.
Original file line number Diff line number Diff line change 4
4
Validates that a value is a valid `Universally unique identifier (UUID) `_ per `RFC 4122 `_.
5
5
By default, this will validate the format according to the RFC's guidelines, but this can
6
6
be relaxed to accept non-standard UUIDs that other systems (like PostgreSQL) accept.
7
- UUID versions can also be restricted using a whitelist .
7
+ UUID versions can also be restricted using a list of allowed versions .
8
8
9
9
========== ===================================================================
10
10
Applies to :ref: `property or method <validation-property-target >`
Original file line number Diff line number Diff line change @@ -759,8 +759,8 @@ like this:
759
759
will have ``IS_AUTHENTICATED_REMEMBERED `` but will not have ``IS_AUTHENTICATED_FULLY ``.
760
760
761
761
* ``IS_AUTHENTICATED_ANONYMOUSLY ``: *All * users (even anonymous ones) have
762
- this - this is useful when * whitelisting * URLs to guarantee access - some
763
- details are in :doc: `/security/access_control `.
762
+ this - this is useful when defining a list of URLs with no access restriction
763
+ - some details are in :doc: `/security/access_control `.
764
764
765
765
.. _retrieving-the-user-object :
766
766
You can’t perform that action at this time.
0 commit comments