Sha256: 36bf2dfdec2450e8fef014907b37eacda361256895766964b8f750f8d7a30113
Contents?: true
Size: 1.54 KB
Versions: 6
Compression:
Stored size: 1.54 KB
Contents
# 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 <bcoles@gmail.com>" # 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: '<form name="form1" method="post" action="mail_user_login_exec.html" onsubmit="document.form1.submit.disabled=true;">' }, # /courier/[\d]+@/mail_user_login.html # StyleSheet { regexp: /<link href="custom_template\/[\d]+\/wcStyle\.css" type="?text\/css"? rel="?stylesheet"?>/i }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems