"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/accellion-secure-file-transfer.rb" (15 Jan 2021, 1468 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
The requested HTML page contains a <FORM> tag that is unusable on "Fossies" in "automatic" (rendered) mode so that page is shown as HTML source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ##
2 # This file is part of WhatWeb and may be subject to
3 # redistribution and commercial restrictions. Please see the WhatWeb
4 # web site for more information on licensing and terms of use.
5 # https://www.morningstarsecurity.com/research/whatweb
6 ##
7 Plugin.define do
8 name "Accellion-Secure-File-Transfer"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2011-11-20
11 ]
12 version "0.1"
13 description "Accellion Secure File Transfer (SFT)"
14 website "http://www.accellion.com/"
15
16 # ShodanHQ results as at 2011-11-20 #
17 # 1,005 for location courier mail_user_login.html
18 # 991 for sfcurl=deleted
19
20 # Google results as at 2011-11-20 #
21 # 37 for inurl:"courier/1000@/mail_user_login.html"
22
23 # Dorks #
24 dorks [
25 'inurl:"courier/1000@/mail_user_login.html"'
26 ]
27
28
29
30 # Matches #
31 matches [
32
33 # HTTP Set-Cookie Header # sfcurl=deleted;
34 { :search=>"headers[set-cookie]", :regexp=>/sfcurl=deleted;/, :certainty=>25 },
35
36 # HTTP Location Header
37 { :search=>"headers[location]", :regexp=>/\/courier\/[\d]+@\/mail_user_login\.html\?$/ },
38
39 # /courier/[\d]+@/mail_user_login.html # /favicon.ico
40 { :url=>"/favicon.ico", :md5=>"9423d9e9ce004c29dd5bc622f0112123" },
41
42 # /courier/[\d]+@/mail_user_login.html # Form
43 { :text=>'<form name="form1" method="post" action="mail_user_login_exec.html" onsubmit="document.form1.submit.disabled=true;">' },
44
45 # /courier/[\d]+@/mail_user_login.html # StyleSheet
46 { :regexp=>/<link href="custom_template\/[\d]+\/wcStyle\.css" type="?text\/css"? rel="?stylesheet"?>/i },
47
48 ]
49
50 end
51