File: parked-domain.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (101 lines) | stat: -rw-r--r-- 3,587 bytes parent folder | download
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
##
# 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
##
Plugin.define "Parked-Domain" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-08-14
version "0.2"
description "This plugin recognises web pages for common web hosts who allow domain parking."

# Examples #
examples %w|
www.race-walking.com
chi.chinajade.net
www.poweracrosstexas.com
www.speechcheck.com
survivingasthma.com
physics.webplasma.com
sexonada.com
awards.ntoxicated.com
ca.slake.org
www.metaltrussofindiana.com
www.cementkiln.com
www.frontierfm.co.ke
www.safedesk.com
www.dexcel.co.nz
nicoledaileyjones.com
www.akronoh.org
herbaliciousfl.com
toaveiro.com
leieispania.net
www.zenkaya.co.za
elikoantiquerugs.com
abfyjewelers.com
www.gowamps.com
www.quincylacrosse.com
congiong.com
www.muquehuong.net
ashwinitambe.com
ucause.com
emsta.org
cubahostels.com
cubaerotica.com
|

# Matches #
matches [

# GoDaddy.com
{ :text=>'<img src="http://images-pw.secureserver.net/images/log_gd_3.gif" usemap="#lmap" border="0" alt="This web page is parked FREE, courtesy of GoDaddy.com" ></a></div>', :string=>'GoDaddy.com' },
{ :text=>"<script language='javascript' src='https://a12.alphagodaddy.com/hosting_ads/gd01.js'></script>", :string=>'GoDaddy.com' },

# Servlet.com
{ :text=>'<title>This Domain is Parked at Servlet.com</title>', :string=>'Servlet.com' },
{ :text=>"document.write('<a href=\"mailto:info' + '@' + 'servlet.com\">' + 'contact us</a>');", :string=>"Servlet.com" },

# Dreamhost.com
{ :text=>'<title>Domain Temporarily Parked with Dreamhost.com!</title>', :string=>'Dreamhost.com' },

# eHost.co.za
{ :text=>'<title>This domain is parked with eHost.co.za</title>', :string=>"eHost.co.za" },

# WebOlli.com
{ :text=>'<title>This domain is currently parked at WebOlli Hosting Solutions - www.WebOlli.com</title>', :string=>"WebOlli.com" },

# Sitelutions.com
{ :text=>'<div class="parkblurb">This domain is parked for free at Sitelutions.  The domain name <b>', :string=>'Sitelutions.com' },

# Domainmasters.co.ke
{ :text=>"<title>This Domain is Parked at Domainmasters.co.ke</title>", :string=>"Domainmasters.co.ke" },

# The Good Geeks.com
{ :text=>'<title>This domain is parked by The Good Geeks / Geek Media</title>', :string=>'The Good Geeks.com' },

# IberSoluciones.com
{ :text=>'<title>This domain is parked by IberSoluciones.com</title>', :string=>'IberSoluciones.com' },

# Enlighten Hosting.com
{ :text=>'<title>Enlighten Hosting - This domain is currently parked</title>', :string=>'Enlighten Hosting.com' },
{ :text=>'<a href="http://www.enlightenhosting.com/services/domain/freeparking.aspx">Parking your domain</a> is a free service provided by <a href="http://www.enlightenhosting.com/">Enlighten Hosting</a>.</p>', :string=>'Enlighten Hosting.com' },

# Omega Point Design.com
{ :text=>'<img src="http://www.omegapointdesign.com/domain_parked.jpg" alt="This domain is parked" border="0" /></div>', :string=>'Omega Point Design.com' },

# config.com
{ :text=>'<TITLE>This domain is parked at config.com Internet services provider - commercial and consumer Internet services </TITLE>', :string=>'config.com' },

# Dot Com Today.com
{ :text=>'<title>This Domain is Parked at Dot Com Today</title>', :string=>'Dot Com Today.com' },

# Web.com
{ :text=>'<title>This domain is parked for free with web.com</title>', :string=>'Web.com' },

]

end