Skip to content

Commit

Permalink
Merge pull request #200043 from Homebrew/bump-sqlmap-1.8.12
Browse files Browse the repository at this point in the history
sqlmap 1.8.12
  • Loading branch information
BrewTestBot authored Dec 4, 2024
2 parents 77acf68 + a67e103 commit 4a026ca
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Formula/s/sqlmap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ class Sqlmap < Formula

desc "Penetration testing for SQL injection and database servers"
homepage "https://sqlmap.org"
url "https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.8.11.tar.gz"
sha256 "e52ee3a3c1892745176f936fc16a7f761d690739afa4b7b01c64e9144849cbd9"
url "https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.8.12.tar.gz"
sha256 "3917a2a73a66dcaff76be5933e132d55e0e32f8a2b1690b9cf53eb413fd433f5"
license "GPL-2.0-or-later"
head "https://github.com/sqlmapproject/sqlmap.git", branch: "master"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "edd9e5f42592cf45e4015b7cb01c8d037d1a7d0587dd89caae95ce71c6cc0502"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "edd9e5f42592cf45e4015b7cb01c8d037d1a7d0587dd89caae95ce71c6cc0502"
sha256 cellar: :any_skip_relocation, arm64_ventura: "edd9e5f42592cf45e4015b7cb01c8d037d1a7d0587dd89caae95ce71c6cc0502"
sha256 cellar: :any_skip_relocation, sonoma: "be89b153d6ae2e1f91ba453a630235de9cbe37f44e53c0f70bcd638ef983f980"
sha256 cellar: :any_skip_relocation, ventura: "be89b153d6ae2e1f91ba453a630235de9cbe37f44e53c0f70bcd638ef983f980"
sha256 cellar: :any_skip_relocation, x86_64_linux: "a9ac3eb74c8d5ab50ff9d671834b5d71956ba3845890aed11e017d8459836d00"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "68dd79394ca2e3a447beb619bfe8ed77f374a59cfa57f41fb399028b9aa45270"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "68dd79394ca2e3a447beb619bfe8ed77f374a59cfa57f41fb399028b9aa45270"
sha256 cellar: :any_skip_relocation, arm64_ventura: "68dd79394ca2e3a447beb619bfe8ed77f374a59cfa57f41fb399028b9aa45270"
sha256 cellar: :any_skip_relocation, sonoma: "0aa1d780269e0c5b29ab952c0211caa5ed80792e665f0e532071238f77b258ab"
sha256 cellar: :any_skip_relocation, ventura: "0aa1d780269e0c5b29ab952c0211caa5ed80792e665f0e532071238f77b258ab"
sha256 cellar: :any_skip_relocation, x86_64_linux: "87914cae7214d403699724f8943e05176ff14b564ad984115cc2a555974ea183"
end

depends_on "[email protected]"
Expand Down Expand Up @@ -49,6 +49,6 @@ def install
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 }
data.each_slice(2) { |n, a| assert_match "#{n},#{a}", output }
end
end

0 comments on commit 4a026ca

Please sign in to comment.