mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
45 lines
1.0 KiB
Ruby
45 lines
1.0 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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Axway-SecureTransport"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-03-24
|
|
]
|
|
version "0.1"
|
|
description "Axway SecureTransport is a secure, multi-protocol managed file transfer solution"
|
|
website "http://www.axway.com/products-solutions/mft/gateways/securetransport"
|
|
|
|
# ShodanHQ results as at 2012-03-24 #
|
|
# 126 for SecureTransport
|
|
|
|
# Google results as at 2012-03-24 #
|
|
# 15 for intitle:"Welcome to SecureTransport"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Welcome to SecureTransport"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Version Detection # HTTP Server Header
|
|
{ :search=>"headers[server]", :version=>/^SecureTransport\/([^\s]+)/ },
|
|
|
|
# Login Page # HTML Comment
|
|
{ :text=>'<!-- /application.bar -->' },
|
|
|
|
# Title
|
|
{ :certainty=>75, :text=>'<title>Welcome to SecureTransport</title>' },
|
|
|
|
]
|
|
|
|
end
|
|
|