A reference on IPv4 headers would greatly help you decipher the packet information:
Code:
An IPv4 header
<------------------------------------ 32 bits ---------------------------------->
|-------------------------------------------------------------------------------|
| Version | IHL | Type of Service | Total Length |
|-------------------------------------------------------------------------------|
| Identification | Flags | Fragment Offset |
|-------------------------------------------------------------------------------|
| Time to Live | Protocol | Header Checksum |
|-------------------------------------------------------------------------------|
| Source Address |
|-------------------------------------------------------------------------------|
| Destination Address |
|-------------------------------------------------------------------------------|
| Options | Padding |
|-------------------------------------------------------------------------------|
|-------------------------------------------------------------------------------|
| Payload |
|-------------------------------------------------------------------------------|
Reference:
An IPv4 header
More Information:
- Using the above information we should now be able to decipher a packet dump that shows a telnet option negotiation
- So now we're doing some real-time monitoring and TCPDumps, which they're trying to decipher… good choice of words, as this is all SSL traffic, so
- You will learn how to decipher log messages and to build confidence in damage assessment situations
- Web browser: Technical articles 2003-02-10; Making sense of tcpdump with add-on enhancements: Tcpdump is a useful tool for tracking down network performance issues, but the output can be difficult to decipher
- It will append the packets at the end of the pcap file if you specify the same output prefix, keeping the IVs you already have (a feature that tcpdump doesn't have btw ;))
- I got the dump, thanks (tcpdump? damn! I gotta read that manpage one day) still trying to decipher that
Bookmarks