This is my first post and I absolutely <3 this site! So much great content!
So, I have the following TCPDump command I want to understand what it is asking (in plain English).
tcpdump 'tcp[12] & 80 !=0'
Is it asking to grab all TCP packets on byte offset 12 (TCP Header length and Reserved bits) with values at least 80 that is true? I believe I am wrong.
If the above is true, can someone write out the possible binaries for it?
80 gives 0101 0000. My mentor also wrote down: 1111 0000 and 0111 0000. But I don't know why...
If it's at least 80, the binary combo for that could be countless...