mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-12 17:08:25 -05:00
* Add unbuilt updated pip packages to updates-2025-06-13-00-22 * Add built packages for linux/386 to updates-2025-06-13-00-22 * Add built packages for linux/amd64 to updates-2025-06-13-00-22 * Add built packages for linux/arm/v7 to updates-2025-06-13-00-22 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
789 B
Ruby
23 lines
789 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Sqlmap < Pip
|
|
description 'sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers.'
|
|
homepage 'https://sqlmap.org/'
|
|
version "1.9.6-#{CREW_PY_VER}"
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1b1556424aae5a3277784118666bf68700334cf9d176e29f5da8d6c00828e077',
|
|
armv7l: '1b1556424aae5a3277784118666bf68700334cf9d176e29f5da8d6c00828e077',
|
|
i686: '937fbf4d095e7fbc6b4c7996ead1da20c06529ca9d63be2d091fddc3f593062d',
|
|
x86_64: '41e5175977f6ccd9f6ec85b1b222599edf4662d8364ad3e5312159873277f1d8'
|
|
})
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
|
|
no_source_build
|
|
end
|