New Formula: dnsmap 0.30

Dnsmap is a small C based penetration testing tool
that performs brute-forcing of domains. The tool
can use an internal wordlist, or work with an
external dictionary file.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Update to Homebrew style
master
Andrew Kraut 2010-08-10 18:48:46 -05:00 committed by Adam Vandenberg
parent a649dc172b
commit 96d77e3786
1 changed files with 11 additions and 0 deletions

11
Formula/dnsmap.rb Normal file
View File

@ -0,0 +1,11 @@
require 'formula'
class Dnsmap <Formula
url 'http://dnsmap.googlecode.com/files/dnsmap-0.30.tar.gz'
homepage 'http://code.google.com/p/dnsmap/'
md5 '7f341361622db147906700d37af46e06'
def install
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "BINDIR=#{bin}", "install"
end
end