[Request]C# open source server stats tool

07/10/2011 13:43 Haxor#1
so guys
im learning c#
and i wanna this tool source (Server stats tool)

So if any1 have, send source here and i will be appreciated
07/10/2011 13:47 sarkoplata#2
there is one written in c++.
You should write your own proxy which is for advanced coders.
But if you are able to take packets with phConnector analyze A101 (Login Packet)
You can analyze it like this ;
PHP Code:
readPacket.ReadByte()
        
readPacket.ReadByte()
        
readPacket.ReadChars(readPacket.ReadUInt16())
        
readPacket.ReadByte()
        
readPacket.ReadByte()
        
Dim SvrID readPacket.ReadUInt16()
        
Dim NameLen readPacket.ReadUInt16()
        
Dim Name As Char() = readPacket.ReadChars(NameLen)
        
Dim RealName As New String(Name)
        
Dim CurOnServ As Integer readPacket.ReadUInt16()
        
Dim MaxOnServ As Integer readPacket.ReadUInt16()
        
Dim ServStat As Integer readPacket.ReadByte() 
Peace.
07/10/2011 13:47 ÑõÑ_Ŝŧóp#3
You need to make a lil clientless tool
which connect to login server and send 6101 and receive the packet with server stats as i remember its opcode was A101
07/10/2011 14:19 Haxor#4
ok thanks all
I find a good source (Clientless) And i was looking at it
But i still dont get somethings from it
07/10/2011 14:44 vorosmihaly#5
Quote:
Originally Posted by sarkoplata View Post
there is one written in c++.
You should write your own proxy which is for advanced coders.
But if you are able to take packets with phConnector analyze A101 (Login Packet)
You can analyze it like this ;
PHP Code:
readPacket.ReadByte()
        
readPacket.ReadByte()
        
readPacket.ReadChars(readPacket.ReadUInt16())
        
readPacket.ReadByte()
        
readPacket.ReadByte()
        
Dim SvrID readPacket.ReadUInt16()
        
Dim NameLen readPacket.ReadUInt16()
        
Dim Name As Char() = readPacket.ReadChars(NameLen)
        
Dim RealName As New String(Name)
        
Dim CurOnServ As Integer readPacket.ReadUInt16()
        
Dim MaxOnServ As Integer readPacket.ReadUInt16()
        
Dim ServStat As Integer readPacket.ReadByte() 
Peace.
btw,if it's c++,then I'm the british king,lol.
07/10/2011 15:05 sarkoplata#6
Quote:
Originally Posted by vorosmihaly View Post
btw,if it's c++,then I'm the british king,lol.
Lol , this is my own code in vb.net , i just meant there was opensource server stats tool written in c++.
He needed c# one so he can just understand what ive written.
07/10/2011 15:55 vorosmihaly#7
Quote:
Originally Posted by sarkoplata View Post
Lol , this is my own code in vb.net , i just meant there was opensource server stats tool written in c++.
He needed c# one so he can just understand what ive written.
hehe all right,I read "there" as "this" at first,idk why :P
07/11/2011 00:34 lorveth#8
Quote:
Originally Posted by saif1999 View Post
so guys
im learning c#
and i wanna this tool source (Server stats tool)

So if any1 have, send source here and i will be appreciated
Hi,

[Only registered and activated users can see links. Click Here To Register...]

Should be written in C#.
07/11/2011 00:57 sarkoplata#9
Quote:
Originally Posted by lorveth View Post
Hi,

[Only registered and activated users can see links. Click Here To Register...]

Should be written in C#.
No that is c++.
07/11/2011 00:58 vorosmihaly#10
btw,there's drew's one which is an example in the c# silkroadsecurity^^ xD
07/11/2011 01:01 lorveth#11
Quote:
Originally Posted by sarkoplata View Post
No that is c++.
Then I have last one here:
[Only registered and activated users can see links. Click Here To Register...]

I think its vb6 or vb net.
07/11/2011 03:37 sarkoplata#12
Quote:
Originally Posted by lorveth View Post
Then I have last one here:
[Only registered and activated users can see links. Click Here To Register...]

I think its vb6 or vb net.
yea i know it.
It is vb.net but it uses a readymade .dll , which we need source of :D So useles..