Reputation: 2586
In wireshark I get several dots before and after a tcp message like so:
.................................
Each 4 dots is colored differently (orange and blue)
Im wondering what these mean? I am padding each 4 bytes with zeros. x00 , so im wondering is the orange part the padding?
Upvotes: 3
Views: 2174
Reputation: 1734
Wireshark trying to treate the hex as ASCII and print it.
But in ASCII only 0x20 ~ 0x7E is printable
, other hex would be displayed as ...
Have no idea about the color thing.
Upvotes: 4