i'm trying to create a raw sockets using ruby .... the problem is there isn't any thing called raw socket there ,and on the other hand the socket class itself is not fully documented .... do any body have some code samples for that kind of sockets in ruby ?? or maybe some kind of a documentation for that ???

By the way i already know very well how to work with TCPSocket and TCPServer classes ,and what i need is particularly a raw socket.

thanx any way ....

link|improve this question

14% accept rate
feedback

3 Answers

Google brings up the following result: http://www.ruby-forum.com/topic/90408

Short version:

require 'socket'

rsock = Socket.open(Socket::PF_INET, Socket::SOCK_RAW, Socket::IPPROTO_RAW)

rsock.send(string, flags)

rsock.recv(1024)

More documentation on the various Socket classes: http://www.rubycentral.com/pickaxe/lib%5Fnetwork.html

(The whole raw sockets thing is rather nasty on unices since it usually requires root access. I did not test this code. You may need to construct the whole packet yourself if you're not using IPSocket)

link|improve this answer
Thanx dude ..... but i already seen this "ruby-forum.com/topic/90408"; ,it's useless crap, and it's full of mistakes. the Pickaxe 3rd edition was the most useful thing, thanx again. – Raafat Aug 29 '09 at 2:20
It does work, sort of. The problem is the sample code you wind up with on google has an ./ip include. the thing they don't tell you is that it's a common template bitstruct class. also, it just sits there and continues to block if it gets less than 1024 of data. just saying that calling it useless crap is probably excessive. – aking1012 Feb 6 '11 at 3:15
Where do you get the ip class used in the ruby-forum example? – Joost Oct 22 '11 at 14:41
feedback

Have a look at the racket gem (https://rubygems.org/gems/racket). It seems to be a bit outdated since the last version was released in 2009 but its also used in the metasploit framework.

link|improve this answer
feedback

Have a look at PacketFu, it is very well maintained and used by the Metasploit Project.

https://github.com/todb/packetfu

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.