Sha256: 07ac37cb509a1fc45385eece38a434e5f1e33852e101c2a26d7ef198e4149062
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true ## # 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 ## WhatWeb::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
Version data entries
6 entries across 6 versions & 1 rubygems