@@ -2420,12 +2420,12 @@ process. You can refer to the page dedicated on
24202420Securing 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,
24292429which is why the ``RunProcessHandler `` has message signing **enabled by default **.
24302430
24312431Enabling Message Signing
@@ -2493,11 +2493,11 @@ When signing is enabled:
249324933. When the message is received and decoded, the signature is automatically verified.
249424944. 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
25022502Pinging A Webservice
25032503--------------------
0 commit comments