Sha256: b824a8e436401dba2259f42968c8278b052c13005b611c2384decd76c5a9da7c
Contents?: true
Size: 1.64 KB
Versions: 6
Compression:
Stored size: 1.64 KB
Contents
# 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-02-16 # # Updated version detection ## WhatWeb::Plugin.define "Ultrastats" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-08-22 @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
Version data entries
6 entries across 6 versions & 1 rubygems