aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dnsmap.rb
diff options
context:
space:
mode:
authorAndrew Kraut2010-08-10 18:48:46 -0500
committerAdam Vandenberg2010-08-10 19:22:13 -0700
commit8679772b6f40ec4d2c1372a11b8cc696e2b3ec8f (patch)
treec0b11e98be55b27113bd62d662851b42d397ed7c /Library/Formula/dnsmap.rb
parent908bc035c27701fe4944b80ed549ff55336ea0cb (diff)
downloadhomebrew-8679772b6f40ec4d2c1372a11b8cc696e2b3ec8f.tar.bz2
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
Diffstat (limited to 'Library/Formula/dnsmap.rb')
-rw-r--r--Library/Formula/dnsmap.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/dnsmap.rb b/Library/Formula/dnsmap.rb
new file mode 100644
index 000000000..bbbb0105f
--- /dev/null
+++ b/Library/Formula/dnsmap.rb
@@ -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