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
|
##
# 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
##
Plugin.define "EDK" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-09-04
version "0.1"
description "EDK is an Open Source Killboard for EVE-Online, maintained by the EVE Development Network. Requirements: PHP >= version 5, the GD Library, MySQL >= version 5"
website "http://wiki.eve-id.net/EDK"
# Google results as at 2010-09-04 #
# 355 for (inurl:alliance_detail | inurl:pilot_detail | inurl:corp_detail)
# Dorks #
dorks [
'(inurl:alliance_detail | inurl:pilot_detail | inurl:corp_detail)'
]
matches [
# URL pattern
{ :ghdb=>"inurl:alliance_detail | inurl:pilot_detail | inurl:corp_detail" },
# Default menu option
{ :text=>'<div class="menu-caption">Kills & losses</div>' },
# Table CSS class
{ :text=>'<tr class="kb-table-row-even">' },
# Unique anchor & URL fragment
{ :text=>'&scl_id=39">Industrial Command Ship</a></b></td>' },
# HTML comment
{ :text=>'<!-- /killlistable.tpl -->' },
]
end
# An aggressive plugin could check default file paths
|