[ create a new paste ] login | about

Link: http://codepad.org/m9sJ15s4    [ raw code | fork ]

C, pasted on Mar 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!usr/bin/perl
use Net::ARP;
use strict;
use warnings;
for (;;){
    Net::ARP::send_packet(
                        'eth0',                       # Device
                        '192.168.12.1',               # Source IP (my 
+gateway)
                        '192.168.12.255',             # Destination IP
                        '00:1E:EC:9F:DB:67',          # Source MAC
                        'FF:FF:FF:FF:FF:FF',          # Destinaton MAC
                        'reply'                       # ARP operation
    );
    print "packet sent\n";
    sleep(5);
}


Create a new paste based on this one


Comments: