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 31 32 33 34 35 36 37 38
|
##
# 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 "iLON-SmartServer"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-03-15
]
version "0.1"
description "Echelon's i.LON SmartServer 2.0 is a versatile smart energy manager that helps your business achieve its operating and energy-efficiency goals. Designed to connect to IP-based applications such as enterprise energy management solutions, demand response programs, streetlight management systems, and high-value remote asset management programs, the server lets you link thousands of electronic devices to control centers."
website "http://www.echelon.com/products/cis/smartserver/default.htm"
# ShodanHQ results as at 2011-03-15 #
# 1,567 for i.LON realm wind
# Passive #
passive do
m=[]
# Server(WindRiver or WindWeb) and WWW-Authenticate(Basic realm="i.LON")
if (@headers["server"] =~ /^WindRiver/ or @headers["server"] =~ /WindWeb/) and @headers["www-authenticate"] =~ /^Basic realm="i\.LON"$/
m << { :name=>"HTTP Server and WWW-Authenticate headers" }
end
# Return passive matches
m
end
end
|