Skip to content

Commit 59bb782

Browse files
committed
Minor tweaks
1 parent bad2e3b commit 59bb782

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

messenger.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2420,12 +2420,12 @@ process. You can refer to the page dedicated on
24202420
Securing Messages with Signatures
24212421
---------------------------------
24222422

2423-
When messages are sent to message queues, there's a potential security risk
2424-
if an attacker can inject forged payloads into the queue. While message queues
2425-
should be secured to prevent unauthorized access, Symfony provides an additional
2426-
layer of security by supporting message signing.
2423+
When messages are sent to message queues, there is a potential security risk
2424+
if an attacker injects forged payloads into the queue. Although message queues
2425+
should be properly secured to prevent unauthorized access, Symfony adds an extra
2426+
layer of protection by supporting message signing.
24272427

2428-
This is especially important for handlers that execute commands or processes,
2428+
This is particularly important for handlers that execute commands or processes,
24292429
which is why the ``RunProcessHandler`` has message signing **enabled by default**.
24302430

24312431
Enabling Message Signing
@@ -2493,11 +2493,11 @@ When signing is enabled:
24932493
3. When the message is received and decoded, the signature is automatically verified.
24942494
4. If the signature is missing or invalid, an
24952495
:class:`Symfony\\Component\\Messenger\\Exception\\InvalidMessageSignatureException`
2496-
is thrown and the message will not be handled.
2496+
is thrown, and the message will not be handled.
24972497

24982498
.. versionadded:: 7.4
24992499

2500-
The support for message signing was introduced in Symfony 7.4.
2500+
Message signing support was introduced in Symfony 7.4.
25012501

25022502
Pinging A Webservice
25032503
--------------------

0 commit comments

Comments
 (0)