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
|
##
# 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
##
# Version 0.3 # 2016-04-19 # Andrew Horton
# Moved patterns from passive function to matches[]
##
# Version 0.2 # 2011-06-04 #
# Updated regex
##
Plugin.define "DeleGate" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-10-30
version "0.3"
description "DeleGate is a multi-purpose application level gateway, or a proxy server which runs on multiple platforms (Unix, Windows, MacOS X and OS/2). DeleGate mediates communication of various protocols (HTTP, FTP, NNTP, SMTP, POP, IMAP, LDAP, Telnet, SOCKS, DNS, etc.), applying cache and conversion for mediated data, controlling access from clients and routing toward servers."
website "http://www.delegate.org/delegate/"
# ShodanHQ results as at 2011-06-04 #
# 393 for DeleGate-Ver
matches [
# Version Detection # HTTP Server Header
{ :version=>/^DeleGate\/([^\s]+)/, :search=>"headers[server]" },
# Version Detection # HTTP DeleGate-Ver Header
{ :version=>/^([^\s]+) \(delay=/, :search=>"headers[delegate-ver]" },
]
end
|