mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
43 lines
1.4 KiB
Ruby
43 lines
1.4 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "AP-Router"
|
|
authors [
|
|
"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ã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ço[\s]+MAC<\/strong><\/td>[\s]+<td width=51% bgcolor="#EEEEEE">[\s]+([a-f\d:]{17})[\s]+<\/td>[\s]+<\/tr>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|