|
You last visited: Today at 08:20
Advertisement
need help with login packet
Discussion on need help with login packet within the DarkOrbit forum part of the Browsergames category.
06/19/2012, 22:32
|
#31
|
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
|
Quote:
Originally Posted by kebab90
this ho the login packet looks like:003815420000 +(userid in hex)+ 00000020+(sessionid in hex)+0006+(clientversion in hex)++(server id in hex)
|
for me don't work... maybe i'm stupid... 
server id is like int1 or es4?? is coded in 4 hex character?
this part 003815420000 what means??
i send this packet in this way:
Code:
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+server_id_hex;
socket.Send(packet, str.Length, SocketFlags.None);
Help!!
|
|
|
06/19/2012, 22:33
|
#32
|
elite*gold: 0
Join Date: Apr 2012
Posts: 244
Received Thanks: 152
|
In login packet is not server id.
|
|
|
06/19/2012, 23:04
|
#33
|
elite*gold: 0
Join Date: Mar 2011
Posts: 311
Received Thanks: 117
|
Quote:
Originally Posted by pippop
for me don't work... maybe i'm stupid... 
server id is like int1 or es4?? is coded in 4 hex character?
this part 003815420000 what means??
i send this packet in this way:
Code:
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+server_id_hex;
socket.Send(packet, str.Length, SocketFlags.None);
Help!!
|
ok first is u need to convert userid dec to hex
sessionid as string to hex
clientversion as string to hex
server id as dec to hex
and server id is what u can find in fist page in source code like us1 is 47
looks like this in source code of 
<option value="254">Germany 3</option>
|
|
|
06/19/2012, 23:06
|
#34
|
elite*gold: 0
Join Date: Apr 2012
Posts: 244
Received Thanks: 152
|
Quote:
Originally Posted by kebab90
ok first is u need to convert userid dec to hex
sessionid as string to hex
clientversion as string to hex
server id as dec to hex
and server id is what u can find in fist page in source code like us1 is 47
looks like this in source code of 
<option value="254">Germany 3</option>
|
You are idiot.
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+ server_id_hex;
socket.Send(packet, str.Length, SocketFlags.None);
You are initializing variable str, but don't send it.
|
|
|
06/19/2012, 23:11
|
#35
|
elite*gold: 1
Join Date: Aug 2010
Posts: 1,330
Received Thanks: 1,724
|
MiszczuOfWorld if u are so smart make the code and help some.. dont make stupid spam!
|
|
|
06/19/2012, 23:12
|
#36
|
elite*gold: 0
Join Date: Mar 2011
Posts: 311
Received Thanks: 117
|
Quote:
Originally Posted by MiszczuOfWorld
You are idiot.
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+ server_id_hex;
socket.Send(packet, str.Length, SocketFlags.None);
You are initializing variable str, but don't send it.
|
why im idiot i do not initializ variable
|
|
|
06/19/2012, 23:22
|
#37
|
elite*gold: 0
Join Date: Apr 2012
Posts: 244
Received Thanks: 152
|
Quote:
Originally Posted by kebab90
why im idiot i do not initializ variable 
|
Because in login packet never was, and never will be server id.
You need to connect to ip of current map of ship. Then send packet with UID, SID, CV.
@asd26
I'm not doing code for someone else.
|
|
|
06/19/2012, 23:24
|
#38
|
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
|
Quote:
Originally Posted by MiszczuOfWorld
You are idiot.
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+ server_id_hex;
socket.Send(packet, str.Length, SocketFlags.None);
You are initializing variable str, but don't send it.
|
the real code is this below... copy & paste error
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+ server_id_hex;
Byte[] packet = Encoding.UTF8.GetBytes(str);
s.Send(packet, str.Length, SocketFlags.None);
|
|
|
06/19/2012, 23:27
|
#39
|
elite*gold: 0
Join Date: Apr 2012
Posts: 244
Received Thanks: 152
|
Quote:
Originally Posted by pippop
the real code is this below... copy & paste error
str = "003815420000" +userid_hex+ "00000020"+sessionid_hex+"0006"+clientversion_hex+ server_id_hex;
Byte[] packet = Encoding.UTF8.GetBytes(str);
s.Send(packet, str.Length, SocketFlags.None);
|
Still bad format.
|
|
|
06/19/2012, 23:42
|
#40
|
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
|
Quote:
Originally Posted by MiszczuOfWorld
Still bad format.
|
this not help me...
|
|
|
06/19/2012, 23:48
|
#41
|
elite*gold: 0
Join Date: Mar 2011
Posts: 311
Received Thanks: 117
|
Quote:
Originally Posted by MiszczuOfWorld
Still bad format.
|
u are idiot couse i have working tool woth this code so i if u dont trust in me use wireshark and try it
|
|
|
06/20/2012, 00:35
|
#42
|
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
|
Code:
string userid_hex_form = "0553D68C";
string DOClientVersion = "05352e31322e31";
string SessionID_hex = ConvertToHex("c169aac591cac76378b5a61c90ccdfde");
string server_hex = "00353732";
string conn_str = "003815420000" + userid_hex_form + "00000020" + SessionID_hex + "0006" + DOClientVersion + server_hex;
SendPacket(hSocket, conn_str);
i'm quite sure that the error is around here... Suggestion?
|
|
|
06/20/2012, 04:03
|
#43
|
elite*gold: 0
Join Date: Mar 2011
Posts: 311
Received Thanks: 117
|
Quote:
Originally Posted by pippop
Code:
string userid_hex_form = "0553D68C";
string DOClientVersion = "05352e31322e31";
string SessionID_hex = ConvertToHex("c169aac591cac76378b5a61c90ccdfde");
string server_hex = "00353732";
string conn_str = "003815420000" + userid_hex_form + "00000020" + SessionID_hex + "0006" + DOClientVersion + server_hex;
SendPacket(hSocket, conn_str);
i'm quite sure that the error is around here... Suggestion?
|
server hex is bad convert it like this is server 669(hu1) in hex is 29d
|
|
|
06/20/2012, 10:21
|
#44
|
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
|
Quote:
Originally Posted by kebab90
server hex is bad convert it like this is server 669(hu1) in hex is 29d
|
Code:
string userid_hex_form = "0553D68C";
string DOClientVersion = "05352e31322e31";
string SessionID_hex = ConvertToHex("c169aac591cac76378b5a61c90ccdfde");
string server_hex = "0000029d";
string conn_str = "003815420000" + userid_hex_form + "00000020" + SessionID_hex + "0006" + DOClientVersion + server_hex;
SendPacket(hSocket, conn_str);
you confirm that what i wrote above is right?
the port is 8080? Something wrong here?
Code:
hSocket = new Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);
hSocket.Connect(Current_IP,default_port);
thank you!!
|
|
|
06/20/2012, 13:57
|
#45
|
elite*gold: 0
Join Date: Apr 2012
Posts: 244
Received Thanks: 152
|
Quote:
Originally Posted by kebab90
u are idiot couse i have working tool woth this code so i if u dont trust in me use wireshark and try it
|
Yes, yes, but I have magic ponny.
@up
give us your current map, and Current_IP
|
|
|
 |
