mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
##
|
|
# 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.
|
|
# https://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Accellion-Secure-File-Transfer"
|
|
authors [
|
|
"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
|
|
|