homebrew-core/Formula/lcrack.rb
2019-10-11 13:57:30 +02:00

39 lines
1.5 KiB
Ruby

class Lcrack < Formula
desc "Generic password cracker"
homepage "https://packages.debian.org/sid/lcrack"
url "https://deb.debian.org/debian/pool/main/l/lcrack/lcrack_20040914.orig.tar.gz"
version "20040914"
sha256 "63fe93dfeae92677007f1e1022841d25086b92d29ad66435ab3a80a0705776fe"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "229ccd2408afb62d18a8ea9f68cf7d065720fb9137b1b14f9d4e7aaffc178865" => :catalina
sha256 "d1d84ad9e2d7a9c6c8ed9eaedb70362ef362efa72c236aa9610ece7cefcd6029" => :mojave
sha256 "9d903ca15b5614ebfef876b53ddba7bc6b7798d0a79a56fceb86b6518844103e" => :high_sierra
sha256 "8e5fb5b2ad952ea17bc314a9ae49ce4baf736868448e833600c394b60d326846" => :sierra
sha256 "2bd1de3426e4bd4ebfc6fb6026dc9a9fd046a5d9345459700a2361b7fe53f49c" => :el_capitan
sha256 "443e64bdb0307e12f4ef990abea7941239784cb7c9798929880a7973f86cf5bc" => :yosemite
sha256 "7ce0dcf84e40ecf7bffc05b068f8c5109d055e654fba8a8c918cbfada447e19e" => :mavericks
end
def install
system "./configure"
system "make"
bin.install "lcrack"
# This prevents installing slightly generic names (regex)
# and also mimics Debian's installation of lcrack.
%w[mktbl mkword regex].each do |prog|
bin.install prog => "lcrack_#{prog}"
end
end
test do
(testpath/"secrets.txt").write "root:5ebe2294ecd0e0f08eab7690d2a6ee69:SECRET"
(testpath/"dict.txt").write "secret"
output = pipe_output("#{bin}/lcrack -m md5 -d dict.txt -xf+ -s a-z -l 1-8 secrets.txt 2>&1")
assert_match "Found: 1", output
end
end