Sha256: 841d0050460f06f6ecab8f3a118998b5d29c7912a27117180a81925f03a9b4c6

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 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 "AP-Router" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-14
  @version = "0.1"
  @description = "AP Router [Brazilian]"
  @website = "http://aprouter.com.br/"

  # Google results as at 2011-08-14 #
  # 66 for intitle:"AP Router New Generation" +Sistema

  # Dorks #
  @dorks = [
    'intitle:"AP Router New Generation" "Sistema"'
  ]

  # Matches #
  @matches = [

    # Frameset
    { text: '<frame marginwidth="5" marginheight="5" src="menu_empty.html" name="menu" noresize scrolling="auto" frameborder="0">' },

    # Firmware Version Detection # /status.asp
    { url: "/status.asp", firmware: /<td width=49% bgcolor="#EEEEEE"><strong>Vers&atilde;o do Firmware<\/strong><\/td>[\s]+<td width=51% bgcolor="#EEEEEE">[\s]+v([^\s]+)[\s]+<\/td>[\s]+<\/tr>/ },

    # MAC Address Detection # /status.asp
    { url: "/status.asp", string: /<td width=49% bgcolor="#EEEEEE"><strong>MAC da Wireless<\/strong><\/td>[\s]+<td width=51% bgcolor="#EEEEEE">[\s]+([a-f\d:]{17})[\s]+<\/td>[\s]+<\/tr>/ },
    { url: "/status.asp", string: /<td width=49% bgcolor="#EEEEEE"><strong>Endere&ccedil;o[\s]+MAC<\/strong><\/td>[\s]+<td width=51% bgcolor="#EEEEEE">[\s]+([a-f\d:]{17})[\s]+<\/td>[\s]+<\/tr>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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