1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Add dnswall 0.1.4, a daemon that filters out private IP addresses in DNS

responses.

It is designed to be used in conjunction with an existing recursive DNS resolver
in order to protect networks against DNS rebinding attacks.
This commit is contained in:
Emanuel Haupt 2008-01-28 19:38:44 +00:00
parent 03ab1e04ac
commit c46e54a747
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206328
5 changed files with 53 additions and 0 deletions

View File

@ -34,6 +34,7 @@
SUBDIR += dnstracer
SUBDIR += dnsutl
SUBDIR += dnswalk
SUBDIR += dnswall
SUBDIR += doc
SUBDIR += domtools
SUBDIR += drill

34
dns/dnswall/Makefile Normal file
View File

@ -0,0 +1,34 @@
# New ports collection makefile for: dnswall
# Date created: 28 Jan 2008
# Whom: Emanuel Haupt <ehaupt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= dnswall
PORTVERSION= 0.1.4
CATEGORIES= dns security
MASTER_SITES= http://google-dnswall.googlecode.com/files/ \
http://critical.ch/distfiles/ \
http://energy.critical.ch/distfiles/
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= A daemon that filters out private IP addresses in DNS responses
USE_AUTOTOOLS= automake:110
USE_DOS2UNIX= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
AUTOFILES= depcomp install-sh missing
PORTDOCS= README
PLIST_FILES= bin/dnswall
pre-configure:
.for f in ${AUTOFILES}
@${RM} ${WRKSRC}/${f}
@${LN} ${AUTOMAKE_DIR}/${f} ${WRKSRC}/${f}
.endfor
.include <bsd.port.mk>

3
dns/dnswall/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (dnswall-0.1.4.tar.gz) = 5a16a99bf50b3451c65626cd4aaeafb6
SHA256 (dnswall-0.1.4.tar.gz) = 8197c99e69ea389735dad0ffc9b76ee2ae0a293c13e4c4e548497c106cfce895
SIZE (dnswall-0.1.4.tar.gz) = 67735

View File

@ -0,0 +1,10 @@
--- ./Makefile.am.orig 2008-01-28 20:28:44.000000000 +0100
+++ ./Makefile.am 2008-01-28 20:28:59.000000000 +0100
@@ -2,5 +2,5 @@
SUBDIRS = src
-docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
-dist_doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README
+docdir = $(prefix)/share/doc/$(PACKAGE)
+dist_doc_DATA = README

5
dns/dnswall/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
dnswall is a daemon that filters out private IP addresses in DNS responses. It
is designed to be used in conjunction with an existing recursive DNS resolver
in order to protect networks against DNS rebinding attacks.
WWW: http://code.google.com/p/google-dnswall/