# frozen_string_literal: true ## # 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.3 # Brendan Coles # Renamed to Microsoft-Windows-Business-Server # Added Remote Web Workplace module detection ## # Version 0.2 # removed :certainty=>100 & :name ## WhatWeb::Plugin.define "Microsoft-Windows-Business-Server" do @author = "Andrew Horton" @version = "0.3" @description = "Microsoft Small/Essential Business Server" @website = "http://www.microsoft.com/" # Microsoft Small Business Server homepage: homepage:www.microsoft.com/sbs/ # Windows Essential Business Server homepage: http://www.microsoft.com/ebs/ # The Remote Web Workplace is a feature of Microsoft's Windows Small Business Server and the midsize business-focused product, Windows Essential Business Server, which enables pre-created users to log in to a front-end network-facing interface of the small business server. # 48 Google results for "In order to use all of the features available in Remote Web Workplace, you must enable JavaScript for your Web browser." @ 2010-12-30 # 6 ShodanHQ results for /Remote/logon.aspx ReturnUrl=%2fRemote @ 2010-12-30 # 139 results for intitle:"Welcome to Windows Small Business Server 2003" @ 2011-01-03 # Dorks # @dorks = [ 'intitle:"Welcome to Windows Small Business Server 2003"' ] # Matches # @matches = [ # 2003 # Default title { version: 2003, text: 'Welcome to Windows Small Business Server 2003' }, # 2008 # Default title { version: 2008, text: 'Welcome to Windows Small Business Server 2008' }, # 2003 # Remote Web Workplace link { text: 'Remote Web Workplace' }, # 2003 # Default logo HTML { certainty: 75, text: '' }, # Remote Web Workplace # Default title and stylesheet tags { text: '', module: "Remote Web Workplace" }, # Remote Web Workplace # Default form tag HTML { regexp: /
/, module: "Remote Web Workplace" }, # Remote Web Workplace # Default remember me link { text: '', module: "Remote Web Workplace" }, # Remote Web Workplace # Default meta copyright { text: '', module: "Remote Web Workplace", certainty: 25 }, # Remote Web Workplace # Default head, meta content and title { text: '', module: "Remote Web Workplace", certainty: 25 }, ] end