Register for your free account! | Forgot your password?

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

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

Advertisement



Buu - The Packet Analyzer

Discussion on Buu - The Packet Analyzer within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old 09/05/2012, 11:07   #16
 
elite*gold: 0
Join Date: Jan 2012
Posts: 55
Received Thanks: 3
The release of the third version Emeti ?
ConquerServer is offline  
Old 09/05/2012, 12:52   #17
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by ConquerServer View Post
The release of the third version Emeti ?
Still not finished, not close actually. I'm expecting to finish it Friday or Saturday.

Here is some preview of the new (Offset Analyzer):


The automatic analyzer will analyze all datatypes at first and then analyze it as a string with a dynamic size and at last it will try to analyze the offset as a string for the rest offsets in the packet.

The menu you see in the right side is equal to the tab.
A = Packet Analyzer
P = Proxy List
SN = Packet Sniffer
SS = Scripts

Uhmm the scripting will be like you install scripts for either c# or vb.net and you can run a script, but there is also some pre-scripts for handling packets send/received as well cryprography.

Also there will be ability to save/load projects which could be useful if you want to save some specific scripts for one thing and other scripts for another, but also settings etc.

The reason it's so delayed it's because I'm currently quite busy, because I have exams next week.
I don't have a username is offline  
Thanks
1 User
Old 09/05/2012, 13:16   #18
 
elite*gold: 0
Join Date: Jan 2012
Posts: 55
Received Thanks: 3
Great work very grace Lake in exams
ConquerServer is offline  
Thanks
1 User
Old 09/05/2012, 23:12   #19
 
.Kinshi's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 341
Received Thanks: 255
The... colors... ugh... :P
.Kinshi is offline  
Old 09/07/2012, 21:33   #20
 
Reluctance's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 49
Received Thanks: 11
Oh dammm, im lovvinn dis. Good workk!
Reluctance is offline  
Old 09/18/2012, 18:44   #21
 
Danial Eugen's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 171
Received Thanks: 68
I wonder why you use Buffer.BlockCopy ? i think using memory is better anyway.


Also you added
Code:
using System.Windows.Forms;
However, you turned to use System.Windows.Forms again !
Code:
System.Windows.Forms.DialogResult.OK
Isn't it enough to just type (WITHOUT REDUNDANT)
Code:
DialogResult.OK
Danial Eugen is offline  
Old 09/18/2012, 22:07   #22
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by Danial Eugen View Post
I wonder why you use Buffer.BlockCopy ? i think using memory is better anyway.


Also you added
Code:
using System.Windows.Forms;
However, you turned to use System.Windows.Forms again !
Code:
System.Windows.Forms.DialogResult.OK
Isn't it enough to just type (WITHOUT REDUNDANT)
Code:
DialogResult.OK
#1. Lazyness

#2. It's default by the IDE to type it all out.
I don't have a username is offline  
Thanks
1 User
Old 09/19/2012, 03:18   #23
 
Danial Eugen's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 171
Received Thanks: 68
Quote:
Originally Posted by I don't have a username View Post
#1. Lazyness

#2. It's default by the IDE to type it all out.
I never encountered it with Visual Studio ! kinda strange.
Danial Eugen is offline  
Old 09/19/2012, 03:27   #24
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by Danial Eugen View Post
I never encountered it with Visual Studio ! kinda strange.
It usually comes with enumerators.

Like if you have:
Code:
namespace myname
{
    public enum myenum
    {
        Some = 0
    }
}
It would autocomplete it like:
Let's say we've already declared myname as the namespace.
Code:
myenum en = myname.myenum.
However if we were in that namespace by default without it had to declared it would figure it out by itself.
I don't have a username is offline  
Old 10/16/2012, 03:34   #25
 
elite*gold: 0
Join Date: Jan 2010
Posts: 3
Received Thanks: 0
Post

please hlp me i have a problem when i use packet analyzer

look like this:



please hlp me
hamojackk is offline  
Old 10/16/2012, 06:20   #26
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by hamojackk View Post
please hlp me i have a problem when i use packet analyzer

look like this:



please hlp me
You have tried to use 2 proxy servers with the same port.
I don't have a username is offline  
Old 10/16/2012, 12:05   #27
 
elite*gold: 0
Join Date: Jan 2010
Posts: 3
Received Thanks: 0
Post

when i type this information :

Server IP : 41.32.84.60 Port: 5816

Proxy IP : 127.0.0.1 Port: 8877

get the same error what should i do to fix this plm
hamojackk is offline  
Old 10/16/2012, 12:40   #28
 
_DreadNought_'s Avatar
 
elite*gold: 28
Join Date: Jun 2010
Posts: 2,226
Received Thanks: 868
Quote:
Originally Posted by hamojackk View Post
when i type this information :

Server IP : 41.32.84.60 Port: 5816

Proxy IP : 127.0.0.1 Port: 8877

get the same error what should i do to fix this plm
Keep trying different ports. Read the error.
_DreadNought_ is offline  
Thanks
1 User
Old 10/16/2012, 13:36   #29
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by hamojackk View Post
when i type this information :

Server IP : 41.32.84.60 Port: 5816

Proxy IP : 127.0.0.1 Port: 8877

get the same error what should i do to fix this plm
Example:
Proxy1: 5816 & 8877
Proxy2: 9959 & 8899
I don't have a username is offline  
Thanks
1 User
Old 10/16/2012, 15:00   #30
 
elite*gold: 0
Join Date: Jan 2010
Posts: 3
Received Thanks: 0
Post

Quote:
Originally Posted by I don't have a username View Post
Example:
Proxy1: 5816 & 8877
Proxy2: 9959 & 8899
thx for hlp ^_^
hamojackk is offline  
Reply


Similar Threads Similar Threads
[Source] Sro Packet Analyzer Using NuConnecter [VB6]
03/22/2013 - SRO Hacks, Bots, Cheats & Exploits - 10 Replies
Here i am releasing my sourcecode to my sro packet Analyzer ... this is what i use on a day to day base's to find opcodes and packets for my bot... have fun with it works well.. this has every call in it you would need to write your own packet based bot.. ....
Packet Analyzer
08/30/2012 - CO2 Programming - 4 Replies
#This can be closed. Made a new packet-analyzer.
My packet analyzer
05/10/2011 - Kal Online - 17 Replies
Hey guys. So i made my own little proxy dll for kalonline that outputs the data sent to the send() and recv() functions to a console window. When i was done with it, i tested it out but it's only putting out data from send(). My guess would be that it's using a different function to receive data (WSArecv, recvfrom), but when i checked those functions they were never called. Anybody know something i don't? Also, in the screenshot below, i put in a bogus username and password and expected to...
Network Analyzer
07/07/2010 - Coding Releases - 2 Replies
Analyzes WLAN, LAN,WAN Traffic IN / OUT going PortScans Trace #UPX Packed C# EXE for scurity :) #XOR Crypted by FlyCrypter (Public)
Packet Analyzer
07/08/2006 - Conquer Online 2 - 11 Replies
Wondering if theres any working packet analyzer/sender avaliable since latest patch *edit: made it bigger so some dumbasses dont start with the "search thing".



All times are GMT +1. The time now is 10:30.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

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