Sha256: 8053f1aac3ac76897a38d87a5fecee4df06f4337cee0e547deb4312b2dd7976b

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
##
# Version 0.2 # 2016-04-23 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "VisualRoute" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-06-02
  @version = "0.2"
  @description = "Traceroute and network diagnostic tool"
  @website = "http://www.visualroute.com/"

  # ShodanHQ results as at 2011-06-02 #
  # 24 for VisualRoute

  @matches = [

    # HTTP Server Header
    { regexp: /^VisualRoute /, search: "headers[server]" },

    # HTTP Server Header # Version Detection
    { version: /^VisualRoute \((tm|R)\) ([^\s]+)$/, offset: 1, search: "headers[server]" },

    # HTTP Server Header # Edition Detection
    { string: /^VisualRoute \((tm|R)\) ([\d]{4} .+ Edition) \(v([^\)]+)\)$/, offset: 1, search: "headers[server]" },

    # HTTP Server Header # Version Detection
    { version: /^VisualRoute \((tm|R)\) ([\d]{4} .+ Edition) \(v([^\)]+)\)$/, offset: 2, search: "headers[server]" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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