Jump to content

Building Your Own Client With Wireshark...


i8igmac

Recommended Posts

i have built a lot of my own client tools with ruby to perform small automated task's. example http, ftp, ssh...

i used to host public servers for games like warcraft3 and counterstrike... i would like to build a client to connect to one of my servers to say "hello world"

require 'socket'
server=socket.open("192.168.1.109", "6113")
server.puts("data.needed.to.establish.connection")
server.recv
server.puts("data.needed.to.look.as.legit.client")
server.recv
server.puts("and more data")
server.recv
server.puts("hello to all people in the public server")
server.recv
exit

what i have done so far...

ill start up wireshark to start a live capture then with my game client ill connect to the server... now im trying to reduplicate in ruby what i see in wireshark...

is there a easy way to build a tool with this data i see in wireshark??? any one have experience with this?

Link to comment
Share on other sites

Not sure if that's gonna work, but try looking into TCPReply.

http://tcpreplay.synfin.net/

Edited by Infiltrator
Link to comment
Share on other sites

i have built a lot of my own client tools with ruby to perform small automated task's. example http, ftp, ssh...

i used to host public servers for games like warcraft3 and counterstrike... i would like to build a client to connect to one of my servers to say "hello world"

require 'socket'
server=socket.open("192.168.1.109", "6113")
server.puts("data.needed.to.establish.connection")
server.recv
server.puts("data.needed.to.look.as.legit.client")
server.recv
server.puts("and more data")
server.recv
server.puts("hello to all people in the public server")
server.recv
exit

what i have done so far...

ill start up wireshark to start a live capture then with my game client ill connect to the server... now im trying to reduplicate in ruby what i see in wireshark...

is there a easy way to build a tool with this data i see in wireshark??? any one have experience with this?

A long time ago I used to make some evil programs (booters, mass logins, account brute force programs... so on) for Yahoo Messenger services. Since then it has gotten more difficult to say even login an account. Most things now will be SSL including a complex login or some type of encryption. So I can only tell you, Good Luck lol.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...