head	1.3;
access;
symbols
	RELEASE_8_3_0:1.2
	RELEASE_9_0_0:1.2
	RELEASE_7_4_0:1.2
	RELEASE_8_2_0:1.2
	RELEASE_6_EOL:1.2
	RELEASE_8_1_0:1.2
	RELEASE_7_3_0:1.2
	RELEASE_8_0_0:1.2
	RELEASE_7_2_0:1.2
	RELEASE_7_1_0:1.2
	RELEASE_6_4_0:1.2
	RELEASE_5_EOL:1.2
	RELEASE_7_0_0:1.2
	RELEASE_6_3_0:1.2
	PRE_XORG_7:1.2
	RELEASE_4_EOL:1.2
	RELEASE_6_2_0:1.2
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.2
	RELEASE_5_3_0:1.2
	RELEASE_4_10_0:1.2
	RELEASE_5_2_1:1.2
	RELEASE_5_2_0:1.2
	RELEASE_4_9_0:1.2
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.1
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1
	RELEASE_4_3_0:1.1
	RELEASE_4_2_0:1.1
	RELEASE_4_1_1:1.1
	RELEASE_4_1_0:1.1
	RELEASE_3_5_0:1.1
	RELEASE_4_0_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2012.10.26.09.29.39;	author jhale;	state dead;
branches;
next	1.2;

1.2
date	2003.03.05.11.25.42;	author roam;	state Exp;
branches;
next	1.1;

1.1
date	2000.02.20.10.29.10;	author kris;	state Exp;
branches;
next	;


desc
@@


1.3
log
@SVN rev 306429 on 2012-10-26 09:29:39Z by jhale

- Update MASTER_SITES
- Remove DEPRECATED/EXPIRATION_DATE as port fetches now
- Use PORTDOCS macro and PLIST_FILES instead of 4 line pkg-plist
- Convert to new options framework
- Trim Makefile header
- Remove dead WWW from pkg-descr
- Rename patch-aa to patch-zz.c

PR:		ports/172065
Submitted by:	KATO Tsuguru <tkato432@@yahoo.com>
Approved by:	makc, avilla (mentors, implicit)
Feature safe:	yes
@
text
@--- zz.c.orig	Wed Mar  5 13:16:37 2003
+++ zz.c	Wed Mar  5 13:16:42 2003
@@@@ -104,7 +104,7 @@@@
   union
   {
     struct in_addr addr;
-    ulong temp_ip;
+    u_long temp_ip;
   } ip;
   
   for (i = 0; i < 256; i++)
@


1.2
log
@Update to 1.2, which adds support for Shaft and Windows versions of Trinoo.
@
text
@@


1.1
log
@Zombiezapper sends commands to DDoS agents to stop flooding, leaving them
around for further forensics. As with most of the DDoS tools, this assumes
the agents are using the default settings.
@
text
@d1 3
a3 3
--- zz.c.orig	Tue Feb 15 08:51:12 2000
+++ zz.c	Sun Feb 20 01:59:12 2000
@@@@ -94,7 +94,7 @@@@
a11 45
@@@@ -159,27 +159,27 @@@@
     case 1:
       data_len = strlen(TRINOO_DATA);
       for (p=0;p<data_len;p++) data[p] = TRINOO_DATA[p];
-      header = LIBNET_UDP_H;
+      header = UDP_H;
       id = 41072;
       proto = IPPROTO_UDP;
       break;
     case 2:
       data_len = strlen(TFN_DATA);
       for (p=0;p<data_len;p++) data[p] = TFN_DATA[p];
-      header = LIBNET_ICMP_ECHO_H;
+      header = ICMP_ECHO_H;
       id = 567;
       proto = IPPROTO_ICMP;
       break;
     case 3:
       data_len = 0;
-      header = LIBNET_ICMP_ECHO_H;
+      header = ICMP_ECHO_H;
       id = 3;
       proto = IPPROTO_ICMP;
       break;
   }
 
   /* compute packet size */
-  packet_size = LIBNET_IP_H + header + data_len;
+  packet_size = IP_H + header + data_len;
 
   /* get mem for packet */
   libnet_init_packet(packet_size, &packet);
@@@@ -207,10 +207,10 @@@@
     switch (proto)
     {
       case IPPROTO_ICMP:
-        libnet_build_icmp_echo(ICMP_ECHOREPLY,0,id,0,data,data_len,packet + LIBNET_IP_H);
+        libnet_build_icmp_echo(ICMP_ECHOREPLY,0,id,0,data,data_len,packet + IP_H);
         break;        
       case IPPROTO_UDP:
-        libnet_build_udp(sport,27444,data,data_len,packet + LIBNET_IP_H);
+        libnet_build_udp(sport,27444,data,data_len,packet + IP_H);
         break;
     }
 
@

