blob: 928fdb9b9216e705770e5e5365cd232bc1d44234 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | require 'formula'
class Theharvester < Formula
  homepage 'https://code.google.com/p/theharvester/'
  url 'https://theharvester.googlecode.com/files/theHarvester-2.2a.tar.gz'
  sha1 'e02661ed6dd8d9d48d476ccee99878e15f67842a'
  def install
    libexec.install Dir['*']
    (libexec/'theHarvester.py').chmod 0755
    bin.install_symlink libexec/'theHarvester.py' => 'theharvester'
  end
  test do
    output = `#{bin}/theharvester -d example.com -l 1 -b google 2>&1`.strip
    assert_match /nobody@example\.com/, output
  end
end
 |