libnet4r 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +15 -0
- data/LICENSE +28 -0
- data/README +187 -0
- data/Rakefile +110 -0
- data/ext/extconf.rb +60 -0
- data/ext/libnet.c +705 -0
- data/ext/libnet_arp.c +152 -0
- data/ext/libnet_ethernet.c +115 -0
- data/ext/libnet_ipv4.c +140 -0
- data/ext/libnet_ipv6.c +138 -0
- data/ext/libnet_udp.c +112 -0
- data/ext/libnet_vlan.c +131 -0
- data/lib/libnet4r/header.rb +609 -0
- data/lib/libnet4r/helpers.rb +19 -0
- data/lib/libnet4r/libnet.rb +39 -0
- data/libnet/CVS/Entries +24 -0
- data/libnet/CVS/Repository +1 -0
- data/libnet/CVS/Root +1 -0
- data/libnet/Makefile.am +15 -0
- data/libnet/Makefile.am.common +10 -0
- data/libnet/Makefile.in +443 -0
- data/libnet/README +21 -0
- data/libnet/VERSION +1 -0
- data/libnet/acconfig.h +36 -0
- data/libnet/acinclude.m4 +463 -0
- data/libnet/aclocal.m4 +1337 -0
- data/libnet/autom4te.cache/CVS/Entries +1 -0
- data/libnet/autom4te.cache/CVS/Repository +1 -0
- data/libnet/autom4te.cache/CVS/Root +1 -0
- data/libnet/autom4te.cache/output.0 +6225 -0
- data/libnet/autom4te.cache/requests +111 -0
- data/libnet/autom4te.cache/traces.0 +272 -0
- data/libnet/config.guess +1314 -0
- data/libnet/config.sub +1410 -0
- data/libnet/configure +6225 -0
- data/libnet/configure.in +235 -0
- data/libnet/doc/BUGS +19 -0
- data/libnet/doc/CHANGELOG +527 -0
- data/libnet/doc/CONTRIB +53 -0
- data/libnet/doc/COPYING +31 -0
- data/libnet/doc/CVS/Entries +12 -0
- data/libnet/doc/CVS/Repository +1 -0
- data/libnet/doc/CVS/Root +1 -0
- data/libnet/doc/DESIGN_NOTES +134 -0
- data/libnet/doc/MIGRATION +172 -0
- data/libnet/doc/PACKET_BUILDING +161 -0
- data/libnet/doc/PORTED +45 -0
- data/libnet/doc/RAWSOCKET_NON_SEQUITUR +41 -0
- data/libnet/doc/TODO +96 -0
- data/libnet/doc/html/acconfig_8h-source.html +49 -0
- data/libnet/doc/html/annotated.html +17 -0
- data/libnet/doc/html/bpf_8h-source.html +277 -0
- data/libnet/doc/html/config_8h-source.html +125 -0
- data/libnet/doc/html/doxygen.css +169 -0
- data/libnet/doc/html/doxygen.png +0 -0
- data/libnet/doc/html/files.html +29 -0
- data/libnet/doc/html/functions.html +26 -0
- data/libnet/doc/html/functions_vars.html +26 -0
- data/libnet/doc/html/getopt_8h-source.html +97 -0
- data/libnet/doc/html/globals.html +219 -0
- data/libnet/doc/html/globals_defs.html +104 -0
- data/libnet/doc/html/globals_func.html +136 -0
- data/libnet/doc/html/gnuc_8h-source.html +56 -0
- data/libnet/doc/html/graph_legend.dot +22 -0
- data/libnet/doc/html/graph_legend.html +75 -0
- data/libnet/doc/html/ifaddrlist_8h-source.html +65 -0
- data/libnet/doc/html/in__systm_8h-source.html +90 -0
- data/libnet/doc/html/index.html +17 -0
- data/libnet/doc/html/libnet-asn1_8h-source.html +268 -0
- data/libnet/doc/html/libnet-functions_8h-source.html +742 -0
- data/libnet/doc/html/libnet-functions_8h.html +8844 -0
- data/libnet/doc/html/libnet-headers_8h-source.html +1655 -0
- data/libnet/doc/html/libnet-headers_8h.html +3053 -0
- data/libnet/doc/html/libnet-macros_8h-source.html +161 -0
- data/libnet/doc/html/libnet-macros_8h.html +358 -0
- data/libnet/doc/html/libnet-structures_8h-source.html +233 -0
- data/libnet/doc/html/libnet-types_8h-source.html +58 -0
- data/libnet/doc/html/libnet_8h-source.html +119 -0
- data/libnet/doc/html/libnet_8h.html +24 -0
- data/libnet/doc/html/structlibnet__802__1q__hdr.html +145 -0
- data/libnet/doc/html/structlibnet__802__1x__hdr.html +97 -0
- data/libnet/doc/libnet.doxygen.conf +1102 -0
- data/libnet/doc/man/CVS/Entries +1 -0
- data/libnet/doc/man/CVS/Repository +1 -0
- data/libnet/doc/man/CVS/Root +1 -0
- data/libnet/doc/man/man3/libnet-functions.h.3 +3136 -0
- data/libnet/doc/man/man3/libnet-headers.h.3 +1872 -0
- data/libnet/doc/man/man3/libnet-macros.h.3 +172 -0
- data/libnet/doc/man/man3/libnet.h.3 +17 -0
- data/libnet/doc/man/man3/libnet_802_1q_hdr.3 +53 -0
- data/libnet/doc/man/man3/libnet_802_1x_hdr.3 +41 -0
- data/libnet/include/CVS/Entries +10 -0
- data/libnet/include/CVS/Repository +1 -0
- data/libnet/include/CVS/Root +1 -0
- data/libnet/include/Makefile.am +7 -0
- data/libnet/include/Makefile.in +395 -0
- data/libnet/include/bpf.h +264 -0
- data/libnet/include/config.h.in +118 -0
- data/libnet/include/gnuc.h +43 -0
- data/libnet/include/ifaddrlist.h +52 -0
- data/libnet/include/libnet/CVS/Entries +9 -0
- data/libnet/include/libnet/CVS/Repository +1 -0
- data/libnet/include/libnet/CVS/Root +1 -0
- data/libnet/include/libnet/Makefile.am +12 -0
- data/libnet/include/libnet/Makefile.in +294 -0
- data/libnet/include/libnet/libnet-asn1.h +255 -0
- data/libnet/include/libnet/libnet-functions.h +2157 -0
- data/libnet/include/libnet/libnet-headers.h +1662 -0
- data/libnet/include/libnet/libnet-macros.h +186 -0
- data/libnet/include/libnet/libnet-structures.h +222 -0
- data/libnet/include/libnet/libnet-types.h +45 -0
- data/libnet/include/libnet.h.in +132 -0
- data/libnet/include/stamp-h.in +1 -0
- data/libnet/include/win32/CVS/Entries +5 -0
- data/libnet/include/win32/CVS/Repository +1 -0
- data/libnet/include/win32/CVS/Root +1 -0
- data/libnet/include/win32/config.h +112 -0
- data/libnet/include/win32/getopt.h +84 -0
- data/libnet/include/win32/in_systm.h +77 -0
- data/libnet/include/win32/libnet.h +106 -0
- data/libnet/install-sh +250 -0
- data/libnet/libnet-config.in +62 -0
- data/libnet/libnet.doxygen.conf +1102 -0
- data/libnet/man/CVS/Entries +1 -0
- data/libnet/man/CVS/Repository +1 -0
- data/libnet/man/CVS/Root +1 -0
- data/libnet/missing +283 -0
- data/libnet/mkinstalldirs +40 -0
- data/libnet/sample/CVS/Entries +47 -0
- data/libnet/sample/CVS/Repository +1 -0
- data/libnet/sample/CVS/Root +1 -0
- data/libnet/sample/Makefile.am +63 -0
- data/libnet/sample/Makefile.in +729 -0
- data/libnet/sample/arp-new.c +144 -0
- data/libnet/sample/arp.c +151 -0
- data/libnet/sample/bgp4_hdr.c +225 -0
- data/libnet/sample/bgp4_notification.c +242 -0
- data/libnet/sample/bgp4_open.c +266 -0
- data/libnet/sample/bgp4_update.c +337 -0
- data/libnet/sample/cdp.c +187 -0
- data/libnet/sample/dhcp_discover.c +257 -0
- data/libnet/sample/dns.c +260 -0
- data/libnet/sample/dot1x.c +113 -0
- data/libnet/sample/fddi_tcp1.c +213 -0
- data/libnet/sample/fddi_tcp2.c +209 -0
- data/libnet/sample/get_addr.c +112 -0
- data/libnet/sample/gre.c +410 -0
- data/libnet/sample/icmp6_echoreq.c +184 -0
- data/libnet/sample/icmp_echo_cq.c +201 -0
- data/libnet/sample/icmp_redirect.c +200 -0
- data/libnet/sample/icmp_timeexceed.c +190 -0
- data/libnet/sample/icmp_timestamp.c +157 -0
- data/libnet/sample/icmp_unreach.c +204 -0
- data/libnet/sample/ieee.c +177 -0
- data/libnet/sample/ip_link.c +201 -0
- data/libnet/sample/ip_raw.c +180 -0
- data/libnet/sample/isl.c +167 -0
- data/libnet/sample/libnet_test.h +60 -0
- data/libnet/sample/mpls.c +251 -0
- data/libnet/sample/ntp.c +193 -0
- data/libnet/sample/ospf_hello.c +179 -0
- data/libnet/sample/ospf_lsa.c +190 -0
- data/libnet/sample/ping_of_death.c +171 -0
- data/libnet/sample/rpc_tcp.c +214 -0
- data/libnet/sample/rpc_udp.c +213 -0
- data/libnet/sample/sebek.c +299 -0
- data/libnet/sample/smurf.c +194 -0
- data/libnet/sample/stp.c +227 -0
- data/libnet/sample/synflood.c +200 -0
- data/libnet/sample/synflood6.c +209 -0
- data/libnet/sample/synflood6_frag.c +234 -0
- data/libnet/sample/tcp1.c +227 -0
- data/libnet/sample/tcp2.c +192 -0
- data/libnet/sample/tftp.c +207 -0
- data/libnet/sample/tring_tcp1.c +214 -0
- data/libnet/sample/tring_tcp2.c +210 -0
- data/libnet/sample/udp1.c +223 -0
- data/libnet/sample/udp2.c +232 -0
- data/libnet/sample/win32/CVS/Entries +9 -0
- data/libnet/sample/win32/CVS/Repository +1 -0
- data/libnet/sample/win32/CVS/Root +1 -0
- data/libnet/sample/win32/arp/CVS/Entries +2 -0
- data/libnet/sample/win32/arp/CVS/Repository +1 -0
- data/libnet/sample/win32/arp/CVS/Root +1 -0
- data/libnet/sample/win32/arp/arp.vcproj +136 -0
- data/libnet/sample/win32/cdp/CVS/Entries +2 -0
- data/libnet/sample/win32/cdp/CVS/Repository +1 -0
- data/libnet/sample/win32/cdp/CVS/Root +1 -0
- data/libnet/sample/win32/cdp/cdp.vcproj +136 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Entries +2 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Repository +1 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Root +1 -0
- data/libnet/sample/win32/dhcp_discover/dhcp_discover.vcproj +139 -0
- data/libnet/sample/win32/dns/CVS/Entries +2 -0
- data/libnet/sample/win32/dns/CVS/Repository +1 -0
- data/libnet/sample/win32/dns/CVS/Root +1 -0
- data/libnet/sample/win32/dns/dns.vcproj +139 -0
- data/libnet/sample/win32/get_addr/CVS/Entries +2 -0
- data/libnet/sample/win32/get_addr/CVS/Repository +1 -0
- data/libnet/sample/win32/get_addr/CVS/Root +1 -0
- data/libnet/sample/win32/get_addr/get_addr.vcproj +139 -0
- data/libnet/sample/win32/getopt.c +121 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Entries +2 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Repository +1 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Root +1 -0
- data/libnet/sample/win32/icmp_echo_cq/icmp_echo_cq.vcproj +139 -0
- data/libnet/sample/win32/tcp1/CVS/Entries +2 -0
- data/libnet/sample/win32/tcp1/CVS/Repository +1 -0
- data/libnet/sample/win32/tcp1/CVS/Root +1 -0
- data/libnet/sample/win32/tcp1/tcp1.vcproj +142 -0
- data/libnet/sample/win32/udp1/CVS/Entries +3 -0
- data/libnet/sample/win32/udp1/CVS/Repository +1 -0
- data/libnet/sample/win32/udp1/CVS/Root +1 -0
- data/libnet/sample/win32/udp1/dns.vcproj +125 -0
- data/libnet/sample/win32/udp1/udp1.vcproj +139 -0
- data/libnet/src/CVS/Entries +60 -0
- data/libnet/src/CVS/Repository +1 -0
- data/libnet/src/CVS/Root +1 -0
- data/libnet/src/Makefile.am +71 -0
- data/libnet/src/Makefile.in +428 -0
- data/libnet/src/libnet_advanced.c +136 -0
- data/libnet/src/libnet_asn1.c +436 -0
- data/libnet/src/libnet_build_802.1q.c +115 -0
- data/libnet/src/libnet_build_802.1x.c +103 -0
- data/libnet/src/libnet_build_802.2.c +167 -0
- data/libnet/src/libnet_build_802.3.c +101 -0
- data/libnet/src/libnet_build_arp.c +169 -0
- data/libnet/src/libnet_build_bgp.c +350 -0
- data/libnet/src/libnet_build_cdp.c +191 -0
- data/libnet/src/libnet_build_data.c +90 -0
- data/libnet/src/libnet_build_dhcp.c +156 -0
- data/libnet/src/libnet_build_dns.c +129 -0
- data/libnet/src/libnet_build_ethernet.c +173 -0
- data/libnet/src/libnet_build_fddi.c +191 -0
- data/libnet/src/libnet_build_gre.c +427 -0
- data/libnet/src/libnet_build_icmp.c +437 -0
- data/libnet/src/libnet_build_igmp.c +112 -0
- data/libnet/src/libnet_build_ip.c +892 -0
- data/libnet/src/libnet_build_ipsec.c +232 -0
- data/libnet/src/libnet_build_isl.c +113 -0
- data/libnet/src/libnet_build_link.c +90 -0
- data/libnet/src/libnet_build_mpls.c +112 -0
- data/libnet/src/libnet_build_ntp.c +121 -0
- data/libnet/src/libnet_build_ospf.c +699 -0
- data/libnet/src/libnet_build_rip.c +108 -0
- data/libnet/src/libnet_build_rpc.c +138 -0
- data/libnet/src/libnet_build_sebek.c +108 -0
- data/libnet/src/libnet_build_snmp.c +52 -0
- data/libnet/src/libnet_build_stp.c +222 -0
- data/libnet/src/libnet_build_tcp.c +365 -0
- data/libnet/src/libnet_build_token_ring.c +193 -0
- data/libnet/src/libnet_build_udp.c +111 -0
- data/libnet/src/libnet_build_vrrp.c +117 -0
- data/libnet/src/libnet_checksum.c +376 -0
- data/libnet/src/libnet_cq.c +395 -0
- data/libnet/src/libnet_crc.c +113 -0
- data/libnet/src/libnet_dll.c +47 -0
- data/libnet/src/libnet_error.c +55 -0
- data/libnet/src/libnet_if_addr.c +415 -0
- data/libnet/src/libnet_init.c +234 -0
- data/libnet/src/libnet_internal.c +310 -0
- data/libnet/src/libnet_link_bpf.c +348 -0
- data/libnet/src/libnet_link_dlpi.c +785 -0
- data/libnet/src/libnet_link_linux.c +310 -0
- data/libnet/src/libnet_link_nit.c +125 -0
- data/libnet/src/libnet_link_none.c +66 -0
- data/libnet/src/libnet_link_pf.c +179 -0
- data/libnet/src/libnet_link_snit.c +149 -0
- data/libnet/src/libnet_link_snoop.c +166 -0
- data/libnet/src/libnet_link_win32.c +346 -0
- data/libnet/src/libnet_pblock.c +511 -0
- data/libnet/src/libnet_port_list.c +295 -0
- data/libnet/src/libnet_prand.c +106 -0
- data/libnet/src/libnet_raw.c +257 -0
- data/libnet/src/libnet_resolve.c +414 -0
- data/libnet/src/libnet_version.c +54 -0
- data/libnet/src/libnet_write.c +502 -0
- data/libnet/version.h.in +6 -0
- data/libnet/win32/CVS/Entries +15 -0
- data/libnet/win32/CVS/Repository +1 -0
- data/libnet/win32/CVS/Root +1 -0
- data/libnet/win32/Libnet-1.1.1-2002.sln +77 -0
- data/libnet/win32/Libnet-1.1.1-2003.ncb +0 -0
- data/libnet/win32/Libnet-1.1.1-2003.sln +84 -0
- data/libnet/win32/Libnet-1.1.1-2003.suo +0 -0
- data/libnet/win32/Libnet-1.1.1.vcproj +311 -0
- data/libnet/win32/Libnet-latest.ncb +0 -0
- data/libnet/win32/Libnet-latest.opt +0 -0
- data/libnet/win32/Libnet-latest.sln +77 -0
- data/libnet/win32/Libnet-latest.suo +0 -0
- data/libnet/win32/Libnet-latest.vcproj +311 -0
- data/libnet/win32/Libnet.dsp +337 -0
- data/libnet/win32/Libnet.dsw +32 -0
- data/libnet/win32/README.txt +57 -0
- data/libnet/win32/libnet_dll.def +164 -0
- data/test/tc_arp.rb +169 -0
- data/test/tc_class.rb +219 -0
- data/test/tc_ethernet.rb +97 -0
- data/test/tc_header.rb +163 -0
- data/test/tc_init.rb +25 -0
- data/test/tc_ipv4.rb +219 -0
- data/test/tc_ipv6.rb +235 -0
- data/test/tc_udp.rb +229 -0
- data/test/tc_vlan.rb +118 -0
- data/test/ts_all.rb +15 -0
- metadata +401 -0
@@ -0,0 +1,201 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* libnet 1.1
|
4
|
+
* Build a IPv4 packet with what you want as payload
|
5
|
+
*
|
6
|
+
* Copyright (c) 2003 Fr�d�ric Raynal <pappy@security-labs.org>
|
7
|
+
* All rights reserved.
|
8
|
+
*
|
9
|
+
* Ex:
|
10
|
+
* - send an UDP packet from port 4369 to port 8738
|
11
|
+
* ./ip -s 1.1.1.1 -d 2.2.2.2
|
12
|
+
*
|
13
|
+
* - send a TCP SYN from port 4369 to port 8738
|
14
|
+
* ./ip -s 1.1.1.1 -d 2.2.2.2 -t -p `printf "\x04\x57\x08\xae\x01\x01\x01\x01\x02\x02\x02\x02\x50\x02\x7f\xff\xd5\x91\x41\x41"`
|
15
|
+
*
|
16
|
+
*
|
17
|
+
* Redistribution and use in source and binary forms, with or without
|
18
|
+
* modification, are permitted provided that the following conditions
|
19
|
+
* are met:
|
20
|
+
* 1. Redistributions of source code must retain the above copyright
|
21
|
+
* notice, this list of conditions and the following disclaimer.
|
22
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
23
|
+
* notice, this list of conditions and the following disclaimer in the
|
24
|
+
* documentation and/or other materials provided with the distribution.
|
25
|
+
*
|
26
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
27
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
28
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
29
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
30
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
32
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
33
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
34
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
35
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
36
|
+
* SUCH DAMAGE.
|
37
|
+
*
|
38
|
+
*/
|
39
|
+
#if (HAVE_CONFIG_H)
|
40
|
+
#include "../include/config.h"
|
41
|
+
#endif
|
42
|
+
#include "./libnet_test.h"
|
43
|
+
|
44
|
+
int
|
45
|
+
main(int argc, char *argv[])
|
46
|
+
{
|
47
|
+
int c;
|
48
|
+
libnet_t *l;
|
49
|
+
char *device = NULL;
|
50
|
+
char *dst = "2.2.2.2", *src = "1.1.1.1";
|
51
|
+
char *hwdst = "22:22:22:22:22:22", *hwsrc = "11:11:11:11:11:11";
|
52
|
+
u_long src_ip, dst_ip;
|
53
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
54
|
+
libnet_ptag_t ip_ptag = 0;
|
55
|
+
libnet_ptag_t eth_ptag = 0;
|
56
|
+
u_short proto = IPPROTO_UDP;
|
57
|
+
u_char payload[255] = {0x11, 0x11, 0x22, 0x22, 0x00, 0x08, 0xc6, 0xa5};
|
58
|
+
u_long payload_s = 8;
|
59
|
+
|
60
|
+
printf("libnet 1.1 packet shaping: IP + payload[link]\n");
|
61
|
+
|
62
|
+
while ((c = getopt(argc, argv, "d:s:D:S:tp:i:h")) != EOF)
|
63
|
+
{
|
64
|
+
switch (c)
|
65
|
+
{
|
66
|
+
case 'D':
|
67
|
+
hwdst = optarg;
|
68
|
+
break;
|
69
|
+
|
70
|
+
case 'S':
|
71
|
+
hwsrc = optarg;
|
72
|
+
break;
|
73
|
+
|
74
|
+
case 'd':
|
75
|
+
dst = optarg;
|
76
|
+
break;
|
77
|
+
|
78
|
+
case 's':
|
79
|
+
src = optarg;
|
80
|
+
break;
|
81
|
+
|
82
|
+
case 'i':
|
83
|
+
device = optarg;
|
84
|
+
break;
|
85
|
+
|
86
|
+
case 't':
|
87
|
+
proto = IPPROTO_TCP;
|
88
|
+
break;
|
89
|
+
|
90
|
+
case 'p':
|
91
|
+
strncpy(payload, optarg, sizeof(payload)-1);
|
92
|
+
payload_s = strlen(payload);
|
93
|
+
break;
|
94
|
+
|
95
|
+
case 'h':
|
96
|
+
usage(argv[0]);
|
97
|
+
exit(EXIT_SUCCESS);
|
98
|
+
|
99
|
+
default:
|
100
|
+
exit(EXIT_FAILURE);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
|
105
|
+
/*
|
106
|
+
* Initialize the library. Root priviledges are required.
|
107
|
+
*/
|
108
|
+
l = libnet_init(
|
109
|
+
LIBNET_LINK, /* injection type */
|
110
|
+
device, /* network interface */
|
111
|
+
errbuf); /* error buffer */
|
112
|
+
|
113
|
+
printf("Using device %s\n", l->device);
|
114
|
+
|
115
|
+
if (l == NULL)
|
116
|
+
{
|
117
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
118
|
+
exit(EXIT_FAILURE);
|
119
|
+
}
|
120
|
+
|
121
|
+
if ((dst_ip = libnet_name2addr4(l, dst, LIBNET_RESOLVE)) == -1)
|
122
|
+
{
|
123
|
+
fprintf(stderr, "Bad destination IP address: %s\n", dst);
|
124
|
+
exit(EXIT_FAILURE);
|
125
|
+
}
|
126
|
+
|
127
|
+
if ((src_ip = libnet_name2addr4(l, src, LIBNET_RESOLVE)) == -1)
|
128
|
+
{
|
129
|
+
fprintf(stderr, "Bad source IP address: %s\n", src);
|
130
|
+
exit(EXIT_FAILURE);
|
131
|
+
}
|
132
|
+
|
133
|
+
/*
|
134
|
+
* Build the packet
|
135
|
+
*/
|
136
|
+
ip_ptag = libnet_build_ipv4(
|
137
|
+
LIBNET_IPV4_H + payload_s, /* length */
|
138
|
+
0, /* TOS */
|
139
|
+
242, /* IP ID */
|
140
|
+
0, /* IP Frag */
|
141
|
+
64, /* TTL */
|
142
|
+
proto, /* protocol */
|
143
|
+
0, /* checksum */
|
144
|
+
src_ip, /* source IP */
|
145
|
+
dst_ip, /* destination IP */
|
146
|
+
payload, /* payload */
|
147
|
+
payload_s, /* payload size */
|
148
|
+
l, /* libnet handle */
|
149
|
+
ip_ptag); /* libnet id */
|
150
|
+
if (ip_ptag == -1)
|
151
|
+
{
|
152
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
153
|
+
goto bad;
|
154
|
+
}
|
155
|
+
|
156
|
+
eth_ptag = libnet_build_ethernet(
|
157
|
+
hwdst, /* ethernet destination */
|
158
|
+
hwsrc, /* ethernet source */
|
159
|
+
ETHERTYPE_IP, /* protocol type */
|
160
|
+
NULL, /* payload */
|
161
|
+
0, /* payload size */
|
162
|
+
l, /* libnet handle */
|
163
|
+
0); /* libnet id */
|
164
|
+
if (eth_ptag == -1)
|
165
|
+
{
|
166
|
+
fprintf(stderr, "Can't build ethernet header: %s\n", libnet_geterror(l));
|
167
|
+
goto bad;
|
168
|
+
}
|
169
|
+
|
170
|
+
/*
|
171
|
+
* Write it to the wire.
|
172
|
+
*/
|
173
|
+
c = libnet_write(l);
|
174
|
+
if (c == -1)
|
175
|
+
{
|
176
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
177
|
+
goto bad;
|
178
|
+
}
|
179
|
+
else
|
180
|
+
{
|
181
|
+
fprintf(stderr, "Wrote %d byte IP packet; check the wire.\n", c);
|
182
|
+
}
|
183
|
+
|
184
|
+
libnet_destroy(l);
|
185
|
+
return (EXIT_SUCCESS);
|
186
|
+
bad:
|
187
|
+
libnet_destroy(l);
|
188
|
+
return (EXIT_FAILURE);
|
189
|
+
}
|
190
|
+
|
191
|
+
void
|
192
|
+
usage(char *name)
|
193
|
+
{
|
194
|
+
fprintf(stderr,
|
195
|
+
"usage: %s [-s source_ip] [-d destination_ip]"
|
196
|
+
" [-S HW src] [-D HW dst]"
|
197
|
+
" [-i iface] [-p payload] [-t]\n",
|
198
|
+
name);
|
199
|
+
}
|
200
|
+
|
201
|
+
/* EOF */
|
@@ -0,0 +1,180 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* libnet 1.1
|
4
|
+
* Build a IPv4 packet with what you want as payload
|
5
|
+
*
|
6
|
+
* Copyright (c) 2003 Fr�d�ric Raynal <pappy@security-labs.org>
|
7
|
+
* All rights reserved.
|
8
|
+
*
|
9
|
+
* Ex:
|
10
|
+
* - send an UDP packet from port 4369 to port 8738
|
11
|
+
* ./ip -s 1.1.1.1 -d 2.2.2.2
|
12
|
+
*
|
13
|
+
* - send a TCP SYN from port 4369 to port 8738
|
14
|
+
* ./ip -s 1.1.1.1 -d 2.2.2.2 -t -p `printf "\x04\x57\x08\xae\x01\x01\x01\x01\x02\x02\x02\x02\x50\x02\x7f\xff\xd5\x91\x41\x41"`
|
15
|
+
*
|
16
|
+
*
|
17
|
+
* Redistribution and use in source and binary forms, with or without
|
18
|
+
* modification, are permitted provided that the following conditions
|
19
|
+
* are met:
|
20
|
+
* 1. Redistributions of source code must retain the above copyright
|
21
|
+
* notice, this list of conditions and the following disclaimer.
|
22
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
23
|
+
* notice, this list of conditions and the following disclaimer in the
|
24
|
+
* documentation and/or other materials provided with the distribution.
|
25
|
+
*
|
26
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
27
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
28
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
29
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
30
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
32
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
33
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
34
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
35
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
36
|
+
* SUCH DAMAGE.
|
37
|
+
*
|
38
|
+
*/
|
39
|
+
#if (HAVE_CONFIG_H)
|
40
|
+
#include "../include/config.h"
|
41
|
+
#endif
|
42
|
+
#include "./libnet_test.h"
|
43
|
+
|
44
|
+
int
|
45
|
+
main(int argc, char *argv[])
|
46
|
+
{
|
47
|
+
int c;
|
48
|
+
libnet_t *l;
|
49
|
+
char *device = NULL;
|
50
|
+
char *dst = "2.2.2.2", *src = "1.1.1.1";
|
51
|
+
u_long src_ip, dst_ip;
|
52
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
53
|
+
libnet_ptag_t ip_ptag = 0;
|
54
|
+
u_short proto = IPPROTO_UDP;
|
55
|
+
u_char payload[255] = {0x11, 0x11, 0x22, 0x22, 0x00, 0x08, 0xc6, 0xa5};
|
56
|
+
u_long payload_s = 8;
|
57
|
+
|
58
|
+
printf("libnet 1.1 packet shaping: IP + payload[raw]\n");
|
59
|
+
|
60
|
+
/*
|
61
|
+
* handle options
|
62
|
+
*/
|
63
|
+
while ((c = getopt(argc, argv, "d:s:tp:i:h")) != EOF)
|
64
|
+
{
|
65
|
+
switch (c)
|
66
|
+
{
|
67
|
+
case 'd':
|
68
|
+
dst = optarg;
|
69
|
+
break;
|
70
|
+
|
71
|
+
case 's':
|
72
|
+
src = optarg;
|
73
|
+
break;
|
74
|
+
|
75
|
+
case 'i':
|
76
|
+
device = optarg;
|
77
|
+
break;
|
78
|
+
|
79
|
+
case 't':
|
80
|
+
proto = IPPROTO_TCP;
|
81
|
+
break;
|
82
|
+
|
83
|
+
case 'p':
|
84
|
+
strncpy(payload, optarg, sizeof(payload)-1);
|
85
|
+
payload_s = strlen(payload);
|
86
|
+
break;
|
87
|
+
|
88
|
+
case 'h':
|
89
|
+
usage(argv[0]);
|
90
|
+
exit(EXIT_SUCCESS);
|
91
|
+
|
92
|
+
default:
|
93
|
+
exit(EXIT_FAILURE);
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
|
98
|
+
/*
|
99
|
+
* Initialize the library. Root priviledges are required.
|
100
|
+
*/
|
101
|
+
l = libnet_init(
|
102
|
+
LIBNET_RAW4, /* injection type */
|
103
|
+
device, /* network interface */
|
104
|
+
errbuf); /* error buffer */
|
105
|
+
|
106
|
+
printf("Using device %s\n", l->device);
|
107
|
+
|
108
|
+
if (l == NULL)
|
109
|
+
{
|
110
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
111
|
+
exit(EXIT_FAILURE);
|
112
|
+
}
|
113
|
+
|
114
|
+
if ((dst_ip = libnet_name2addr4(l, dst, LIBNET_RESOLVE)) == -1)
|
115
|
+
{
|
116
|
+
fprintf(stderr, "Bad destination IP address: %s\n", dst);
|
117
|
+
exit(EXIT_FAILURE);
|
118
|
+
}
|
119
|
+
|
120
|
+
if ((src_ip = libnet_name2addr4(l, src, LIBNET_RESOLVE)) == -1)
|
121
|
+
{
|
122
|
+
fprintf(stderr, "Bad source IP address: %s\n", src);
|
123
|
+
exit(EXIT_FAILURE);
|
124
|
+
}
|
125
|
+
|
126
|
+
|
127
|
+
/*
|
128
|
+
* Build the packet
|
129
|
+
*/
|
130
|
+
ip_ptag = libnet_build_ipv4(
|
131
|
+
LIBNET_IPV4_H + payload_s, /* length */
|
132
|
+
0, /* TOS */
|
133
|
+
242, /* IP ID */
|
134
|
+
0, /* IP Frag */
|
135
|
+
64, /* TTL */
|
136
|
+
proto, /* protocol */
|
137
|
+
0, /* checksum */
|
138
|
+
src_ip, /* source IP */
|
139
|
+
dst_ip, /* destination IP */
|
140
|
+
payload, /* payload */
|
141
|
+
payload_s, /* payload size */
|
142
|
+
l, /* libnet handle */
|
143
|
+
ip_ptag); /* libnet id */
|
144
|
+
if (ip_ptag == -1)
|
145
|
+
{
|
146
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
147
|
+
goto bad;
|
148
|
+
}
|
149
|
+
|
150
|
+
/*
|
151
|
+
* Write it to the wire.
|
152
|
+
*/
|
153
|
+
c = libnet_write(l);
|
154
|
+
if (c == -1)
|
155
|
+
{
|
156
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
157
|
+
goto bad;
|
158
|
+
}
|
159
|
+
else
|
160
|
+
{
|
161
|
+
fprintf(stderr, "Wrote %d byte IP packet; check the wire.\n", c);
|
162
|
+
}
|
163
|
+
|
164
|
+
libnet_destroy(l);
|
165
|
+
return (EXIT_SUCCESS);
|
166
|
+
bad:
|
167
|
+
libnet_destroy(l);
|
168
|
+
return (EXIT_FAILURE);
|
169
|
+
}
|
170
|
+
|
171
|
+
void
|
172
|
+
usage(char *name)
|
173
|
+
{
|
174
|
+
fprintf(stderr,
|
175
|
+
"usage: %s [-s source_ip] [-d destination_ip]"
|
176
|
+
" [-i iface] [-p payload] [-t]\n",
|
177
|
+
name);
|
178
|
+
}
|
179
|
+
|
180
|
+
/* EOF */
|
data/libnet/sample/isl.c
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: isl.c,v 1.2 2004/01/03 20:31:01 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* Build an ISL packet
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Redistribution and use in source and binary forms, with or without
|
11
|
+
* modification, are permitted provided that the following conditions
|
12
|
+
* are met:
|
13
|
+
* 1. Redistributions of source code must retain the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer.
|
15
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
* notice, this list of conditions and the following disclaimer in the
|
17
|
+
* documentation and/or other materials provided with the distribution.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
22
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
25
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
26
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
27
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
28
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
29
|
+
* SUCH DAMAGE.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
|
33
|
+
#if (HAVE_CONFIG_H)
|
34
|
+
#include "../include/config.h"
|
35
|
+
#endif
|
36
|
+
#include "./libnet_test.h"
|
37
|
+
|
38
|
+
int
|
39
|
+
main(int argc, char *argv[])
|
40
|
+
{
|
41
|
+
int c, len;
|
42
|
+
libnet_t *l;
|
43
|
+
libnet_ptag_t t;
|
44
|
+
u_char *dst;
|
45
|
+
u_long ip;
|
46
|
+
u_char dhost[5] = {0x01, 0x00, 0x0c, 0x00, 0x00};
|
47
|
+
u_char snap[6] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
|
48
|
+
char *device = NULL;
|
49
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
50
|
+
|
51
|
+
printf("libnet 1.1 packet shaping: [ISL]\n");
|
52
|
+
|
53
|
+
device = NULL;
|
54
|
+
dst = NULL;
|
55
|
+
while ((c = getopt(argc, argv, "i:d:")) != EOF)
|
56
|
+
{
|
57
|
+
switch (c)
|
58
|
+
{
|
59
|
+
case 'd':
|
60
|
+
dst = libnet_hex_aton(optarg, &len);
|
61
|
+
break;
|
62
|
+
case 'i':
|
63
|
+
device = optarg;
|
64
|
+
break;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
if (dst == NULL)
|
69
|
+
{
|
70
|
+
fprintf(stderr, "usage %s -d dst [-i interface]\n",
|
71
|
+
argv[0]);
|
72
|
+
exit(EXIT_FAILURE);
|
73
|
+
}
|
74
|
+
|
75
|
+
/*
|
76
|
+
* Initialize the library. Root priviledges are required.
|
77
|
+
*/
|
78
|
+
l = libnet_init(
|
79
|
+
LIBNET_LINK, /* injection type */
|
80
|
+
device, /* network interface */
|
81
|
+
errbuf); /* errbuf */
|
82
|
+
|
83
|
+
if (l == NULL)
|
84
|
+
{
|
85
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
86
|
+
exit(EXIT_FAILURE);
|
87
|
+
}
|
88
|
+
|
89
|
+
ip = libnet_get_ipaddr4(l);
|
90
|
+
|
91
|
+
t = libnet_build_arp(
|
92
|
+
ARPHRD_ETHER, /* hardware addr */
|
93
|
+
ETHERTYPE_IP, /* protocol addr */
|
94
|
+
6, /* hardware addr size */
|
95
|
+
4, /* protocol addr size */
|
96
|
+
ARPOP_REPLY, /* operation type */
|
97
|
+
enet_src, /* sender hardware addr */
|
98
|
+
(u_char *)&ip, /* sender protocol addr */
|
99
|
+
enet_dst, /* target hardware addr */
|
100
|
+
(u_char *)&ip, /* target protocol addr */
|
101
|
+
NULL, /* payload */
|
102
|
+
0, /* payload size */
|
103
|
+
l, /* libnet handle */
|
104
|
+
0); /* libnet id */
|
105
|
+
if (t == -1)
|
106
|
+
{
|
107
|
+
fprintf(stderr, "Can't build ARP header: %s\n", libnet_geterror(l));
|
108
|
+
goto bad;
|
109
|
+
}
|
110
|
+
|
111
|
+
t = libnet_autobuild_ethernet(
|
112
|
+
dst, /* ethernet destination */
|
113
|
+
ETHERTYPE_ARP, /* protocol type */
|
114
|
+
l); /* libnet handle */
|
115
|
+
if (t == -1)
|
116
|
+
{
|
117
|
+
fprintf(stderr, "Can't build ethernet header: %s\n",
|
118
|
+
libnet_geterror(l));
|
119
|
+
goto bad;
|
120
|
+
}
|
121
|
+
|
122
|
+
t = libnet_build_isl(
|
123
|
+
dhost,
|
124
|
+
0x0,
|
125
|
+
0x0,
|
126
|
+
enet_src,
|
127
|
+
10 + 42,
|
128
|
+
snap,
|
129
|
+
10,
|
130
|
+
0x8000,
|
131
|
+
0,
|
132
|
+
NULL, /* payload */
|
133
|
+
0, /* payload size */
|
134
|
+
l, /* libnet handle */
|
135
|
+
0); /* libnet id */
|
136
|
+
if (t == -1)
|
137
|
+
{
|
138
|
+
fprintf(stderr, "Can't build ISL header: %s\n",
|
139
|
+
libnet_geterror(l));
|
140
|
+
goto bad;
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
/*
|
145
|
+
* Write it to the wire.
|
146
|
+
*/
|
147
|
+
c = libnet_write(l);
|
148
|
+
|
149
|
+
if (c == -1)
|
150
|
+
{
|
151
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
152
|
+
goto bad;
|
153
|
+
}
|
154
|
+
else
|
155
|
+
{
|
156
|
+
fprintf(stderr, "Wrote %d byte ISL packet; check the wire.\n", c);
|
157
|
+
}
|
158
|
+
free(dst);
|
159
|
+
libnet_destroy(l);
|
160
|
+
return (EXIT_SUCCESS);
|
161
|
+
bad:
|
162
|
+
free(dst);
|
163
|
+
libnet_destroy(l);
|
164
|
+
return (EXIT_FAILURE);
|
165
|
+
}
|
166
|
+
|
167
|
+
/* EOF */
|
@@ -0,0 +1,60 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: libnet_test.h,v 1.3 2004/01/29 21:17:16 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet_test.h
|
5
|
+
*
|
6
|
+
* Copyright (c) 1998 - 2001 Mike D. Schiffman <mike@infonexus.com>
|
7
|
+
*/
|
8
|
+
|
9
|
+
#ifndef __LIBNET_TEST_H
|
10
|
+
#define __LIBNET_TEST_H
|
11
|
+
|
12
|
+
#ifndef _WIN32
|
13
|
+
#include "../include/libnet.h"
|
14
|
+
#else
|
15
|
+
#include "../include/win32/libnet.h"
|
16
|
+
#include "../include/win32/getopt.h"
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#define libnet_timersub(tvp, uvp, vvp) \
|
20
|
+
do { \
|
21
|
+
(vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
|
22
|
+
(vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
|
23
|
+
if ((vvp)->tv_usec < 0) { \
|
24
|
+
(vvp)->tv_sec--; \
|
25
|
+
(vvp)->tv_usec += 1000000; \
|
26
|
+
} \
|
27
|
+
} while (0)
|
28
|
+
|
29
|
+
u_char enet_src[6] = {0x0d, 0x0e, 0x0a, 0x0d, 0x00, 0x00};
|
30
|
+
u_char enet_dst[6] = {0x00, 0x10, 0x67, 0x00, 0xb1, 0x86};
|
31
|
+
u_char ip_src[4] = {0x0a, 0x00, 0x00, 0x01};
|
32
|
+
u_char ip_dst[4] = {0x0a, 0x00, 0x00, 0x02};
|
33
|
+
u_char fddi_src[6] = {0x00, 0x0d, 0x0e, 0x0a, 0x0d, 0x00};
|
34
|
+
u_char fddi_dst[6] = {0x00, 0x10, 0x67, 0x00, 0xb1, 0x86};
|
35
|
+
u_char tr_src[6] = {0x00, 0x0d, 0x0e, 0x0a, 0x0d, 0x00};
|
36
|
+
u_char tr_dst[6] = {0x00, 0x10, 0x67, 0x00, 0xb1, 0x86};
|
37
|
+
|
38
|
+
u_char org_code[3] = {0x00, 0x00, 0x00};
|
39
|
+
|
40
|
+
void usage(char *);
|
41
|
+
|
42
|
+
#if defined(__WIN32__)
|
43
|
+
#include <win32/getopt.h>
|
44
|
+
#include <winsock2.h>
|
45
|
+
#include <ws2tcpip.h>
|
46
|
+
#ifndef _WIN32
|
47
|
+
#include <sys/time.h>
|
48
|
+
#endif
|
49
|
+
#if defined(__GNUC__) /* mingw compiler */
|
50
|
+
extern __attribute__((dllimport)) char *optarg;
|
51
|
+
#else /* assume msvc */
|
52
|
+
#ifndef _WIN32
|
53
|
+
extern __dllspec(dllimport) char *optarg;
|
54
|
+
#endif
|
55
|
+
#endif
|
56
|
+
#endif /* __WIN32__ */
|
57
|
+
|
58
|
+
#endif /* __LIBNET_TEST_H */
|
59
|
+
|
60
|
+
/* EOF */
|