首先,感谢Stack Overflow社区。我在这里找到了很多有能力的答案,所以我会试着问自己的问题。
我有一个WinPcap示例程序,它将我的网络流量“转储”为Hexcode。 我做了一个简单的服务器/客户端对,定期发送一些文本(22个字节)。
问题:
在C ++中解析这个Hex-dump并生成类似Wireshark或phd的输出(仅在控制台中)。
读完一些TCP / IP引用(1)后,我无法确定所有字节“值” 例如,有76个字节,向后读:
以下是十六进制的示例:
08 00 27 b3 23 63 f4 6d 04 2e 68 24 08 00 45 00
00 3e 31 c4 40 00 80 06 45 9e c0 a8 01 03 c0 a8
01 04 0b 27 04 d2 b0 f7 47 61 28 6c fd a7 50 18
fa f0 8e a0 00 00 48 61 6c 6c 6f 20 64 61 73 20
69 73 74 20 65 69 6e 20 54 65 73 74
问题:
有人能告诉我这些第一个字节的用途,以及
在哪里获得关于如何组成网络流量的(简单)描述?
答案 0 :(得分:0)
我使用Packet Dump Decode并将其解码为以下数据... pdd
将十六进制转储转换为您可以在wireshark中使用的内容...然后我从wireshark信息向后工作以打破包下来......
Ethernet Header
---------------
08 00 27 b3 23 63 f4 6d 04 2e 68 24 08 00
IP Header
---------
45 00 00 3e 31 c4 40 00 80 06 45 9e
c0 a8 01 03 c0 a8 01 04
TCP Header
----------
0b 27 04 d2 b0 f7 47 61 28 6c fd a7 50 18
fa f0 8e a0 00 00
TCP Data Payload
----------------
48 61 6c 6c 6f 20 64 61 73 20
69 73 74 20 65 69 6e 20 54 65 73 74
完整的wirehark解码...
Frame 1: 76 bytes on wire (608 bits), 76 bytes captured (608 bits)
WTAP_ENCAP: 1
Arrival Time: Nov 24, 2012 07:12:54.000000000 Central Standard Time
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1353762774.000000000 seconds
[Time delta from previous captured frame: 0.000000000 seconds]
[Time delta from previous displayed frame: 0.000000000 seconds]
[Time since reference or first frame: 0.000000000 seconds]
Frame Number: 1
Frame Length: 76 bytes (608 bits)
Capture Length: 76 bytes (608 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: eth:ip:tcp:data]
Ethernet II, Src: AsustekC_2e:68:24 (f4:6d:04:2e:68:24), Dst: CadmusCo_b3:23:63 (08:00:27:b3:23:63)
Destination: CadmusCo_b3:23:63 (08:00:27:b3:23:63)
Address: CadmusCo_b3:23:63 (08:00:27:b3:23:63)
.... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
.... ...0 .... .... .... .... = IG bit: Individual address (unicast)
Source: AsustekC_2e:68:24 (f4:6d:04:2e:68:24)
Address: AsustekC_2e:68:24 (f4:6d:04:2e:68:24)
.... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
.... ...0 .... .... .... .... = IG bit: Individual address (unicast)
Type: IP (0x0800)
Internet Protocol Version 4, Src: 192.168.1.3 (192.168.1.3), Dst: 192.168.1.4 (192.168.1.4)
Version: 4
Header length: 20 bytes
Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00: Not-ECT (Not ECN-Capable Transport))
0000 00.. = Differentiated Services Codepoint: Default (0x00)
.... ..00 = Explicit Congestion Notification: Not-ECT (Not ECN-Capable Transport) (0x00)
Total Length: 62
Identification: 0x31c4 (12740)
Flags: 0x02 (Don't Fragment)
0... .... = Reserved bit: Not set
.1.. .... = Don't fragment: Set
..0. .... = More fragments: Not set
Fragment offset: 0
Time to live: 128
Protocol: TCP (6)
Header checksum: 0x459e [correct]
[Good: True]
[Bad: False]
Source: 192.168.1.3 (192.168.1.3)
Destination: 192.168.1.4 (192.168.1.4)
[Source GeoIP: Unknown]
[Destination GeoIP: Unknown]
Transmission Control Protocol, Src Port: msrp (2855), Dst Port: search-agent (1234), Seq: 1, Ack: 1, Len: 22
Source port: msrp (2855)
Destination port: search-agent (1234)
[Stream index: 0]
Sequence number: 1 (relative sequence number)
[Next sequence number: 23 (relative sequence number)]
Acknowledgment number: 1 (relative ack number)
Header length: 20 bytes
Flags: 0x018 (PSH, ACK)
000. .... .... = Reserved: Not set
...0 .... .... = Nonce: Not set
.... 0... .... = Congestion Window Reduced (CWR): Not set
.... .0.. .... = ECN-Echo: Not set
.... ..0. .... = Urgent: Not set
.... ...1 .... = Acknowledgment: Set
.... .... 1... = Push: Set
.... .... .0.. = Reset: Not set
.... .... ..0. = Syn: Not set
.... .... ...0 = Fin: Not set
Window size value: 64240
[Calculated window size: 64240]
[Window size scaling factor: -1 (unknown)]
Checksum: 0x8ea0 [validation disabled]
[Good Checksum: False]
[Bad Checksum: False]
[SEQ/ACK analysis]
[Bytes in flight: 22]
Data (22 bytes)
0000 48 61 6c 6c 6f 20 64 61 73 20 69 73 74 20 65 69 Hallo das ist ei
0010 6e 20 54 65 73 74 n Test
Data: 48616c6c6f20646173206973742065696e2054657374
[Length: 22]