Valhalla Legends Archive

General => /WHOAMI -- Introductions => Topic started by: i8igmac on September 15, 2011, 11:12 AM

Title: `whoami`=> "bigmac\n"
Post by: i8igmac on September 15, 2011, 11:12 AM
i have been working with ruby for a little while now and its alot of fun... i have script a few proxys and other tools for automating task's...

i have been searching your forum for ruby document but i only see a few examples of pack and unpack...

my first question would be, is it possible to establish a connection to the battlenet servers with ruby? i have been trying and all my attempts fail...
Title: Re: `whoami`=> "bigmac\n"
Post by: MysT_DooM on September 15, 2011, 07:14 PM
Anything is possible.  Have you read up on Ruby Socket Programming?  I googled a bit and theres a lot of info out there for it. 

Also check out bnetdocs.org once you get a good foundation on ruby socket programming.
Title: Re: `whoami`=> "bigmac\n"
Post by: Alendar on September 15, 2011, 07:37 PM
Welcome to the forums! Looking forward to seeing any possible productions you may make. =)
Title: Re: `whoami`=> "bigmac\n"
Post by: i8igmac on September 15, 2011, 09:26 PM
i have made some clients and proxys, mosty http, some ftp and ssh but these are all simple...

i have never done anything with headers


require 'socket'
bnet_server=TCPSocket.open('useast.battle.net','6112')
bnet_server.puts("") # 01
bnet_server.recv
bnet_server.puts"�P:?????68XI3RAW???SUne��k�?? ?? ??USA?United States?"
bnet_server.recv


this was my first attempt to establish a connection, i never receive a response, im sure once i get past this part things will start to make sense...

i will start reading more into tcp connections.
Title: Re: `whoami`=> "bigmac\n"
Post by: rabbit on September 16, 2011, 12:31 AM
I'm going to go out on a limb and assume that Ruby behaves like other languages and has a state change callback somewhere.
Title: Re: `whoami`=> "bigmac\n"
Post by: MyndFyre on September 16, 2011, 09:58 AM
@iBigmac: You'll be far, far better off not treating the connection data as a string.  I'm sure Ruby has a way to manipulate a byte stream; you'll be far happier using that.  (Most people here would call that a databuffer or packet buffer). 
Title: Re: `whoami`=> "bigmac\n"
Post by: i8igmac on September 19, 2011, 10:50 AM
thanks for your help guys I figured it out.

I've pulled the hex value from wireshark and used [hexdata].pack("H")

I have received response and things now makes sense !