mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
44 lines
945 B
Ruby
44 lines
945 B
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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "GoAhead-Webs"
|
|
authors [
|
|
"Andrew Horton",
|
|
# v0.2 # removed :name & :probability.
|
|
"Brendan Coles <bcoles@gmail.com>", # v0.3 # 2011-01-29 # Updated regex
|
|
# v0.4 # 2013-04-16 # Changed homepage
|
|
]
|
|
version "0.4"
|
|
description "Opensource, embedded webserver"
|
|
website "http://embedthis.com/products/goahead/"
|
|
|
|
# ShodanHQ results as at 2011-01-29 #
|
|
# 453222 for GoAhead Webs
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
{ :text=>"response_code_begin ERIC_RESPONSE_OK response_code_end response_msg_begin response_msg_end" }
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# HTTP Server header
|
|
m << {:name=>"HTTP Server header"} if @headers['server'] =~ /GoAhead-Webs/i
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
|
|
end
|
|
|