jonnybravo
September 29th, 2005, 06:52 AM
0000 00 40 2b 6d d2 bf 00 13 2f 67 97 54 08 00 45 00
0010 00 4b d7 f2 40 00 6f 06 79 8f d3 14 b0 41 0c b6
0020 2a 1f 71 48 08 11 de 8b e5 a4 5b 36 6e 62 50 18
0030 44 07 72 93 00 00 9f 25 81 6d a9 30 e0 58 a0 9f
0040 51 84 f8 fe ef e7 2e 53 33 0f d9 d9 79 15 ab 84
0050 7b 55 a4 cd 19 1f 36 80 e3
need to analysis this data from the server to the client......'
HERE IS THE DATA ABOUT THE PROTOCOL......
packet.ip.version = 4; /* version of IP used */
packet.ip.ihl = 20; /* Internet Header Length (IHL) */
packet.ip.tos = 0; /* Type Of Service (TOS) */
packet.ip.tot_len = htons(75); /* total length of the IP datagram */
packet.ip.id = d7f2; /* identification */
packet.ip.frag_off = 0; /* fragmentation flag */
packet.ip.ttl = 111; /* Time To Live (TTL) */
packet.ip.protocol = 06; /* protocol used (TCP in this case) */
packet.ip.check = 798f; /* IP checksum */
packet.ip.saddr = inet_addr("mine"); /* source address */
packet.ip.daddr = inet_addr("server"); /* destination address */
packet.tcp.source = htons(2065); /* source port */
packet.tcp.dest = htons(29000); /* destination port */
packet.tcp.seq = 1; /* sequence number */
packet.tcp.ack_seq = 1; /* acknowledgement number */
packet.tcp.fin = 0; /* FIN flag */
packet.tcp.syn = 0; /* SYN flag */
packet.tcp.rst = 0; /* RST flag */
packet.tcp.psh = 1; /* PSH flag */
packet.tcp.ack = 1; /* ACK flag */
packet.tcp.urg = 0; /* URG flag */
packet.tcp.window = htons(17415); /* window */
packet.tcp.check = 7293; /* TCP checksum */
35 bytes need to be analysis..................
9f 25 81 6d a9 30 e0 58 a0 9f
51 84 f8 fe ef e7 2e 53 33 0f d9 d9 79 15 ab 84
7b 55 a4 cd 19 1f 36 80 e3
need to know how to do this so i can analysis all data being sent form and to the server.
0010 00 4b d7 f2 40 00 6f 06 79 8f d3 14 b0 41 0c b6
0020 2a 1f 71 48 08 11 de 8b e5 a4 5b 36 6e 62 50 18
0030 44 07 72 93 00 00 9f 25 81 6d a9 30 e0 58 a0 9f
0040 51 84 f8 fe ef e7 2e 53 33 0f d9 d9 79 15 ab 84
0050 7b 55 a4 cd 19 1f 36 80 e3
need to analysis this data from the server to the client......'
HERE IS THE DATA ABOUT THE PROTOCOL......
packet.ip.version = 4; /* version of IP used */
packet.ip.ihl = 20; /* Internet Header Length (IHL) */
packet.ip.tos = 0; /* Type Of Service (TOS) */
packet.ip.tot_len = htons(75); /* total length of the IP datagram */
packet.ip.id = d7f2; /* identification */
packet.ip.frag_off = 0; /* fragmentation flag */
packet.ip.ttl = 111; /* Time To Live (TTL) */
packet.ip.protocol = 06; /* protocol used (TCP in this case) */
packet.ip.check = 798f; /* IP checksum */
packet.ip.saddr = inet_addr("mine"); /* source address */
packet.ip.daddr = inet_addr("server"); /* destination address */
packet.tcp.source = htons(2065); /* source port */
packet.tcp.dest = htons(29000); /* destination port */
packet.tcp.seq = 1; /* sequence number */
packet.tcp.ack_seq = 1; /* acknowledgement number */
packet.tcp.fin = 0; /* FIN flag */
packet.tcp.syn = 0; /* SYN flag */
packet.tcp.rst = 0; /* RST flag */
packet.tcp.psh = 1; /* PSH flag */
packet.tcp.ack = 1; /* ACK flag */
packet.tcp.urg = 0; /* URG flag */
packet.tcp.window = htons(17415); /* window */
packet.tcp.check = 7293; /* TCP checksum */
35 bytes need to be analysis..................
9f 25 81 6d a9 30 e0 58 a0 9f
51 84 f8 fe ef e7 2e 53 33 0f d9 d9 79 15 ab 84
7b 55 a4 cd 19 1f 36 80 e3
need to know how to do this so i can analysis all data being sent form and to the server.