mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
66 lines
2.2 KiB
Ruby
66 lines
2.2 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 "EDIMAX"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-11-01
|
|
"Andrew Horton", # v0.2 # 2016-04-17 # Added website parameter.
|
|
]
|
|
version "0.2"
|
|
description "EDIMAX Device # Wireless Access Point / Broadband Routers / Ethernet Hub / Printer Server / Load Balancing Router"
|
|
website "http://www.edimax.com"
|
|
|
|
# It's impossible to fingerprint the model without logging in #
|
|
|
|
# Wireless Access Point / Broadband Routers / Ethernet Hub / Printer Server #
|
|
# Default login: admin/1234
|
|
# Wireless Acesss Point / Load Balancing Router #
|
|
# Default Login: admin/password
|
|
|
|
# About 12,383 SHodanHQ results for WWW-Authenticate: Basic realm="Default: admin/1234"
|
|
# About 49 SHodanHQ results for "WWW-Authenticate: Basic realm=" "Default: admin/password"
|
|
|
|
|
|
matches [
|
|
|
|
# Default title
|
|
{ :text=>"<title>EDIMAX Technology</title>", :certainty=>75 },
|
|
|
|
# Access Point Status page # Default title
|
|
{ :text=>"<title>Access Point Status</title>", :url=>"/stainfo.asp" },
|
|
|
|
# Default EDIMAX logo
|
|
{ :md5=>"9691c1bcac34138f8245d95e2e003e55", :url=>"/images/banner_up_03.jpg" },
|
|
|
|
# Default JavaScript
|
|
{ :text=>"cdwindow=window.open('countdown.asp','CountDown','channelmode=0, directories=0,fullscreen=0,height=100,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,width=450','false');" },
|
|
|
|
# Default CSS
|
|
{ :text=>'<link rel="stylesheet" href="edimax.css">', :certainty=>75 },
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# Check Server
|
|
if @headers["server"] =~ /GoAhead-Webs/
|
|
|
|
# HTTP Server Header and WWW-Authenticate realm
|
|
m << { :name=>"HTTP Server Header and WWW-Authenticate realm", :status=>401, :model=>"Wireless Access Point / Broadband Router / Ethernet Hub / Printer Server" } if @headers["www-authenticate"] =~ /Basic realm="Default: admin\/1234"/
|
|
m << { :name=>"HTTP Server Header and WWW-Authenticate realm", :status=>401, :model=>"Wireless Access Point / Load Balancing Router" } if @headers["www-authenticate"] =~ /Basic realm="Default: admin\/password"/
|
|
|
|
end
|
|
|
|
m
|
|
|
|
end
|
|
|
|
end
|
|
|