homebrew-cask/Casks/burp-suite.rb

23 lines
656 B
Ruby

cask 'burp-suite' do
version '1.7.22'
sha256 '938c7e7cb79477ce69a772e476d120b95963bd249801c63d65b330a220f57f6b'
url "https://portswigger.net/Burp/Releases/Download?productId=100&version=#{version}&type=MacOsx"
name 'Burp Suite'
homepage 'https://portswigger.net/burp/'
installer script: {
executable: 'Burp Suite Free Edition Installer.app/Contents/MacOS/JavaApplicationStub',
args: %w[-q],
sudo: true,
}
uninstall delete: '/Applications/Burp Suite Free Edition.app'
zap delete: '~/.BurpSuite'
caveats do
depends_on_java
end
end