57 lines
1.8 KiB
Ruby
57 lines
1.8 KiB
Ruby
class Sslsplit < Formula
|
|
desc "Man-in-the-middle attacks against SSL encrypted network connections"
|
|
homepage "https://www.roe.ch/SSLsplit"
|
|
url "https://mirror.roe.ch/rel/sslsplit/sslsplit-0.5.3.tar.bz2"
|
|
sha256 "6c4cbc42cd7fb023fed75b82a436d8c1c4beaeb317a2ef41c00403684e0885dd"
|
|
head "https://github.com/droe/sslsplit.git", :branch => "develop"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "122bb47cf3919a2eaf21043b619bca7a113a748530b5f3e595837d23b2d06b97" => :mojave
|
|
sha256 "6dcff342c797595ffc790931b31db9d3148b25342d1aca6e7d165711f973991e" => :high_sierra
|
|
sha256 "b9ea20390d6cd65afc1ee751c80f1f2326de9400491fac1dcb9f59170acb2168" => :sierra
|
|
end
|
|
|
|
depends_on "check" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libevent"
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
unless build.head?
|
|
ENV.deparallelize
|
|
inreplace "GNUmakefile" do |s|
|
|
s.gsub! "-o $(BINUID) -g $(BINGID)", ""
|
|
s.gsub! "-o $(MANUID) -g $(MANGID)", ""
|
|
end
|
|
end
|
|
system "make", "test"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
pid_webrick = fork do
|
|
exec "ruby", "-rwebrick", "-e",
|
|
"s = WEBrick::HTTPServer.new(:Port => 8000); " \
|
|
's.mount_proc("/") {|_,res| res.body = "sslsplit test"}; ' \
|
|
"s.start"
|
|
end
|
|
pid_sslsplit = fork do
|
|
exec "#{bin}/sslsplit", "-P", "http", "127.0.0.1", "8080",
|
|
"127.0.0.1", "8000"
|
|
end
|
|
sleep 1
|
|
# Workaround to kill all processes from sslsplit
|
|
pid_sslsplit_child = `pgrep -P #{pid_sslsplit}`.to_i
|
|
|
|
begin
|
|
assert_equal "sslsplit test",
|
|
shell_output("curl -s http://localhost:8080/test")
|
|
ensure
|
|
Process.kill 9, pid_sslsplit_child
|
|
Process.kill 9, pid_webrick
|
|
Process.wait pid_webrick
|
|
end
|
|
end
|
|
end
|