I need to capture packets with length equal to 16 bytes
The closer i came with is this:
tcpdump -ni lo -ttt dst port 1337 and greater 16
if I add other filters to match my will like :
tcpdump -ni lo -ttt dst port 1337 and greater 16 and not greater 17
tcpdump -ni lo -ttt dst port 1337 and \(greater 16 and not greater 17\)
tcpdump -ni lo -ttt dst port 1337 and greater 16 and less 16
It just doesn't show any packets at all.
Althought, using :
tcpdump -ni lo -ttt dst port 1337 and less 16
doesn't seem to work neither, i'm actually wandering if the less filter works...
Any help is welcome :)