mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.2 KiB
Ruby
39 lines
1.2 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 "Oracle-iPlanet"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-10-23
|
|
# v0.2 # 2011-11-22 # Updated matches to use matches instead of passive.
|
|
]
|
|
version "0.2"
|
|
description "Oracle-iPlanet Web Server and Proxy Server."
|
|
website "http://www.oracle.com/technetwork/middleware/iplanetwebserver-098726.html"
|
|
|
|
# ShodanHQ results as at 2010-10-23 #
|
|
# 277 for Proxy-agent:iPlanet-Web-Proxy-Server
|
|
# 62 for Server:iPlanet-Web-Server
|
|
# 51 for Server:Oracle-iPlanet-Web-Server
|
|
# 8 for for Server:iPlanet-WebServer-Enterprise
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# HTTP Header # Proxy-Agent # Version Detection
|
|
{ :search=>"headers[proxy-agent]", :version=>/iPlanet-Web-Proxy-Server\/([\d\.]+)/, :module=>"Proxy" },
|
|
|
|
# HTTP Header # Server # Version Detection
|
|
{ :search=>"headers[server]", :version=>/iPlanet-WebServer-Enterprise\/([\d\.]+)/, :module=>"Web" },
|
|
{ :search=>"headers[server]", :version=>/Oracle-iPlanet-Web-Server\/([\d\.]+)/, :module=>"Web" },
|
|
|
|
]
|
|
|
|
end
|
|
|