mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Remove q package as it is no longer suitable for packaging (see Homebrew/homebrew-core#90174) * smem 1.4 -> 1.5 * sqlmap 1.4.2 -> 1.8.8 * weechat 2.1 -> 4.4.1
13 lines
377 B
Ruby
13 lines
377 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.8'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
end
|