vote up 3 vote down star
2

How can you get a raw socket in Perl, and then what's the best way to built a packet for use with it?

flag

6 Answers

vote up 5 vote down

Perhaps searching The CPAN might help? IO::Socket comes to mind.

link|flag
That explains regular sockets, but how do I build a raw socket and set its parameters? – raldi Oct 13 '08 at 21:11
If you know what you're doing, you should be able to do it using the socktype and protocol arguments to the IO::Socket constructor. – Leon Timmermans Oct 13 '08 at 21:38
If I knew what I were doing, I wouldn't be here. :) – raldi Oct 14 '08 at 2:45
vote up 1 vote down

The basic call to get a socket is... socket(). It comes standard with perl 5. perl 5 basically gives you the standard socket(), bind(), listen(), accept() calls that traditional UNIX does.

For a more object oriented model, check out IO::Socket.

link|flag
vote up 4 vote down

The same way you do in C... by setting the socket type when creating the socket.

In the example on CPAN use SOCK_RAW rather than SOCK_DGRAM (UDP) or SOCK_STREAM (TCP).

NOTE: creating raw sockets typically requires administrative privileges (i.e. root on UNIX). Windows OS's may have disabled ability to create raw sockets, you'll just have to test it and see.

link|flag
The page you linked doesn't mention raw sockets. – raldi Oct 13 '08 at 21:12
Try reading your man pages. The Socket module works as a thin layer over BSD sockets, what you read about them is also applicable on Perl sockets. – Leon Timmermans Oct 13 '08 at 21:36
Leon is correct, the information you want is in the man page for socket() - e.g. "man socket" on any *nix should give you what you want. – ceretullis Oct 13 '08 at 22:29
vote up 1 vote down check

Looks like Net::RawIP was what I was looking for:

use Net::RawIP;
$a = new Net::RawIP;
$a->set({ip => {saddr => 'my.target.lan',daddr => 'my.target.lan'},
         tcp => {source => 139,dest => 139,psh => 1, syn => 1}});
$a->send;

$a->ethnew("eth0");
$a->ethset(source => 'my.target.lan',dest =>'my.target.lan');      
$a->ethsend;

$p = $a->pcapinit("eth0","dst port 21",1500,30);
$f = dump_open($p,"/my/home/log");
loop $p,10,\&dump,$f;
link|flag
Why was this the answer to your question rather than the built-in socket operations? Do you have to choose a particular NIC or something? – brian d foy Oct 13 '08 at 21:45
I was looking for example code -- like, "here's how you set the source IP. Here's how you set specific TCP flags." None of the other posts answered that.. they basically said, "RTFM" – raldi Oct 15 '08 at 20:49
vote up 1 vote down

As austirg and others said, Socket will do this just fine:

use Socket;

socket my $socket, PF_INET, SOCK_RAW, 0 or die "Couldn't create raw socket: $!";

send $socket, $message, $flags, $to or die "Couldn't send packet: $!";

my $from = recv $socket, $message, $length, $flags or die "Couldn't receive from socket: $!";
link|flag
vote up 4 vote down

At first I was thinking that most previous answers were not responsive to the question. After further thought, I think the author is probably not asking the right question.

If you're writing an application, you don't usually think of "building packets". you just open sockets, format up the data payload, and it's the protocol stack that builds packets with your data. OK, if you're using datagrams, you do need to define, generate and parse your payloads. But you typically let the kernel encapsulate it at the network level (e.g. add IP header) or link layer (e.g. add Ethernet framing). You usually don't use pcap. Sometimes just pack and unpack and maybe vec is enough.

If you're writing an unusual packet processor such as an active hostile attack tool, a man-in-the-middle process, or a traffic shaping device, then would be more likely to be "building packets" and using pcap. Maybe Net::Packet is for you also.

link|flag
Right on. What question should I be asking? – raldi Oct 14 '08 at 2:47
Tell us what you are trying to do, not how you are trying to do it :) – brian d foy Oct 14 '08 at 11:56

Your Answer

Get an OpenID
or

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