Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2
You last visited: Today at 04:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Permission for Progression

Discussion on Permission for Progression within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
TheComputerist's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 21
Received Thanks: 4
Permission for Progression

I'll spare you the horrible story on my troubles with RE and understanding Conquer from IDA and Ollydbg.

I've looked into the play.exe of Conquer and the AutoPatch. I'm under the impression that the play.exe is just a debug check of a persons computer and compatibility issue. I've already managed to bypass the (what I hope is the only) level of Update checking, hint: " blacknull".

Is there anything I should know from the play.exe or AutoPatch that might be critical to the performance of the Conquer client before I try to hit it next by finding WSA calls and send + recvs to actually (attempt to) get a Logging system going ?
TheComputerist is offline  
Old 08/31/2013, 04:28   #2
 
Lateralus's Avatar
 
elite*gold: 0
Join Date: May 2005
Posts: 1,892
Received Thanks: 918
There's really no reason why you can't hook those calls now from what I know. The only check is the blacknull string passed from the autopatch file as a parameter check, which you've mentioned you've bypassed.
Lateralus is offline  
Thanks
1 User
Old 08/31/2013, 04:57   #3
 
TheComputerist's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 21
Received Thanks: 4
Thanks I see you're point when you mentioned hooking those calls. I've already located them(As in the single function's that utilizes them for sending and receiving traffic).
I just needed some reassurance that if I was to hook them that I wouldn't spend a couple of hours searching within the conglomerate **** ton of calls that those functions get through reference (as in the hierarchy of code that lead to a call to rather it be send, sendto, and recvfrom) for some error that might had been caused by the AutoPatch not passing extra information to Conquer.exe (which I doubted since it made little sense to me seeing that it was a process within itself and not a child window that might have had memory access to the AutoPatch).

Since I do not want to spam the forum with individual questions, I guess I'll ask here. I ended up reading an article about the Encryption Conquer uses. Which specified 2 keys for login/ Auth and then the 2 new keys for actual in-game play(At least that's what I think I read it to be). Does that still stands to this date? (I'll take a guess and say yes since I've noticed that all network related logic end up going down into one of 4 functions before being sent to server. I'm not sure about recvfrom for now.).
TheComputerist is offline  
Old 08/31/2013, 06:42   #4
 
{ Angelius }'s Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 991
Received Thanks: 1,107
Quote:
Originally Posted by TheComputerist View Post
I've already managed to bypass the (what I hope is the only) level of Update checking, hint: " blacknull".
Correct. but by blacknull'ing Conquer.exe you discarded 1 important step of the process of connecting to the server which will result in your account getting banned.

When AutoPatch.exe is launched it sends the current client version in plain text to the server and then the server verifies it and replays back with the string "READY" if the version matches, Otherwise the replay is "UPDATE".

Conquer.exe does pretty much the same thing.
{ Angelius } is offline  
Old 08/31/2013, 07:03   #5
 
TheComputerist's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 21
Received Thanks: 4
I see, well that could had ended tragically for me. Not that I was going to use this for a bot luckily, I'm just trying to make a private server for experience, but regardless. Time to hop on wireshark. So it must be the server that keeps track via IP(going to check the packets to see)? And on a side note, What can you tell me encryption wise. I know you won't give me the keys(obviously) but is it just a big system that uses switching encrypted headers to check for what to do with the packet?

Does this seem right?

.?.a..p...t...E.
.,[email protected]......
s..`%C........P.
...]..5777

p...t..? .a....E.
.-.\@.o. [.&R.W...
.%8...n ~..!C.P
...... ..REA DY

I think that might be the packet you where telling me about.
I believe I found the function that does this whole thing. But sadly I found it in the AutoPatch not the Conquer.exe so I don't know of how much use it might be to me (_410C80)
TheComputerist is offline  
Old 09/02/2013, 05:28   #6
 
{ Angelius }'s Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 991
Received Thanks: 1,107
Quote:
Originally Posted by TheComputerist View Post
Does this seem right?

.?.a..p...t...E.
.,[email protected]......
s..`%C........P.
...]..5777

