mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
50 lines
1.5 KiB
Ruby
50 lines
1.5 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Ultrastats"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-22
|
|
# v0.2 # 2011-02-16 # Updated version detection.
|
|
]
|
|
version "0.2"
|
|
description "UltraStats is a php based gamelog parser for the famous Call of Duty franchise supporting Call of Duty, Call of Duty: United Office, Call of Duty2, Call of Duty 4: Modern Warfare and Call of Duty: World at War. In order to fully support UltraStats, you need a Apache or IIS Webserver with PHP5 ( PHP4 should still work ) installed. You also need a MySQL Database to store the data into."
|
|
website "http://www.ultrastats.org/"
|
|
|
|
# Google results as at 2010-08-22 #
|
|
# 50 for "powered by Ultrastats" intitle:Ultrastats
|
|
# 383 for intitle:"Ultrastats :: Home"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Ultrastats :: Home"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by text
|
|
{ :text=>'<DIV align=center>Powered by Ultrastats' },
|
|
|
|
# Default logo HTML
|
|
{ :text=>'<img src="./images/main/ultrastatslogo.png" width="300" height="200" name="ultrastats_logo" align="center">' },
|
|
|
|
# Default title
|
|
{ :regexp=>/<title>Ultrastats :: [^<]+<\/title>/i },
|
|
|
|
# Error page
|
|
{ :text=>'<title>UltraStats :: Critical Error occured</title>' },
|
|
|
|
# Version Detection
|
|
{ :version=>/ <a href="http:\/\/www.ultrastats.org[\/]?" target="_blank">Ultrastats<\/a> Version ([\d\.]+)/i },
|
|
|
|
]
|
|
|
|
end
|
|
|