Sha256: fc9c75f79afa69802de8e8c94cf72118cb17765c48ed06df392b037abf1e6ed9

Contents?: true

Size: 1.21 KB

Versions: 6

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

##
# 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
##
WhatWeb::Plugin.define "FITELnet-Router" do
  @author = "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 #
  def passive(target)
    m = []

    # HTTP Server Header
    if /^GR-HTTPD Server\/([\d\.]+)$/.match?(target.headers["server"])

      m << { certainty: 75, name: "HTTP Server Header" }

      # Model Detection # Title
      m << { model: target.body.scan(/<TITLE> FITELnet-([A-Z][\d]+) [^>]+<\/TITLE>$/) } if target.body =~ /<TITLE> FITELnet-([A-Z][\d]+) [^>]+<\/TITLE>$/

      # MAC Detection
      m << { string: target.body.scan(/<TITLE> FITELnet-[A-Z][\d]+ [^>]+\(([\da-f:]{17})\)<\/TITLE>$/) } if target.body =~ /<TITLE> FITELnet-[A-Z][\d]+ [^>]+\(([\da-f:]{17})\)<\/TITLE>$/

    end

    # Return passive matches
    m
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/fitelnet-router.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/fitelnet-router.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/fitelnet-router.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/fitelnet-router.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/fitelnet-router.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/fitelnet-router.rb