p...t..? .a....E.
.-.\@.o. [.&R.W...
.%8...n ~..!C.P
...... ..REA DY

I think that might be the packet you where telling me about.
I believe I found the function that does this whole thing. But sadly I found it in the AutoPatch not the Conquer.exe so I don't know of how much use it might be to me (_410C80)
Yes that's it... The one in conquer.exe doesn't really matter unless you are planing on going client-less.
If the purpose of this whole thing is to make a private server then the AutoPatch.exe doesn't matter and blacknull'ing conquer.exe is OK as long as you block any outgoing connections from it (Except for ports 5816/9959).

About the Encryption you should search the forum a bit and i am sure you will find all the information you need.
{ Angelius } is offline  
Thanks
1 User
Old 09/02/2013, 13:00   #7
 
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,576
Quote:
Originally Posted by { Angelius } View Post
Correct. but by blacknull'ing Conquer.exe you discarded 1 important step of the process of connecting to the server which will result in your account getting banned.

When AutoPatch.exe is launched it sends the current client version in plain text to the server and then the server verifies it and replays back with the string "READY" if the version matches, Otherwise the replay is "UPDATE".

Conquer.exe does pretty much the same thing.
I've been running the client with blacknull argument forever now without any issues.
phize is offline  
Old 09/02/2013, 16:17   #8


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by { Angelius } View Post
Correct. but by blacknull'ing Conquer.exe you discarded 1 important step of the process of connecting to the server which will result in your account getting banned.

When AutoPatch.exe is launched it sends the current client version in plain text to the server and then the server verifies it and replays back with the string "READY" if the version matches, Otherwise the replay is "UPDATE".

Conquer.exe does pretty much the same thing.
The AutoPatch server will deal with that. I don't think it communicates to the AccServer / MsgServer to say that the client is valid or not... It might have been added recently if it does.
CptSky is offline  
Old 09/03/2013, 03:37   #9
 
TheComputerist's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 21
Received Thanks: 4
I recently(today) blacknull'ed my 5777 client and the client asked me to update my CO2 client(to 5778). So I guess this is a verification that yes the client does check again after AutoPatch checks the client version.
I blacknull'ed my client again and logged in with the recently updated client and I didn't get instantly banned. But guess what! After about 10 minutes the account I used to log in get's a 1 day ban for suspicion of using a bot. I'm not too sure what to make of this.

(Hope someone out there trying to make a bot finds this useful. As for me, I can't find the **** encryption function of the client.)
TheComputerist is offline  
Old 09/03/2013, 09:55   #10
 
{ Angelius }'s Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 991
Received Thanks: 1,107
Quote:
Originally Posted by phize View Post
I've been running the client with blacknull argument forever now without any issues.
On realco, on the latest patch, by just blacknulling the exe? i don't think so.

Quote:
Originally Posted by CptSky View Post
The AutoPatch server will deal with that. I don't think it communicates to the AccServer / MsgServer to say that the client is valid or not... It might have been added recently if it does.
Trust me It does. Now i am not sure when that shit was added but its there and you can load the AutoPatch.exe/Conquer.exe into olly and search/breakpoint on one of these strings UPDATE/READY.

Quote:
Originally Posted by TheComputerist View Post
I recently(today) blacknull'ed my 5777 client and the client asked me to update my CO2 client(to 5778). So I guess this is a verification that yes the client does check again after AutoPatch checks the client version.
I blacknull'ed my client again and logged in with the recently updated client and I didn't get instantly banned. But guess what! After about 10 minutes the account I used to log in get's a 1 day ban for suspicion of using a bot. I'm not too sure what to make of this.
The 10 minutes could extend to 30 minutes before the account is restricted and you don't have to be online for it to ban you.

Quote:
Originally Posted by TheComputerist View Post
As for me, I can't find the damn encryption function of the client.
There you have it Cast_Encrypt:

Conquer.exe|ASM
{ Angelius } is offline  
Thanks
1 User
Old 09/03/2013, 13:19   #11
 
TheComputerist's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 21
Received Thanks: 4
Quote:
Originally Posted by { Angelius } View Post
There you have it Cast_Encrypt:

Conquer.exe|ASM
Wow thanks. Now I know where the Update checking goes on. But since I'm insanely newbish in RE, I still don't know where to find that Cast_Encrypt you're talking about within the Conquer.exe. But it's alright. For now I'm just going to read the logic behind that Cast_Encrypt and keep looking for it since I'll have an idea of what to look for.
TheComputerist is offline  
Old 09/03/2013, 17:16   #12
 
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,576
Quote:
Originally Posted by { Angelius } View Post
On realco, on the latest patch, by just blacknulling the exe? i don't think so.
If by "blacknulling the exe" you mean starting the client with the " blacknull blacknull" argument, then yeah I'm not getting banned.
phize is offline  
Reply

Tags
[help]


Similar Threads Similar Threads
Post Patch 1.6 - LVL 50 PvP Gear Progression Guide
07/21/2013 - SWTOR Guides & Strategies - 2 Replies
/* For Subscribers & F2P players */ Hey there everyone, I recently resubbed just because PvP has changed quite a bit since I left in 1.4. But now I'm back and excited to start PvP'in again and check out the new gear and builds. So, with all this new info I decided to update my old gearing guide video and I came up with this new video, so if your a fresh 50 looking to PvP come check out my gearing guide: LvL 50 Gear Progression Guide: http://i.imgur.com/xN0aK4W.png I also create MMO,...
BATTLEGROUND PROGRESSION
09/28/2011 - Main - 1 Replies
awd
BATTLEGROUND PROGRESSION
09/28/2011 - World of Warcraft - 0 Replies
wda
Allods Bot Progression
08/16/2010 - Allods - 11 Replies
Hi Allods- gamer, hacker, botter I don't work on this bot anymore!!! --- Ich arbeite nicht mehr an diesem Bot!!! I want to write a bot for Allods Online, but: I just joined Allods and that's why, i don't have so much knowledge about the game. That why I need you to help me with some special things in the game. I would like it too, if somebody would help me with coding. I'm not a Professional but a good Coder. To make the Progression simple for new Coders, I would like to make the bot...
Anyone have EXP lvl progression chart?
01/03/2007 - Conquer Online 2 - 2 Replies
If someone could make a lvl progression chart, i'd be greatful i think this would help a ton of ppl tryin to make money off of rbs :P



All times are GMT +2. The time now is 04:18.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.