|
Similar Threads
|
DarkOrbit Login packet
05/17/2012 - DarkOrbit - 0 Replies
English
Hi all,
i am trying to connect to DarkOrbit but i don't know how to get one thing!
» That's the login packet:
00 37 00 A0 00 00 05 53 D6 8C 00 00 00 20 SESSIONID CLIENT_VERSION 00 00 SERVER
@all bot developer:
How can i get this letters at login??? at every account this 4 hex codes change but i don't know how to get them. Please send me a PM how to get them :)
|
[WOTLK] Deathknight Login Packet
05/22/2008 - World of Warcraft - 24 Replies
jo debuggen und so, hier ist der code:
25 Hide Hide 8 Send
0000 F3 EA 17 2D 4E F4 00 01 ...-N...
26 Hide Hide 8 Send
0000 40 20 1C 1F 96 E5 00 01 @ ......
27 Hide Hide 8 Send
0000 42 E5 47 F7 06 16 00 01 B.G.....
|
Login Packet Password Hash
11/06/2006 - Conquer Online 2 - 1 Replies
Hello,
I am trying to make a standalone bot, but i cannot figure out how to encrypt the password. Can anyone explain the routine for encrypting the password?
Thanks in advance,
ChaoTao
|
Login Packet
08/23/2006 - Conquer Online 2 - 5 Replies
I have tried to figure out how the login packet goes, i've used t3hn00bz0r's CO packet sniffer, but i only see the username, and server in the first packet, if i try to login again after that the packets done make any sence.
So if anyone could help me?
|
Password in Login Packet?
04/14/2006 - Conquer Online 2 - 17 Replies
Hey I'm looking through some packet info and such and I just wondered if anyone knew where your password is when you log in. Is it in the login packet along with your user name and server?If not where?
Any help would be appreciated. :D
|
All times are GMT +1. The time now is 08:21.
|
|