diff options
author | mich <mich@FreeBSD.org> | 2003-05-15 21:59:37 +0800 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2003-05-15 21:59:37 +0800 |
commit | 1c32a6c01ca9c4c9225e18a9351cc39daa1a87bf (patch) | |
tree | be79d1031d70fed8e0f65fc290432bd6a680dd6f /security/vida | |
parent | 3fdfadff63e792a1531fb081e15769cc1b7d4fd4 (diff) | |
download | freebsd-ports-gnome-1c32a6c01ca9c4c9225e18a9351cc39daa1a87bf.tar.gz freebsd-ports-gnome-1c32a6c01ca9c4c9225e18a9351cc39daa1a87bf.tar.zst freebsd-ports-gnome-1c32a6c01ca9c4c9225e18a9351cc39daa1a87bf.zip |
New port.
Vida is a multi-datapipe handler, written in C with ncurses library,
for unix and unix-like OS.
PR: 51086
Approved by: roberto(mentor)
Diffstat (limited to 'security/vida')
-rw-r--r-- | security/vida/Makefile | 33 | ||||
-rw-r--r-- | security/vida/distinfo | 1 | ||||
-rw-r--r-- | security/vida/files/patch-aa | 18 | ||||
-rw-r--r-- | security/vida/pkg-descr | 20 | ||||
-rw-r--r-- | security/vida/pkg-plist | 1 |
5 files changed, 73 insertions, 0 deletions
diff --git a/security/vida/Makefile b/security/vida/Makefile new file mode 100644 index 000000000000..0572aca11da7 --- /dev/null +++ b/security/vida/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: vida +# Date created: Thu Apr 17 11:22:35 GMT 2003 +# Whom: mich@freebsdcluster.org +# +# $FreeBSD$ +# + +PORTNAME= vida +PORTVERSION= 0.7.1 +CATEGORIES= security +MASTER_SITES= http://vidatapipe.sourceforge.net/ + +MAINTAINER= mich@FreeBSD.org +COMMENT= Vida is a multi-datapipe handler + +BUILD_DEPENDS= ${LOCALBASE}/include/libnet.h:${PORTSDIR}/net/libnet + +LDFLAGS+= -pthread -lncurses -lpcap -lnet + +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-build: + cd ${WRKSRC} && \ + ${CC} -I${LOCALBASE}/include -L${LOCALBASE}/lib ${CFLAGS} vida.c funz.c dnshijacking.c \ + ${LDFLAGS} `libnet-config --defines` -o ${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/vida.1.gz ${PREFIX}/man/man1/ + +MAN1= vida.1 +MANCOMPRESSED= yes +.include <bsd.port.mk> diff --git a/security/vida/distinfo b/security/vida/distinfo new file mode 100644 index 000000000000..4c9fef3d4c2b --- /dev/null +++ b/security/vida/distinfo @@ -0,0 +1 @@ +MD5 (vida-0.7.1.tar.gz) = 032049c11eb018c27047b7be98b2919f diff --git a/security/vida/files/patch-aa b/security/vida/files/patch-aa new file mode 100644 index 000000000000..45e2373ad4a4 --- /dev/null +++ b/security/vida/files/patch-aa @@ -0,0 +1,18 @@ +--- include.h.orig Thu Apr 17 11:36:06 2003 ++++ include.h Thu Apr 17 11:36:19 2003 +@@ -24,13 +24,13 @@ + * * + \*____________________________________________*/ + +-#include <sys/socket.h> + #include <sys/types.h> ++#include <sys/socket.h> + #include <sys/wait.h> + #include <netinet/in.h> + #include <netdb.h> + #include <string.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <errno.h> + #include <unistd.h> + #include <sys/types.h> diff --git a/security/vida/pkg-descr b/security/vida/pkg-descr new file mode 100644 index 000000000000..8d2a86e8fbcf --- /dev/null +++ b/security/vida/pkg-descr @@ -0,0 +1,20 @@ +Vida is a multi-datapipe handler, written in C with ncurses library, +for unix and unix-like OS. + +Features: +- visual interface built with ncurses library +- multiple datapipes +- multiple connections for each datapipe +- password authentication over datapipes +- computes the total of sent and received bytes +- sniffing a routed connection (monodirectional, bidirectional and to + colors, packages matching a string) +- simple hijacking of a routed connection (in both directions) +- dns-hijacking of a dns-spoofed connection over switched LAN (todo) +- logging to text fil + +WWW: http://vidatapipe.sourceforge.net/ +AUTHOR: <embyte@madlab.it> + + - Michael L. Hostbaek + <mich@FreeBSD.org> diff --git a/security/vida/pkg-plist b/security/vida/pkg-plist new file mode 100644 index 000000000000..16de60db7935 --- /dev/null +++ b/security/vida/pkg-plist @@ -0,0 +1 @@ +bin/vida |