hey i am using Drew's Silkroad Security to make a packet based login.( i extend his simple_proxy example)
So i made a new gui with a button. the func of the button is:
Well i compile and run the simple_proxy and redirect sro_client and i can see all packets that are sent. So i press the button and the packet also shows up - so it is sent successfully....but not encrypted. The bytes of that login-packet are exactly the same as the ones from manual login(same id, pw and server of course.)
I noticed that my packet isn't encrypted and i think it might be the problem.
i search all over the internet and that forum but noone has that problem.
So my question is...how can i send encrypted packets?
And do you think that this is the only mistake or is there another mistake i've done?
Thanks for help!
Regards,
lukas2abc
So i made a new gui with a button. the func of the button is:
Code:
Packet p = new Packet(0x6102);
p.WriteUInt8(18);//Locale
p.WriteAscii(ID);
p.WriteAscii(PW);
p.WriteUInt16(11);//ServerID?
Program.gw_remote_security.Send(p);
I noticed that my packet isn't encrypted and i think it might be the problem.
i search all over the internet and that forum but noone has that problem.
So my question is...how can i send encrypted packets?
And do you think that this is the only mistake or is there another mistake i've done?
Thanks for help!
Regards,
lukas2abc