# 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 "Accellion-Secure-File-Transfer" do @author = "Brendan Coles " # 2011-11-20 @version = "0.1" @description = "Accellion Secure File Transfer (SFT)" @website = "http://www.accellion.com/" # ShodanHQ results as at 2011-11-20 # # 1,005 for location courier mail_user_login.html # 991 for sfcurl=deleted # Google results as at 2011-11-20 # # 37 for inurl:"courier/1000@/mail_user_login.html" # Dorks # @dorks = [ 'inurl:"courier/1000@/mail_user_login.html"' ] # Matches # @matches = [ # HTTP Set-Cookie Header # sfcurl=deleted; { search: "headers[set-cookie]", regexp: /sfcurl=deleted;/, certainty: 25 }, # HTTP Location Header { search: "headers[location]", regexp: /\/courier\/[\d]+@\/mail_user_login\.html\?$/ }, # /courier/[\d]+@/mail_user_login.html # /favicon.ico { url: "/favicon.ico", md5: "9423d9e9ce004c29dd5bc622f0112123" }, # /courier/[\d]+@/mail_user_login.html # Form { text: '
' }, # /courier/[\d]+@/mail_user_login.html # StyleSheet { regexp: //i }, ] end