Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Programming
You last visited: Today at 14:18

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

Advertisement



Question about client connecting to proxy

Discussion on Question about client connecting to proxy within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
tkblackbelt's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 266
Received Thanks: 85
Question about client connecting to proxy

Hi when I receive and edit the game ip packet to reconnect to my proxy, should my client then automatically try and connect to my proxy on port 5816. Because I've set up a server socket to listen for connections but basically 2 seconds after I send the gameip packet my client says could not connect to game server and my server socket never detects a connection. I know the packet was edited right because when I changed my proxyip to 127.0.0.1 the client crashed. so am I missing a step or something? thanks
tkblackbelt is offline  
Old 12/31/2010, 21:07   #2
 
tkblackbelt's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 266
Received Thanks: 85
Problem solved I forgot to change the game port in the loader to 5816, now on to the game server login.
tkblackbelt is offline  
Old 12/31/2010, 22:44   #3
 
tkblackbelt's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 266
Received Thanks: 85
I got another quick question I've gotten to the game server packets and wondering if I could test logging in to the game server without getting the dhkeys just to see If I could login. Heres whats happening so far. I get these and I disconnect, shouldn't I be able to login but just not be able to read/edit the packets.

PHP Code:
[Light_ProxyWaiting for connections on port9959
[Light_ProxyConquer client connected
[Light_ProxyConnecting to Auth server
[Light_ProxyConnection to Auth Server complete
[Light_ProxyAuthServer Packet Type1059
[Light_ProxyAuthServer Packet Type1055
[Light_ProxyWating for connection to GameServer
[Light_ProxyClient Connecting to game ip
Server 
-> Client Length 339
null
81 192 128 45 189 69 32 86 27 78 106 168 248 95 29 8 21 223 168 32 126 14 133 63 105 98 246 29 74 18 148 
33 208 194 209 240 124 198 61 16 80 65 163 168 131 125 51 179 69 57 104 225 44 198 137 13 22 253 210 60 227 
51 28 157 100 85 213 152 83 114 216 74 73 64 184 224 185 123 238 230 169 210 120 86 116 149 48 1 53 53 179 
134 124 164 102 21 236 123 14 30 8 191 11 185 148 21 217 61 184 33 200 21 113 244 11 72 129 173 219 11 209 
221 81 13 210 194 165 40 183 186 91 167 173 27 76 160 122 14 29 209 155 3 33 168 123 11 97 161 99 25 233 
92 58 40 151 100 232 209 74 88 40 111 127 90 240 18 31 234 6 78 37 94 116 112 243 171 218 8 22 38 223 
122 225 99 195 165 189 126 168 105 202 8 164 222 240 24 211 141 69 80 2 72 55 248 110 43 97 22 185 211 19 
20 47 97 235 96 179 3 170 231 53 3 126 84 210 75 245 89 4 59 104 130 56 127 196 150 237 192 32 96 20 
89 39 238 103 227 107 216 145 242 105 93 201 95 47 146 56 253 22 63 166 63 6 1 183 163 33 3 220 42 157 
236 150 67 105 238 157 139 93 170 58 15 147 100 208 120 123 17 41 94 162 187 38 159 248 248 231 138 82 94 70 
218 40 230 143 50 92 192 93 44 53 188 86 143 29 214 68 23 223 198 134 139 67 148 201 204 50 32 81 31 251 
88 95 165 139 248 208 253 125 
Client 
-> Server Length 204
null
152 139 98 122 36 163 88 176 121 18 191 226 88 235 61 201 107 179 133 211 78 65 47 6 126 37 121 122 52 74 188 
68 133 159 230 114 250 19 32 11 10 33 235 60 170 170 92 114 197 178 237 146 238 213 104 230 185 133 221 158 171 
62 18 12 198 161 1 108 21 204 105 127 172 77 134 162 217 18 0 34 43 29 229 46 137 206 42 37 219 239 166 
125 181 184 75 50 63 233 222 204 30 25 173 142 165 52 255 27 54 188 215 183 99 124 4 112 26 61 205 113 30 
220 76 127 231 157 144 151 199 137 119 120 33 88 180 171 114 73 249 167 125 176 139 233 239 118 14 222 72 145 134 
234 24 242 233 81 13 86 51 197 157 11 22 151 192 203 10 168 172 10 154 8 159 219 135 212 212 106 36 173 171 
68 57 130 48 106 112 42 89 241 37 166 189 74 23 61 100 77 217 149 216 12 198 186 
Client 
-> Server Length 36
null
13 234 66 249 20 250 232 5 162 215 10 8 48 7 208 243 58 41 49 216 226 109 113 99 51 122 137 92 215 166 169 
223 146 59 112 139 
I disconnect after the last one.
tkblackbelt is offline  
Old 01/01/2011, 06:18   #4
 
elite*gold: 0
Join Date: Jun 2006
Posts: 457
Received Thanks: 67
if you have set it up properly you wont dc. looks like the last packet seen is the time packet. Let's take a look at your codes for receiving and forwarding packets.
shitboi is offline  
Old 01/01/2011, 13:37   #5
 
tkblackbelt's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 266
Received Thanks: 85
Quote:
Originally Posted by shitboi View Post
if you have set it up properly you wont dc. looks like the last packet seen is the time packet. Let's take a look at your codes for receiving and forwarding packets.
Thanks but I actually just got it working I was receiving a byte [] of 1024 and was sending that even if the packet wasn't the big, I forgot to create a array of the actual size of the packet before I sent it. Now I gotta get the game encryption working, and it looks like it'l be a ***** since you have been having a bit of trouble with it.

Edit: Have you had any luck with the getting the game encryption working.
tkblackbelt is offline  
Old 01/01/2011, 17:50   #6
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by tkblackbelt View Post
Thanks but I actually just got it working I was receiving a byte [] of 1024 and was sending that even if the packet wasn't the big, I forgot to create a array of the actual size of the packet before I sent it. Now I gotta get the game encryption working, and it looks like it'l be a ***** since you have been having a bit of trouble with it.

Edit: Have you had any luck with the getting the game encryption working.
C# and C++ both have full blowfish solutions posted all over epvp... my proxy as well as tannels work as a easy example of a dhkey man in the middle attack so that you can set up your encryptions... Shouldn't be too much work (took me a little while to fully understand so I could implement tannels code but it's far from difficult if you put a bit of time into it)
pro4never is offline  
Reply


Similar Threads Similar Threads
Connecting walker over a proxy?
01/21/2010 - Lineage 2 - 0 Replies
Where can i find a proxy to connect the walker with? We have been getting IP bans because of walker lol One person just lost 8 acccounts. :handsdown: Is it possible to get some public proxys to connect the bot with? Thanks
About CID proxy client
01/15/2010 - Conquer Online 2 - 9 Replies
in new 2.0.8 cid the scren dosn't show time and date , etc how can i show them
[Question] How to figure out, where is SJSRO connecting to?
11/15/2009 - SRO Private Server - 0 Replies
How and where can i know that where is SJSRO connecting to? Not ip, I know that is 174.139.5.122:15779. You know, if u wanna play isro, you must edit the hosts file placing in an ip and "gwgt.joymax.com" or gwgt1 or whatever. Is this true for SJSRO too? Or is there any other to SJSRO? If there is, what is it? Don't ask what i want to do with it, I have my own 'plan' , and im stuck here. If have any idea, please, post it here.
Proxy problem Connecting Rohan PH. Help plz
05/02/2009 - Rohan - 0 Replies
I have been playing Rohan Philippines since its CBT. I have been using free proxy for logging in the game. I am actually a filipino but in another country atm. But started having an error since 2 weeks. I open the loader, type in my id and password , choose my server. But when it's loading the character page, it gives me *Gate Server Connect Failed 3901* error and i cant open the characters screen. I have been using transparent proxies, hard to find a free anonymous proxy.. Could it be...
Connecting Client to Server
10/18/2008 - EO PServer Hosting - 2 Replies
I need help connecting my cleint to my server, when i try to connect on my main computer, it starts with a white screen, and then there is a error box, that has Soul, then a Ok button and you gotta hunt to close that white box. Can you please post a oem.ini that i would need so i can connect to my server?



All times are GMT +2. The time now is 14: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.