1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
##
# 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 # 2011-01-29 # Brendan Coles <bcoles@gmail.com>
# Added model detection
# Added HTTP server header match
# Added 401 error match
##
Plugin.define "TP-Link-Router" do
author "Aung Khant, http://yehg.net"
version "0.2"
description "Detect TP-Link Router"
website "http://www.tp-link.com/"
# ShodanHQ results as at 2011-01-29 #
# 13,292 for TP-LINK
# Matches #
matches [
# 404 Error
{ :text=>'Operating System Error Nr:3997698: <P><HR><H2>File not found</H2>' },
# 401 Error
{ :text=>'Operating System Error Nr:3997698: HTM <P><HR><H2>Access denied</H2>' },
]
# Passive #
def passive
m=[]
# HTTP Server Header
m << { :name=>"HTTP Server" } if @headers['server'] =~ /TP\-LINK Router/
# WWW-Authenticate # Model Detection
m << { :model=>@headers['www-authenticate'].scan(/Basic realm="TP\-LINK ([^\"]*)"/) } if @headers['www-authenticate'] =~ /Basic realm="TP\-LINK ([^\"]*)"/
# Return passive matches
m
end
end
|