summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
Diffstat (limited to 'security')
-rw-r--r--security/Makefile3
-rw-r--r--security/mdcrack/Makefile32
-rw-r--r--security/mdcrack/distinfo2
-rw-r--r--security/mdcrack/files/patch-Makefile35
-rw-r--r--security/mdcrack/files/patch-src_MD4_core3.c19
-rw-r--r--security/mdcrack/files/patch-src_MD4_global.h9
-rw-r--r--security/mdcrack/files/patch-src_MD5_core3.c19
-rw-r--r--security/mdcrack/files/patch-src_MD5_global.h9
-rw-r--r--security/mdcrack/files/patch-src_NTLM1_global.h11
-rw-r--r--security/mdcrack/files/patch-src_charset.c12
-rw-r--r--security/mdcrack/files/patch-src_global.h9
-rw-r--r--security/mdcrack/pkg-descr3
-rw-r--r--security/pond/Makefile69
-rw-r--r--security/pond/distinfo6
-rw-r--r--security/pond/pkg-descr9
-rw-r--r--security/pond/pkg-message15
-rw-r--r--security/tclgpg/Makefile30
-rw-r--r--security/tclgpg/distinfo2
-rw-r--r--security/tclgpg/pkg-descr3
19 files changed, 0 insertions, 297 deletions
diff --git a/security/Makefile b/security/Makefile
index 2104cba395d7..1f046b94e0c0 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -404,7 +404,6 @@
SUBDIR += md4coll
SUBDIR += md5coll
SUBDIR += md5deep
- SUBDIR += mdcrack
SUBDIR += medusa
SUBDIR += meek
SUBDIR += metasploit
@@ -857,7 +856,6 @@
SUBDIR += please
SUBDIR += polarssl13
SUBDIR += poly1305aes
- SUBDIR += pond
SUBDIR += portsentry
SUBDIR += ppars
SUBDIR += proftpd-mod_clamav
@@ -1228,7 +1226,6 @@
SUBDIR += swatch
SUBDIR += switzerland
SUBDIR += symbion-sslproxy
- SUBDIR += tclgpg
SUBDIR += tclsasl
SUBDIR += tcpcrypt
SUBDIR += testssl.sh
diff --git a/security/mdcrack/Makefile b/security/mdcrack/Makefile
deleted file mode 100644
index ec058fe797a4..000000000000
--- a/security/mdcrack/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= mdcrack
-PORTVERSION= 1.2
-PORTREVISION= 2
-CATEGORIES= security
-MASTER_SITES= http://membres.lycos.fr/mdcrack/download/
-
-MAINTAINER= lasg@lasg.dk
-COMMENT= Bruteforce password MD5 hashes
-
-ALL_TARGET= little
-PLIST_FILES= bin/mdcrack
-MAKE_ARGS= LDFLAGS="${LDFLAGS} -lncurses"
-
-USES= compiler:features ncurses
-BROKEN= checksum mismatch
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2018-01-27
-
-.include <bsd.port.pre.mk>
-
-.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 36
-post-patch:
- @${REINPLACE_CMD} -e 's|-fforce-addr||' ${WRKSRC}/Makefile
-.endif
-
-post-install:
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
-
-.include <bsd.port.post.mk>
diff --git a/security/mdcrack/distinfo b/security/mdcrack/distinfo
deleted file mode 100644
index 98107c37c5a7..000000000000
--- a/security/mdcrack/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (mdcrack-1.2.tar.gz) = b68dec25170f177c70264c5a2863a70c28011f669db56a8825ae4ca28b1f5825
-SIZE (mdcrack-1.2.tar.gz) = 60261
diff --git a/security/mdcrack/files/patch-Makefile b/security/mdcrack/files/patch-Makefile
deleted file mode 100644
index 9baceb924c02..000000000000
--- a/security/mdcrack/files/patch-Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
---- Makefile.orig Thu Aug 16 06:47:34 2001
-+++ Makefile Tue Jan 15 22:47:26 2002
-@@ -10,7 +10,7 @@
-
-
-
--CC = gcc
-+#CC = gcc
-
- # Please set RESUME_FILE and choose a secure place for the resume file
- # before using mdcrack as root.
-@@ -47,7 +47,7 @@
- BLOCK=-DBLOCKSIZE=50
-
- #full optimization
--CFLAGS = -O3 -fforce-addr -funroll-loops -fomit-frame-pointer -ffast-math
-+CFLAGS += -O3 -fforce-addr -funroll-loops -fomit-frame-pointer -ffast-math
-
-
-
-@@ -343,12 +343,8 @@
-
- install:
- @echo
-- @echo -n "Installing mdcrack in /usr/sbin/mdcrack ..... "
-- @cp bin/mdcrack /usr/sbin/mdcrack
-- @echo "ok."
-- @echo
-- @echo -n "Installing mdcrack-version in /usr/sbin/mdcrack-version ..... "
-- @echo $(CFLAGS) $(NCURSES) $(CPU) $(MDCRACK_OPTS) $(MDARCH) $(BLOCK) > /usr/sbin/mdcrack-version
-+ @echo -n "Installing mdcrack in $(DESTDIR)${PREFIX}/bin/mdcrack ..... "
-+ @cp bin/mdcrack $(DESTDIR)${PREFIX}/bin/mdcrack
- @echo "ok."
- @echo
- @echo "-*-*-*-*-*-*-*-*-*-*-*-*-*-*-"
diff --git a/security/mdcrack/files/patch-src_MD4_core3.c b/security/mdcrack/files/patch-src_MD4_core3.c
deleted file mode 100644
index b2aa6ea4efbf..000000000000
--- a/security/mdcrack/files/patch-src_MD4_core3.c
+++ /dev/null
@@ -1,19 +0,0 @@
-*** src/MD4/core3.c.orig Wed Aug 15 02:02:01 2001
---- src/MD4/core3.c Sun Dec 17 09:13:36 2006
-***************
-*** 1575,1581 ****
-
- ascii2bin(test, conv, hash);
- Decode(result2, hash, 16);
-! (unsigned int)bufferr2+=len+35;
- }
- else
-
---- 1575,1581 ----
-
- ascii2bin(test, conv, hash);
- Decode(result2, hash, 16);
-! bufferr2=(unsigned int)bufferr2+len+35;
- }
- else
-
diff --git a/security/mdcrack/files/patch-src_MD4_global.h b/security/mdcrack/files/patch-src_MD4_global.h
deleted file mode 100644
index dbef0b732e98..000000000000
--- a/security/mdcrack/files/patch-src_MD4_global.h
+++ /dev/null
@@ -1,9 +0,0 @@
-*** src/MD4/global.h.orig Wed Aug 15 02:03:40 2001
---- src/MD4/global.h Sun Dec 17 09:19:58 2006
-***************
-*** 1,3 ****
---- 1,4 ----
-+ #include <stdlib.h>
- #ifdef ISBIG_ENDIAN
- extern unsigned int x1[14];
- #else
diff --git a/security/mdcrack/files/patch-src_MD5_core3.c b/security/mdcrack/files/patch-src_MD5_core3.c
deleted file mode 100644
index 3da1655e5535..000000000000
--- a/security/mdcrack/files/patch-src_MD5_core3.c
+++ /dev/null
@@ -1,19 +0,0 @@
-*** src/MD5/core3.c.orig Wed Aug 15 01:59:05 2001
---- src/MD5/core3.c Sun Dec 17 09:16:57 2006
-***************
-*** 1537,1543 ****
-
- ascii2bin(test, conv, hash);
- Decode(result2, hash, 16);
-! (unsigned int)bufferr2+=len+35;
- }
- else
-
---- 1537,1543 ----
-
- ascii2bin(test, conv, hash);
- Decode(result2, hash, 16);
-! bufferr2=(unsigned int)bufferr2+len+35;
- }
- else
-
diff --git a/security/mdcrack/files/patch-src_MD5_global.h b/security/mdcrack/files/patch-src_MD5_global.h
deleted file mode 100644
index 2c2a586fc02d..000000000000
--- a/security/mdcrack/files/patch-src_MD5_global.h
+++ /dev/null
@@ -1,9 +0,0 @@
-*** src/MD5/global.h.orig Wed Aug 15 05:55:31 2001
---- src/MD5/global.h Sun Dec 17 09:20:01 2006
-***************
-*** 1,3 ****
---- 1,4 ----
-+ #include <stdlib.h>
- #ifdef ISBIG_ENDIAN
- extern unsigned int x1[14];
- #else
diff --git a/security/mdcrack/files/patch-src_NTLM1_global.h b/security/mdcrack/files/patch-src_NTLM1_global.h
deleted file mode 100644
index 9a798af92965..000000000000
--- a/security/mdcrack/files/patch-src_NTLM1_global.h
+++ /dev/null
@@ -1,11 +0,0 @@
-*** src/NTLM1/global.h.orig Wed Jan 17 17:24:41 2007
---- src/NTLM1/global.h Wed Jan 17 17:25:02 2007
-***************
-*** 1,3 ****
---- 1,6 ----
-+ #include <stdlib.h>
-+ #include <string.h>
-+
- #ifdef ISBIG_ENDIAN
- extern unsigned int x1[14];
- #else
diff --git a/security/mdcrack/files/patch-src_charset.c b/security/mdcrack/files/patch-src_charset.c
deleted file mode 100644
index de7a114b6c6d..000000000000
--- a/security/mdcrack/files/patch-src_charset.c
+++ /dev/null
@@ -1,12 +0,0 @@
-*** src/charset.c.orig Thu Aug 9 22:19:27 2001
---- src/charset.c Sun Dec 17 09:19:26 2006
-***************
-*** 10,15 ****
---- 10,16 ----
-
-
- #include <stdio.h>
-+ #include <stdlib.h>
- #include <string.h>
- #include <sys/types.h>
- #ifdef NCURSES
diff --git a/security/mdcrack/files/patch-src_global.h b/security/mdcrack/files/patch-src_global.h
deleted file mode 100644
index 4cda965e3297..000000000000
--- a/security/mdcrack/files/patch-src_global.h
+++ /dev/null
@@ -1,9 +0,0 @@
-*** src/global.h.orig Thu Aug 9 22:19:27 2001
---- src/global.h Sun Dec 17 09:19:18 2006
-***************
-*** 1,3 ****
---- 1,4 ----
-+ #include <stdlib.h>
-
-
- #define SYMBOL "-"
diff --git a/security/mdcrack/pkg-descr b/security/mdcrack/pkg-descr
deleted file mode 100644
index d96a879b7492..000000000000
--- a/security/mdcrack/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Bruteforce password MD5 hashes
-
-WWW: http://membres.lycos.fr/mdcrack/
diff --git a/security/pond/Makefile b/security/pond/Makefile
deleted file mode 100644
index 528d49570b85..000000000000
--- a/security/pond/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-# $FreeBSD$
-
-PORTNAME= pond
-PORTVERSION= 20150830
-PORTREVISION= 1
-CATEGORIES= security
-MASTER_SITES= http://c-s.li/ports/
-DISTFILES= pond-20150830.tar.gz \
- go-gtk-20151214.tar.gz \
- ed25519-20150830.tar.gz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Forward secure, asynchronous messenger
-
-LICENSE= BSD3CLAUSE
-
-BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/golang.org/x/crypto/bcrypt.a:security/go.crypto \
- ${LOCALBASE}/${GO_LIBDIR}/github.com/golang/protobuf/proto.a:devel/goprotobuf \
- ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.net/dict.a:net/go.net
-RUN_DEPENDS= tor:security/tor
-LIB_DEPENDS= libgtkspell.so:textproc/gtkspell \
- libtspi.so:security/trousers
-
-BROKEN= wrong build depends
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2018-01-27
-
-USES= go
-PLIST_FILES= bin/pond-server bin/pond
-USE_GNOME= gtk30
-GO_PKGNAME= github.com/agl/pond
-GO_TARGET= ${GO_PKGNAME}/pond-server \
- ${GO_PKGNAME}/pond
-
-post-extract:
- @${MKDIR} ${GO_WRKSRC:H}
- @${LN} -sf ${WRKSRC} ${GO_WRKSRC}
- @${LN} -sf ${WRKSRC}/client ${WRKSRC}/pond
- @${LN} -sf ${WRKSRC}/server ${WRKSRC}/pond-server
- @${LN} -sf ${WRKDIR}/go-gtk-20151214 ${GO_WRKDIR_SRC}/github.com/agl/go-gtk
- @${LN} -sf ${WRKDIR}/ed25519-20150830 ${GO_WRKDIR_SRC}/github.com/agl/ed25519
-
-post-patch:
- @${REINPLACE_CMD} -e 's|\<gdk|\<gtk-3.0\/gdk|g' \
- ${WRKDIR}/go-gtk-20151214/gdk/gdk.go \
- ${WRKDIR}/go-gtk-20151214/gdk/gdk_linux.go \
- ${WRKDIR}/go-gtk-20151214/gdk/gdk_windows.go \
- ${WRKDIR}/go-gtk-20151214/gtk/gtk.go
- @${REINPLACE_CMD} -e 's|\<pango|\<pango-1.0\/pango|g' \
- ${WRKDIR}/go-gtk-20151214/pango/pango.go
- @${REINPLACE_CMD} -e 's|\<gtk|\<gtk-3.0\/gtk|g' \
- ${WRKDIR}/go-gtk-20151214/gtk/gtk.go \
- ${WRKDIR}/go-gtk-20151214/gtkspell/gtkspell_fedora.go \
- ${WRKDIR}/go-gtk-20151214/gtkspell/gtkspell_ubuntu.go
- @${REINPLACE_CMD} -e 's|\<glib|\<glib-2.0\/glib|g' \
- ${WRKDIR}/go-gtk-20151214/glib/glib.go
- @${REINPLACE_CMD} -e 's|\<gdk-pixbuf|\<gdk-pixbuf-2.0\/gdk-pixbuf|g' \
- ${WRKDIR}/go-gtk-20151214/gdkpixbuf/gdkpixbuf.go
- @${REINPLACE_CMD} -e 's|\<gtkspell|\<gtkspell-2.0\/gtkspell|g' \
- ${WRKDIR}/go-gtk-20151214/gtkspell/gtkspell_fedora.go \
- ${WRKDIR}/go-gtk-20151214/gtkspell/gtkspell_ubuntu.go
- @${REINPLACE_CMD} -e 's|golang.org/x/net|code.google.com\/p\/go.net|g' \
- ${WRKDIR}/pond-20150830/panda/appengine.go \
- ${WRKDIR}/pond-20150830/pond/network.go
-
-do-build:
- @(cd ${GO_WRKSRC}; ${SETENV} ${GO_ENV} ${GO_CMD} install -tags nogui -v ${GO_TARGET})
-
-.include <bsd.port.mk>
diff --git a/security/pond/distinfo b/security/pond/distinfo
deleted file mode 100644
index 246db9cd959e..000000000000
--- a/security/pond/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-SHA256 (pond-20150830.tar.gz) = a9c1ccaeb3d491e117ffa47a524a6ca5199907ad05f2f253358169396057a71c
-SIZE (pond-20150830.tar.gz) = 1092039
-SHA256 (go-gtk-20151214.tar.gz) = f7120523b69f52e9e3a3c9b6adf0e540e27243f2218537d44dacfe630681b536
-SIZE (go-gtk-20151214.tar.gz) = 206581
-SHA256 (ed25519-20150830.tar.gz) = f5650363a6b0c6d47a9217b72e4a70d28ab692ef73faee3a24ffd3cec7488fa7
-SIZE (ed25519-20150830.tar.gz) = 105969
diff --git a/security/pond/pkg-descr b/security/pond/pkg-descr
deleted file mode 100644
index 7c462156bb0b..000000000000
--- a/security/pond/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-Pond is not email. Pond is forward secure, asynchronous messaging for the
-discerning. Pond messages are asynchronous, but are not a record; they expire
-automatically a week after they are received. Pond seeks to prevent leaking
-traffic information against everyone except a global passive attacker.
-
-Pond is experimental software! DO NOT USE IT FOR ANYTHING REAL!!!
-Use security/gnupg instead.
-
-WWW: https://github.com/agl/pond
diff --git a/security/pond/pkg-message b/security/pond/pkg-message
deleted file mode 100644
index 93e25976ca21..000000000000
--- a/security/pond/pkg-message
+++ /dev/null
@@ -1,15 +0,0 @@
-
-******************************************************************************
-
-To use pond as a client, you require tmpfs:
-
-1) Place the following line in loader.conf(5):
- tmpfs_load="YES"
-
-2) Mount a tmpfs directory, for example:
- mount -t tmpfs tmpfs /tmp
-
-3) Run pond client and follow the instructions:
- pond
-
-******************************************************************************
diff --git a/security/tclgpg/Makefile b/security/tclgpg/Makefile
deleted file mode 100644
index b02c464ada17..000000000000
--- a/security/tclgpg/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# Created by: mp39590@gmail.com
-# $FreeBSD$
-
-PORTNAME= tclgpg
-PORTVERSION= 0.0.0.20150324
-CATEGORIES= security tcl
-MASTER_SITES= http://chiselapp.com/user/sgolovan/repository/tclgpg/tarball/
-DISTNAME= tclgpg-4cfd9fa949
-
-MAINTAINER= mp39590@gmail.com
-COMMENT= Tcl interface to GNU Privacy Guard with interface similar to TclGPGME
-
-LICENSE= BSD2CLAUSE
-
-BUILD_DEPENDS= dtplite:devel/tcllib
-RUN_DEPENDS= gpg:security/gnupg1
-
-USES= autoreconf gmake tcl:tea
-USE_LDCONFIG= yes
-WRKSRC= ${WRKDIR}/tclgpg-4cfd9fa949
-BROKEN= checksum mismatch
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2018-01-27
-
-PLIST_FILES= lib/gpg1.0/libgpg1.0.so \
- lib/gpg1.0/pkgIndex.tcl \
- lib/gpg1.0/tclgpg.tcl \
- man/mann/gpg.n.gz
-
-.include <bsd.port.mk>
diff --git a/security/tclgpg/distinfo b/security/tclgpg/distinfo
deleted file mode 100644
index 708f0f99774b..000000000000
--- a/security/tclgpg/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (tclgpg-4cfd9fa949.tar.gz) = 47b3a9dd1267c2e843c95edda798bd5c78be07bbfb292f2b70e3573a1170e088
-SIZE (tclgpg-4cfd9fa949.tar.gz) = 71951
diff --git a/security/tclgpg/pkg-descr b/security/tclgpg/pkg-descr
deleted file mode 100644
index eb0673d556a4..000000000000
--- a/security/tclgpg/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Tcl interface to GNU Privacy Guard with interface similar to TclGPGME
-
-WWW: https://chiselapp.com/user/sgolovan/repository/tclgpg/