cask "burp-suite" do arch arm: "MacOsArm64", intel: "MacOsx" version "2026.1.3" sha256 arm: "86dde612338b24ebc37ad64b24a439d9ed0ff10f780f9e58ded885cca4bdab63", intel: "4a66665141d0f8e04aae147f4ccf8d0755f030a825253fbc827b8647a7827445" url "https://portswigger-cdn.net/burp/releases/download?product=community&version=#{version}&type=#{arch}", verified: "portswigger-cdn.net/burp/releases/" name "Burp Suite Community Edition" desc "Web security testing toolkit" homepage "https://portswigger.net/burp/" livecheck do url "https://portswigger.net/burp/releases/data" strategy :json do |json| all_versions = json.dig("ResultSet", "Results") next if all_versions.blank? all_versions.filter_map do |item| item["version"] if item["releaseChannels"]&.include?("Stable") && item["categories"]&.include?("Community") && item["builds"]&.any? do |build| build["ProductPlatform"] == arch.to_s end end end end conflicts_with cask: "burp-suite@early-adopter" app "Burp Suite Community Edition.app" zap trash: "~/.BurpSuite" end