mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
16 lines
434 B
Ruby
16 lines
434 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.8.9-py3.12'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
|
|
no_source_build
|
|
end
|