# frozen_string_literal: true ## # This file is part of WhatWeb and may be subject to # redistribution and commercial restrictions. Please see the WhatWeb # web site for more information on licensing and terms of use. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "Sophos-Email-Appliance" do @author = "Brendan Coles " # 2012-11-11 @version = "0.1" @description = "Sophos Email Appliances provide simple, powerful protection against spam, malware and data loss." @website = "http://www.sophos.com/en-us/products/email/email-appliances.aspx" # Documentation # # http://sea.sophos.com/docs/esa/ # ShodanHQ results as at 2012-11-11 # # 604 for Sophos Email Appliance # Google results as at 2012-11-11 # # 2 for intitle:"Sophos Email Appliance" "Enter your login and password to log in." # Dorks # @dorks = [ 'intitle:"Sophos Email Appliance" "Enter your login and password to log in."' ] # Matches # @matches = [ # HTTP Server Header { search: "headers[server]", regexp: /^Sophos Email Appliance$/ }, # HTTP to HTTPS Redirect # Hostname Detection # sometimes discloses the internal IP/hostname { search: "headers", string: /[Ss]erver: Sophos Email Appliance\r?\n.+Location: https?:\/\/([^\/]+)/m }, # Login Page # Logo { text: 'Email Appliance' }, # Login Page # Title { text: 'Sophos Email Appliance', certainty: 75 }, # Login Page # HTML Comment { text: '', certainty: 25 }, ] end