1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7# Version 0.3 # 2016-04-20 # Andrew Horton
8# Moved patterns from passive function to matches[]
9##
10# Version 0.2 # 2011-06-04 #
11# Updated regex
12# Renamed from FrontPage to FrontPage-Extensions
13##
14Plugin.define "FrontPage-Extensions" do
15author "Brendan Coles <bcoles@gmail.com>" # 2010-10-26
16version "0.3"
17description "Microsoft FrontPage (full name Microsoft Office FrontPage) is a WYSIWYG HTML editor and web site administration tool from Microsoft for the Microsoft Windows line of operating systems. This plugin identifies the FrontPage HTTP server header which is indicates the presence of FrontPage extensions."
18website "http://office.microsoft.com/en-au/frontpage-help/"
19
20# More Info #
21# http://en.wikipedia.org/wiki/Microsoft_FrontPage
22
23# ShodanHQ results as at 2010-10-26 #
24# 1,148,067 for "server: Frontpage"
25
26matches [
27	# Version Detection # HTTP Server Header
28	{ :version=>/FrontPage\/([^\s]+)/, :search=>"headers[server]" },
29	{ :regexp=>/^FrontPage/, :search=>"headers[server]" },
30]
31
32end
33
34