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##
7Plugin.define "Bulletlink-Newspaper-Template" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-09-13
9version "0.1"
10description "Ready-to-use online newspaper templates"
11website "http://bulletlink.com/"
12
13# Google results as at 2011-09-13 #
14# 252 for allinurl:target_form.asp?pform=
15# 204 for "powered by bulletlink.com"
16
17# Dorks #
18dorks [
19'allinurl:target_form.asp?pform=',
20'"powered by bulletlink.com"'
21]
22
23
24
25# Matches #
26matches [
27
28# Powered by footer
29{ :text=>'<br><div style="width: px; margin-left: auto; margin-right: auto;"><br><center><a href="http://bulletlink.com" target=_blank><font size=1>{ powered by bulletlink.com }</font></a></center><br></div>' },
30
31# StyleSheet
32{ :certainty=>75, :text=>'<link rel="stylesheet" href="/ModalPopup/core-modalpopup.css" type="text/css">' },
33
34# Copyright
35{ :text=>'<div class="copyright"><script type="text/javascript" language="JavaScript">GetCopyright();</script>&nbsp;&nbsp;&nbsp;<a class="copyright" href="/sitemap.asp">sitemap</a></div>' },
36
37]
38
39end
40
41