mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
46 lines
1.1 KiB
Ruby
46 lines
1.1 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 "FITELnet-Router"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-03-30
|
|
]
|
|
version "0.1"
|
|
description "FITELnet router"
|
|
website "http://www.furukawa.co.jp/fitelnet/"
|
|
|
|
# ShodanHQ results as at 2011-03-30 #
|
|
# 4,374 for GR-HTTPD Server
|
|
# Most results are from Japan
|
|
|
|
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# HTTP Server Header
|
|
if @headers["server"] =~ /^GR-HTTPD Server\/([\d\.]+)$/
|
|
|
|
m << { :certainty=>75, :name=>"HTTP Server Header" }
|
|
|
|
# Model Detection # Title
|
|
m << { :model=>@body.scan(/<TITLE> FITELnet-([A-Z][\d]+) [^>]+<\/TITLE>$/) } if @body =~ /<TITLE> FITELnet-([A-Z][\d]+) [^>]+<\/TITLE>$/
|
|
|
|
# MAC Detection
|
|
m << { :string=>@body.scan(/<TITLE> FITELnet-[A-Z][\d]+ [^>]+\(([\da-f:]{17})\)<\/TITLE>$/) } if @body =~ /<TITLE> FITELnet-[A-Z][\d]+ [^>]+\(([\da-f:]{17})\)<\/TITLE>$/
|
|
|
|
end
|
|
|
|
# Return passive matches
|
|
m
|
|
|
|
end
|
|
|
|
end
|
|
|