1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
##
# 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
##
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
|