[Ksro]Sloke_Chat reader_V1

06/05/2010 21:43 lesderid#16
Quote:
Originally Posted by recking View Post
i took yours ;) autoit isnt safe at all. there are tools to make au3 from an exe...
AutoIt can be safe if did in the right way.
You know that. :p
06/05/2010 22:11 acer20006#17
Quote:
Originally Posted by recking View Post
i took yours ;) autoit isnt safe at all. there are tools to make au3 from an exe...
de-compile tools _ yes , nice work , i hope that u didn't had Headache;)
Code:
$12121 =
>>>> PS : i should change to C++ :D:D:D:D:D:D:D
06/05/2010 22:14 acer20006#18
Quote:
Originally Posted by lesderid View Post
AutoIt can be safe if did in the right way.
You know that. :p
what about little help _ by sharing your idea :D
06/05/2010 22:17 acer20006#19
if u like this tool _ what about pressing "thanks" button !!!
06/06/2010 16:06 lesderid#20
I am currrently making a chat reader for cSRO with a translation function (cSRO Chat TransReader :P).
06/06/2010 23:56 acer20006#21
Quote:
Originally Posted by lesderid View Post
I am currrently making a chat reader for cSRO with a translation function (cSRO Chat TransReader :P).
u have knowledge , code , time _ so u can make it _ if there are any trouble just post it at this topic or make new one _ GL
BTW which language u will use ?
06/07/2010 07:10 lesderid#22
Quote:
Originally Posted by acer20006 View Post
u have knowledge , code , time _ so u can make it _ if there are any trouble just post it at this topic or make new one _ GL
BTW which language u will use ?
It's done.
I just changed your kSRO reader so it works for cSRO and I added Union, Academy, Guild...
So it's AutoIt.

Now I need to do the translation part and I wouldn't know how xD

EDIT: I have an awesome idea, I could send the translated text to the client using the proxy...
But I'm too lazy to do the packet/sender name/message length shit. xP

EDIT2: I have a problem with Notice packets ([Only registered and activated users can see links. Click Here To Register...]).
The length stuff and opcode and message type isn't needed (anymore) so I just cut the first 9 bytes (18 chars).
But that doesn't seem to work...
06/07/2010 07:35 recking#23
Quote:
Originally Posted by lesderid View Post
It's done.
I just changed your kSRO reader so it works for cSRO and I added Union, Academy, Guild...
So it's AutoIt.

Now I need to do the translation part and I wouldn't know how xD

EDIT: I have an awesome idea, I could send the translated text to the client using the proxy...
But I'm too lazy to do the packet/sender name/message length shit. xP

EDIT2: I have a problem with Notice packets ([Only registered and activated users can see links. Click Here To Register...]).
The length stuff and opcode and message type isn't needed (anymore) so I just cut the first 9 bytes (18 chars).
But that doesn't seem to work...
talk to bheaven here on the forum, he should manage to give u the right way ;)
06/07/2010 16:01 acer20006#24
Quote:
Originally Posted by lesderid View Post
It's done.
I just changed your kSRO reader so it works for cSRO and I added Union, Academy, Guild...
So it's AutoIt.

Now I need to do the translation part and I wouldn't know how xD

EDIT: I have an awesome idea, I could send the translated text to the client using the proxy...
But I'm too lazy to do the packet/sender name/message length shit. xP

EDIT2: I have a problem with Notice packets ([Only registered and activated users can see links. Click Here To Register...]).
The length stuff and opcode and message type isn't needed (anymore) so I just cut the first 9 bytes (18 chars).
But that doesn't seem to work...
*the logic which used in autoit could use in any other lang
*receiving / sending must going through proxy otherwise u will get crashed
*<edite2> if u talking about sending msg here so {length stuff and opcode and message type} u have to calculate them first
1- u have to know what is ur chat(msg) length
hello =68656C6C6F (string) ur msg
68656C6C6F / 2 = 05
>>>>>>>>>> it will be like that 0568656C6C6F
after that u have to put the window identify packet (windows type) before our chat msg
for example window type (party ) "6E320200020800"
it will be 6E3202000208000568656C6C6F
after that know the length and put it before them all then opcode
>> calculate the whole packet by knowing the length again :D _ the whole packet length __ u must now know the rest
happy sending


Quote:
Originally Posted by recking View Post
talk to bheaven here on the forum, he should manage to give u the right way ;)
:o
06/07/2010 16:31 szygis#25
so we're getting this for csro anytime soon or what?
06/07/2010 16:32 lesderid#26
Quote:
Originally Posted by acer20006 View Post
*the logic which used in autoit could use in any other lang
Reinventing the wheel isn't my way.


Quote:
Originally Posted by acer20006 View Post
*receiving / sending must going through proxy otherwise u will get crashed
I know, I said "send using the proxy...".


Quote:
Originally Posted by acer20006 View Post
*<edite2> if u talking about sending msg here so {length stuff and opcode and message type} u have to calculate them first
1- u have to know what is ur chat(msg) length
hello =68656C6C6F (string) ur msg
68656C6C6F / 2 = 05
>>>>>>>>>> it will be like that 0568656C6C6F
after that u have to put the window identify packet (windows type) before our chat msg
for example window type (party ) "6E320200020800"
it will be 6E3202000208000568656C6C6F
after that know the length and put it before them all then opcode
>> calculate the whole packet by knowing the length again :D _ the whole packet length __ u must now know the rest
happy sending
Well, notice is different, it just has the default header (length-opcode-msgtype-messagelength-message) but no sender.

So why do I need to calculate all the shit?
Can't I just trim the bytes till the message part?
06/07/2010 17:07 acer20006#27
Quote:
Originally Posted by lesderid View Post
Reinventing the wheel isn't my way.




I know, I said "send using the proxy...".




Well, notice is different, it just has the default header (length-opcode-msgtype-messagelength-message) but no sender.

So why do I need to calculate all the shit?
Can't I just trim the bytes till the message part?
Reinventing the wheel isn't my way

O.K
send to me the code which include sending part ( in private msg) _ but first use WEP(google it) to catch the chat packets ( for example > send "hello" at windows type<all> )
then send code, packet to me __ i will modify code for u :pimp:
have a nice day
06/07/2010 17:45 lesderid#28
Quote:
Originally Posted by szygis View Post
so we're getting this for csro anytime soon or what?
Yes. Wait bro.

Quote:
Originally Posted by acer20006 View Post
Reinventing the wheel isn't my way

O.K
send to me the code which include sending part ( in private msg) _ but first use WEP(google it) to catch the chat packets ( for example > send "hello" at windows type<all> )
then send code, packet to me __ i will modify code for u :pimp:
have a nice day
I can do it myself lol.
I just need help with the notice...
06/07/2010 17:58 acer20006#29
Quote:
Originally Posted by lesderid View Post
Yes. Wait bro.



I can do it myself lol.
I just need help with the notice...
u have to figure out the rest by yourself
GL
06/07/2010 19:43 recking#30
Quote:
Originally Posted by lesderid View Post
Reinventing the wheel isn't my way.




I know, I said "send using the proxy...".




Well, notice is different, it just has the default header (length-opcode-msgtype-messagelength-message) but no sender.

So why do I need to calculate all the shit?
Can't I just trim the bytes till the message part?
did u read the Drew Benton "Silkroad Security Guide"? Read that, cause at the moment i have the feeling that you just want to replace the right Ksro codes with wrong(!) raw csro codes, that will lead definitly to a, a dc, or b, to a ban.