summaryrefslogtreecommitdiff
path: root/security/trinokiller/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-02-14 03:46:32 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-02-14 03:46:32 +0000
commit47878a089b1e9bbf13aba188512cd56babea2b60 (patch)
tree8e30e29146280339b3e27c81dfd5d3a1fbaba617 /security/trinokiller/Makefile
parentSlurpie is a passwd file cracker similar to CrackerJack and John the Ripper (diff)
This program remotely kills trino nodes on version 1.07b2+f3 and below.
It abuses the careless coding in trinoo nodes and causes them to exit.
Notes
Notes: svn path=/head/; revision=25809
Diffstat (limited to 'security/trinokiller/Makefile')
-rw-r--r--security/trinokiller/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/security/trinokiller/Makefile b/security/trinokiller/Makefile
new file mode 100644
index 000000000000..7a36f1163277
--- /dev/null
+++ b/security/trinokiller/Makefile
@@ -0,0 +1,30 @@
+# ex:ts=8
+# Ports collection makefile for: trinokiller
+# Version required: 1.0
+# Date created: Sun Feb 12, 2000
+# Whom: David O'Brien (obrien@NUXI.com)
+#
+# $FreeBSD$
+#
+
+DISTNAME= trinokiller
+PKGNAME= trinokiller-1.0
+CATEGORIES= security
+MASTER_SITES= http://www.afro-productions.com/
+EXTRACT_SUFX= .c
+
+MAINTAINER= obrien@FreeBSD.org
+
+NO_WRKSUBDIR= yes
+
+do-extract:
+ @${MKDIR} ${WRKDIR}
+ @${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}
+
+do-build:
+ (cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${DISTNAME} ${DISTNAME}.c)
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/sbin
+
+.include <bsd.port.mk>