]> The Tcpdump Group git mirrors - tcpdump/commit
RADIUS: Rename a test with an invalid length
authorFrancois-Xavier Le Bail <[email protected]>
Wed, 27 Sep 2023 10:23:48 +0000 (12:23 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Wed, 27 Sep 2023 13:14:42 +0000 (15:14 +0200)
commitf64a4a5f49bcbcb996820b566d7ffe9f7cefe4f3
tree95e2eb0a170a71a9d99c1b58c3c68a3924313a4d
parent9b4e47a35b4825ff27b29c7231229db83435c3d8
RADIUS: Rename a test with an invalid length

The RADIUS length is invalid. The UDP length is 64, thus the UDP
payload is 56 bytes, but the RADIUS length is 57.

tcpdump doesn't currently show it because of the following lines in
radius_print():
   if (len > length)
          len = length;

This code will be fixed in a future update.
tests/TESTLIST
tests/radius_rfc5447_invalid_length-v.out [moved from tests/radius-rfc5447-v.out with 100% similarity]
tests/radius_rfc5447_invalid_length.pcap [moved from tests/RADIUS-RFC5447.pcap with 100% similarity]