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 39 40 41 42 43 44 45
|
##
# 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 "XBMC"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-03-05
]
version "0.1"
description "XBMC (formerly 'Xbox Media Center') is a free, open source (GPL) multimedia player that runs on the first-generation Microsoft Xbox, (not the newer Xbox 360), as well as on computers running Linux, Mac OS X, and Windows."
# ShodanHQ results as at 2011-03-05 #
# 47 for XBMC -"xbmc.org"
# 46 for realm XBMC
# Matches #
matches [
# HTML Comment
{ :text=>' <!-- <link rel="search" href="/provider.xml" type="application/opensearchdescription+xml" title="XBMC Library" /> -->', :string=>"Insecure" },
# favicon.ico
{ :url=>"/favicon.ico", :md5=>"46b742e6ba5d7ac03f13b312601c113f", :certainty=>75 },
]
# Passive #
passive do
m=[]
# realm=XBMC # realm="Keimo-XBMC" # realm="XBMC WebServer"
m << { :name=>'HTTP WWW Authenticate header' } if @headers['www-authenticate'] =~ /realm=["]?XBMC/ or @headers['www-authenticate'] =~ /realm=["]?Keimo-XBMC/
# Return passive matches
m
end
end
|