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 46 47 48 49 50 51 52 53 54 55 56 57
|
##
# 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
##
Plugin.define "NetGear-Print-Server" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-03-07
version "0.1"
description "NetGear Print Server - Print servers connect printers directly to the network so that multiple PCs can share them. - Homepage: http://www.netgear.com.au/au/Products/Print-Servers"
# ShodanHQ results as at 2011-03-07 #
# 1,142 for PRINT_SERVER WEB
# 1,142 for PRINT_SERVER WEB 1.0
# Examples #
examples %w|
149.144.234.195
147.83.166.196
208.57.132.37
140.247.162.148
12.183.242.103
170.211.195.230
154.6.144.125
|
# Matches #
matches [
# Title
{ :text=>'<title>NetGear Print Server Setup</title>' },
# NoScript Message
{ :text=>'<p>To provide an enhanced user interface, this Print Server uses JavaScript extensively.' },
# Title # /start.htm
{ :url=>"/start.htm", :text=>"<title>NETGEAR Print Server </title>" },
# Logo # /settings.gif
{ :url=>"/settings.gif", :md5=>"d6b979c739a809658a0e8833bc64b900" },
]
# Passive #
def passive
m=[]
# Server: PRINT_SERVER WEB # Also used by other printer servers
m << { :certainty=>25, :version=>@headers["server"].scan(/^PRINT_SERVER WEB ([\d\.]+)$/) } if @headers["server"] =~ /^PRINT_SERVER WEB ([\d\.]+)$/
# Return passive matches
m
end
end
|