mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
70 lines
2.0 KiB
Ruby
70 lines
2.0 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Sony-Projector"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-07
|
|
]
|
|
version "0.1"
|
|
description "Sony projecter"
|
|
website "http://pro.sony.com/bbsc/ssr/cat-projectors/"
|
|
|
|
# ShodanHQ results as at 2011-08-07 #
|
|
# 91 for Network Projector
|
|
# 15 for Network Projector "Projector User"
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Landing Page # BODY onLoad
|
|
{ :url=>"/", :text=>'<BODY onLoad="setWindowTitle();showIndex();">' },
|
|
|
|
# Landing Page # form Action="/Forms/index_1"
|
|
{ :url=>"/", :text=>'<form Action="/Forms/index_1" method="post" NAME="form1">' },
|
|
|
|
# Landing Page # JavaScript src="sonylogoJS.js"
|
|
{ :url=>"/", :text=>'<script type="text/javascript" src="sonylogoJS.js"></script>' },
|
|
|
|
# Frameset # /index_J.htm
|
|
{ :url=>"/index_J.htm", :text=>'<frame src="index_bg.htm" NAME="RIGHT" marginwidth="0" marginheight="0" scrolling="no" noresize>' },
|
|
|
|
# Frameset # /index_E.htm
|
|
{ :url=>"/index_E.htm", :text=>'<frame src="index_bg.htm" NAME="RIGHT" marginwidth="0" marginheight="0" scrolling="no" noresize>' },
|
|
|
|
# JavaScript sonylogo();
|
|
{ :text=>'<TR><TD COLSPAN="2"><script type="text/javascript">sonylogo();</script></TD>' },
|
|
|
|
# Model Detection # /info_data.htm # JavaScript
|
|
{ :url=>"/info_data.htm", :model=>/^var info_pj_value = \[[\s]+'([^\s^']+)','[\d]+','[^']{0,256}'\];/ },
|
|
|
|
# Version Detection # /info_data.htm # JavaScript
|
|
{ :url=>"/info_data.htm", :version=>/^var info_other_value = \[[\s]+' ?([^\s^']+)'/ },
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# HTTP Server
|
|
if @headers["server"] =~ /^Network Projector$/
|
|
m << { :certainty=>75, :name=>"Server Header" }
|
|
end
|
|
|
|
# WWW-Authenticate Header
|
|
if @headers["www-authenticate"] =~ /Basic realm="Projector (User|Administration)"/
|
|
m << { :certainty=>75, :name=>"WWW-Authenticate Header" }
|
|
end
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
end
|
|
|