# 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.2 # 2011-03-06 # # Added matches for multiple hosts ## WhatWeb::Plugin.define "Parked-Domain" do @author = "Brendan Coles " # 2010-08-14 @version = "0.2" @description = "This plugin recognises web pages for common web hosts who allow domain parking." # Matches # @matches = [ # GoDaddy.com { text: 'This web page is parked FREE, courtesy of GoDaddy.com', string: 'GoDaddy.com' }, { text: "", string: 'GoDaddy.com' }, # Servlet.com { text: 'This Domain is Parked at Servlet.com', string: 'Servlet.com' }, { text: "document.write('' + 'contact us');", string: "Servlet.com" }, # Dreamhost.com { text: 'Domain Temporarily Parked with Dreamhost.com!', string: 'Dreamhost.com' }, # eHost.co.za { text: 'This domain is parked with eHost.co.za', string: "eHost.co.za" }, # WebOlli.com { text: 'This domain is currently parked at WebOlli Hosting Solutions - www.WebOlli.com', string: "WebOlli.com" }, # Sitelutions.com { text: '
This domain is parked for free at Sitelutions. The domain name ', string: 'Sitelutions.com' }, # Domainmasters.co.ke { text: "This Domain is Parked at Domainmasters.co.ke", string: "Domainmasters.co.ke" }, # The Good Geeks.com { text: 'This domain is parked by The Good Geeks / Geek Media', string: 'The Good Geeks.com' }, # IberSoluciones.com { text: 'This domain is parked by IberSoluciones.com', string: 'IberSoluciones.com' }, # Enlighten Hosting.com { text: 'Enlighten Hosting - This domain is currently parked', string: 'Enlighten Hosting.com' }, { text: 'Parking your domain is a free service provided by Enlighten Hosting.

', string: 'Enlighten Hosting.com' }, # Omega Point Design.com { text: 'This domain is parked
', string: 'Omega Point Design.com' }, # config.com { text: 'This domain is parked at config.com Internet services provider - commercial and consumer Internet services ', string: 'config.com' }, # Dot Com Today.com { text: 'This Domain is Parked at Dot Com Today', string: 'Dot Com Today.com' }, # Web.com { text: 'This domain is parked for free with web.com', string: 'Web.com' }, ] end