X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from tux29.hoststar.ch (tux29.hoststar.ch [85.10.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B2C611421A86 for ; Sun, 3 Jul 2011 13:28:34 +0000 (UTC) Received: from localhost.localdomain (77-56-73-198.dclient.hispeed.ch [77.56.73.198]) (authenticated bits=0) by tux29.hoststar.ch (8.13.8/8.12.11) with ESMTP id p63DSY6r017029 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 3 Jul 2011 15:28:34 +0200 From: Fabian Affolter To: alpine-devel@lists.alpinelinux.org Cc: Fabian Affolter Subject: [alpine-devel] [PATCH] Initial APKBUILD for dnsenum Date: Sun, 3 Jul 2011 13:28:25 +0000 Message-Id: <1309699705-15488-1-git-send-email-fabian@affolter-engineering.ch> X-Mailer: git-send-email 1.7.4.5 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Package description: The purpose of Dnsenum is to gather as much information as possible about a domain. The program currently performs the following operations: 1) Get the host's addresse (A record). 2) Get the namservers (threaded). 3) Get the MX record (threaded). 4) Perform axfr queries on nameservers and get BIND versions(threaded). 5) Get extra names and subdomains via google scraping (google query = "allinurl: -www site:domain"). 6) Brute force subdomains from file, can also perform recursion on subdomain that have NS records (all threaded). 7) Calculate C class domain network ranges and perform whois queries on them (threaded). 8) Perform reverse lookups on netranges ( C class or/and whois netranges). 9) Write to domain_ips.txt file ip-blocks. --- testing/dnsenum/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) create mode 100644 testing/dnsenum/APKBUILD diff --git a/testing/dnsenum/APKBUILD b/testing/dnsenum/APKBUILD new file mode 100644 index 0000000..1d9f1b0 --- /dev/null +++ b/testing/dnsenum/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Fabian Affolter +# Maintainer: +pkgname=dnsenum +pkgver=1.2.2 +pkgrel=0 +pkgdesc="A tool to enumerate DNS info about domains" +url="http://code.google.com/p/dnsenum/" +arch="noarch" +license="GPL2+" +depends="perl-net-ip perl-net-dns perl-net-netmask perl-xml-writer" +depends_dev="" +makedepends="" +install="" +subpackages="" +source="http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir" + +build() { + return 0 +} + +package() { + cd "$_builddir" + install -Dm755 "$pkgname".pl "$pkgdir"/usr/bin/$pkgname || return 1 +} + +md5sums="d8806daddff880dcadf90af79720e7fe dnsenum-1.2.2.tar.gz" -- 1.7.4.5 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---