Files
homebrew-core/Formula/sqlmap.rb
Rui Chen 5ee41c8f25 sqlmap 1.4.11
Closes #64064.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
2020-11-04 07:15:19 +00:00

34 lines
1.1 KiB
Ruby

class Sqlmap < Formula
desc "Penetration testing for SQL injection and database servers"
homepage "http://sqlmap.org"
url "https://github.com/sqlmapproject/sqlmap/archive/1.4.11.tar.gz"
sha256 "80cc07e08cc7e9662c6b8ce99fd3ae8706458b8009c56369dbb1f57b3b6634c5"
license "GPL-2.0"
head "https://github.com/sqlmapproject/sqlmap.git"
bottle :unneeded
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"sqlmap.py"
bin.install_symlink bin/"sqlmap.py" => "sqlmap"
bin.install_symlink libexec/"sqlmapapi.py"
bin.install_symlink bin/"sqlmapapi.py" => "sqlmapapi"
end
test do
data = %w[Bob 14 Sue 12 Tim 13]
create = "create table students (name text, age integer);\n"
data.each_slice(2) do |n, a|
create << "insert into students (name, age) values ('#{n}', '#{a}');\n"
end
pipe_output("sqlite3 school.sqlite", create, 0)
select = "select name, age from students order by age asc;"
args = %W[--batch -d sqlite://school.sqlite --sql-query "#{select}"]
output = shell_output("#{bin}/sqlmap #{args.join(" ")}")
data.each_slice(2) { |n, a| assert_match "#{n}, #{a}", output }
end
end