1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
From: Maykel Moya <mmoya@mmoya.org>
Date: Tue, 7 May 2013 01:06:26 +0000
Subject: Fix Makefile
* Prefix each command with atk6-.
* Install manpage as attack-toolkit6.
* Add LDFLAGS when building dnsdict6 to include hardening stuff.
Fixes lintian warnings:
- hardening-no-fortify-functions usr/bin/dnsdict6
- hardening-no-relro usr/bin/dnsdict6
* Remove script extension as per policy 10.4.
* Install to /usr.
Changes made by Samuel Henrique <samueloph@debian.org> on 13/11/16.
* Add CPPFLAGS.
* Only use CFLAG's -O2 if not already set.
---
Makefile | 32 ++++++++++++++++++++------------
1 file changed, 20 insertions(+), 12 deletions(-)
Index: thc-ipv6/Makefile
===================================================================
--- thc-ipv6.orig/Makefile
+++ thc-ipv6/Makefile
@@ -7,7 +7,7 @@ HAVE_SSL=yes
#CC=gcc
#CFLAGS=-g
-CFLAGS+=-g -O3 -march=native -flto -falign-functions -falign-jumps -falign-loops -falign-labels -freorder-blocks
+CFLAGS+=-flto -falign-functions -falign-jumps -falign-loops -falign-labels -freorder-blocks
CFLAGS+=$(if $(HAVE_SSL),-D_HAVE_SSL,)
LDFLAGS+=-lpcap $(if $(HAVE_SSL),-lssl -lcrypto,)
PROGRAMS=parasite6 dos-new-ip6 detect-new-ip6 fake_router6 fake_advertise6 fake_solicitate6 fake_mld6 fake_mld26 fake_mldrouter6 flood_mldrouter6 fake_mipv6 redir6 smurf6 alive6 toobig6 rsmurf6 implementation6 implementation6d sendpees6 sendpeesmp6 randicmp6 fuzz_ip6 flood_mld6 flood_mld26 flood_router6 flood_advertise6 flood_solicitate6 trace6 exploit6 denial6 fake_dhcps6 flood_dhcpc6 fake_dns6d fragmentation6 kill_router6 fake_dnsupdate6 ndpexhaust6 detect_sniffer6 dump_router6 fake_router26 flood_router26 passive_discovery6 dnsrevenum6 inverse_lookup6 node_query6 address6 covert_send6 covert_send6d inject_alive6 firewall6 ndpexhaust26 fake_pim6 thcsyn6 redirsniff6 flood_redir6 four2six dump_dhcp6 flood_rs6 fuzz_dhcps6 fuzz_dhcpc6 toobigsniff6 flood_unreach6 connect6
@@ -15,28 +15,33 @@ EXTRA=dnssecwalk dnsdict6 thcping6 fragr
LIBS=thc-ipv6-lib.o
STRIP=strip
-PREFIX=/usr/local
+PREFIX=/usr
MANPREFIX=${PREFIX}/share/man
MANPAGES=$(foreach p, $(PROGRAMS) $(EXTRA), $(p).8)
-all: $(LIBS) $(PROGRAMS) $(EXTRA) $(MANPAGES)
+# Prefix each command with atk6
+NAMEPREFIX := atk6
+EXTRA := $(foreach program,$(EXTRA),$(NAMEPREFIX)-$(program))
+PROGRAMS := $(foreach program,$(PROGRAMS),$(NAMEPREFIX)-$(program))
-dnssecwalk: dnssecwalk.c
+all: $(LIBS) $(PROGRAMS) $(EXTRA)
+
+$(NAMEPREFIX)-dnssecwalk: dnssecwalk.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(STATIC) -o $@ $^ $(LDFLAGS)
-dnsdict6: dnsdict6.c
+$(NAMEPREFIX)-dnsdict6: dnsdict6.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(STATIC) -o $@ $^ $(LDFLAGS) -lpthread -lresolv
-thcping6: thcping6.c $(LIBS)
+$(NAMEPREFIX)-thcping6: thcping6.c $(LIBS)
$(CC) $(CFLAGS) $(CPPFLAGS) $(STATIC) -o $@ $^ $(LDFLAGS) -lrt
-fragrouter6: fragrouter6.c $(LIBS)
+$(NAMEPREFIX)-fragrouter6: fragrouter6.c $(LIBS)
-$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) -lnetfilter_queue || /bin/echo -e "\nCompilation of fragrouter6 failed, you have to install libnetfilter-queue-dev for this!\n"
-connsplit6: connsplit6.c $(LIBS)
+$(NAMEPREFIX)-connsplit6: connsplit6.c $(LIBS)
-$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) -lnetfilter_queue || /bin/echo -e "\nCompilation of connsplit6 failed, you have to install libnetfilter-queue-dev for this!\n"
-%: %.c $(LIBS)
+$(NAMEPREFIX)-%: %.c $(LIBS)
$(CC) $(CFLAGS) $(CPPFLAGS) $(STATIC) -o $@ $^ $(LDFLAGS)
strip: all
@@ -44,10 +49,12 @@ strip: all
install: all strip
install -m0755 -d ${DESTDIR}${PREFIX}/bin
- -install -m0755 $(PROGRAMS) $(EXTRA) grep6.pl *.sh ${DESTDIR}${PREFIX}/bin
+ -install -m0755 $(PROGRAMS) $(EXTRA) ${DESTDIR}${PREFIX}/bin
+ install -m0755 extract_hosts6.sh ${DESTDIR}${PREFIX}/bin/$(NAMEPREFIX)-extract_hosts6
+ install -m0755 extract_networks6.sh ${DESTDIR}${PREFIX}/bin/$(NAMEPREFIX)-extract_networks6
install -m0755 -d ${DESTDIR}${MANPREFIX}/man8
install -m0644 -D thc-ipv6.8 ${DESTDIR}${MANPREFIX}/man8
- install -m0644 -D $(MANPAGES) ${DESTDIR}${MANPREFIX}/man8
+# install -m0644 -D $(MANPAGES) ${DESTDIR}${MANPREFIX}/man8
clean:
rm -f $(PROGRAMS) $(EXTRA) $(LIBS) core DEADJOE *~
|