- Joined
- Aug 23, 2008
- Messages
- 10
- Reaction score
- 0
So I was sniffing some packets on eFlyff and I wanted to see the actual login packet for the server list. using the guide from the other packet information posts, I was able to break down and now show you what it looks like. I will show you the Kern Server and the first channel. I hope the information is correct and that I have learned something from all of this. Perhaps you will too.
Server List Packet (broken down)
The server capacity is 1,100 represented in hex as 044C. Now with the little endian it would read 4C04. I caught that one after trying to convert decimal to hex. Be sure to convert your numbers into hex.
a great place to do that online is here:
Thanks to the people on the previous threads about packet information and structure.
Server List Packet (broken down)
Code:
5E
BF 05 00 00
FD 00 00 00
48 6E 17 19 01
0B 00 00 00
64 61 72 6B 73 61 6D 75 73 38 32 USERNAME
25 00 00 00
FF FF FF FF
06 00 00 00 INT-SERVER ID *REVERSED*
04 00 00 00 INT-LENGTH OF SERVER NAME *REVERSED*
4B 65 72 6E SERVER Name (Kern)
0E 00 00 00 INT-LEnGTH OF SERVER IP
36 34 2E 31 32 37 2E 31 30 33 2E 32 34 38 SERVER IP (64.127.103.248)
00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00
06 00 00 00 INT-CLUSTER ID *REVERSED*
01 00 00 00 INT-CHANNEL ID *REVERSED*
03 00 00 00 INT-LENGTH OF CHANNEL NAME *REVERSED*
36 2D 31 00 CHANNEL NAME (6-1)
00 00 00 00 00 00 00 00
45 02 00 00 INT-ONLINE PLAYERS
01 00 00 00
4C 04 00 00 INT-CHANNEL CAPACITY *REVERSED* (1,100 reversed 001,1)
The server capacity is 1,100 represented in hex as 044C. Now with the little endian it would read 4C04. I caught that one after trying to convert decimal to hex. Be sure to convert your numbers into hex.
a great place to do that online is here:
To view the content, you need to sign in or register
Thanks to the people on the previous threads about packet information and structure.