cask "burp-suite-professional" do arch arm: "MacOsArm64", intel: "MacOsx" version "2026.1.5" sha256 arm: "778be81b606f9ad5aeb1910b8f962b3fb17cd926cc72aea793bebdc3ae4f53c5", intel: "3591192e83820f5abde85b9170e6e863990d481efee20c8b2f6e9ac1eea8c312" url "https://portswigger-cdn.net/burp/releases/download?product=pro&version=#{version}&type=#{arch}", verified: "portswigger-cdn.net/burp/releases/" name "Burp Suite Professional" desc "Web security testing toolkit" homepage "https://portswigger.net/burp/pro" 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?("Professional") && item["builds"]&.any? do |build| build["ProductPlatform"] == arch.to_s end end end end conflicts_with cask: "burp-suite-professional@early-adopter" app "Burp Suite Professional.app" zap trash: "~/.BurpSuite" end