[Help] LoginServer in AutoIT

Newbie Spellweaver
Joined
May 27, 2008
Messages
5
Reaction score
0
Hey guys,

I startet to make a Login Server in AutoIT, but I can't recive and send packets...
Now i try to create the Packet-structure with DllStructureCreate() ....
But I recive nothing after connecting with the client and the client waits for an answer but I can't send any structurs :mad:

The client connects with the server but i cant recive and send data....

Please help me
I used this help thread
 
Re: LoginServer in AutoIT

I now this funktions... -.-
But I recive som data from the client :D
I recive this : 0x5E18F1F3763F0000004D6DAF22FC00000008000000323030 373037313200000000030000006C6F6C200000006234636434 62623637323431626436356439346430653764663336633034 3062

my name was "lol" and my paswword too
 
Re: LoginServer in AutoIT

I now this funktions... -.-
But I recive som data from the client :D
I recive this : 0x5E18F1F3763F0000004D6DAF22FC00000008000000323030 373037313200000000030000006C6F6C200000006234636434 62623637323431626436356439346430653764663336633034 3062

my name was "lol" and my paswword too

03000000 6C 6F 6C - size of string = 03, 6C = l, 6F = o
Thats your username: lol
The part after the username: 20 00 00 = 32 = size of password
The next 32 bytes are an md5 hash of a seed + your password
 
I think it would be easier in Rebol :)


There is also an easy MD5 function
 
Back