1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00

scavenge is a utility to audit DNS records within an IP address range.

It scans the range and classifies its findings into 4 categories:

    - Missing A records
    - Missing PTR records
    - Mismatched A/PTR records
    - Stale PTR records

PR:		ports/80119
Submitted by:	Mark Foster <mark@foster.cc>
Approved by:	adamw (mentor)
This commit is contained in:
Jean-Yves Lefort 2005-04-20 00:21:04 +00:00
parent 9564fa460c
commit 3ff7677ce7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133717
4 changed files with 40 additions and 0 deletions

View File

@ -78,6 +78,7 @@
SUBDIR += py-twistedNames
SUBDIR += rbldnsd
SUBDIR += rbllookup
SUBDIR += scavenge
SUBDIR += sheerdns
SUBDIR += skadns
SUBDIR += sleuth

25
dns/scavenge/Makefile Normal file
View File

@ -0,0 +1,25 @@
# New ports collection makefile for: scavenge
# Date created: 13 April 2005
# Whom: mark@foster.cc
#
# $FreeBSD$
PORTNAME= scavenge
PORTVERSION= 1.3
CATEGORIES= dns
MASTER_SITES= http://mark.foster.cc/pub/scavenge/
MAINTAINER= mark@foster.cc
COMMENT= Discover/audit forward and reverse DNS records
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \
nmap:${PORTSDIR}/security/nmap
PLIST_FILES= bin/scavenge
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/scavenge ${PREFIX}/bin
.include <bsd.port.mk>

2
dns/scavenge/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (scavenge-1.3.tar.gz) = 5a49dc865f589bab03da2b51660408eb
SIZE (scavenge-1.3.tar.gz) = 2030

12
dns/scavenge/pkg-descr Normal file
View File

@ -0,0 +1,12 @@
scavenge is a utility to audit DNS records within an IP address range.
It scans the range and classifies its findings into 4 categories:
- Missing A records
- Missing PTR records
- Mismatched A/PTR records
- Stale PTR records
WWW: http://mark.foster.cc/pub/scavenge/
- mdf
mark@foster.cc