You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed there is missing some important validations on the CONNECT command, particularly with regards to Will and QoS.
According to the v5 spec, section 3.1.2.6:
If the Will Flag is set to 0, then the Will QoS MUST be set to 0 (0x00)
If the Will Flag is set to 1, the value of Will QoS can be 0 (0x00), 1 (0x01), or 2 (0x02). A
value of 3 (0x03) is a Malformed Packet.
However these conditions are not handled, so I am free to set:
Settings qos: 4 actually overwrites the 5th bit in the CONNECT flags. When you inspect the Buffer, you'll see it sets the Flags byte to 0xE6 which is 11100110, notice byte[5] (Retain Flag) = 1, even though we specifically defined retain: false.
The text was updated successfully, but these errors were encountered:
Hi,
I noticed there is missing some important validations on the
CONNECT
command, particularly with regards to Will and QoS.According to the v5 spec, section
3.1.2.6
:However these conditions are not handled, so I am free to set:
And this is accepted just fine, the Flags byte becomes
0xDE
which is11011110
, noticebyte[3-4] (QoS) = 3
... but it gets worse:Settings
qos: 4
actually overwrites the 5th bit in theCONNECT
flags. When you inspect the Buffer, you'll see it sets the Flags byte to0xE6
which is11100110
, noticebyte[5] (Retain Flag) = 1
, even though we specifically definedretain: false
.The text was updated successfully, but these errors were encountered: