Sha256: b9b8fdbe79830a74bd28d99b9795fffe831017b3511c9adefa7751c17e2a53db

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 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-21 #
# Updated version detection
##
WhatWeb::Plugin.define "VS-Panel" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-08-29
  @version = "0.2"
  @description = "VS-Panel"
  @website = "http://www.vertigostudios.com"

  # Google results as at 2010-08-29 #
  # 56 for "powered by VS PANEL" -Vulnerability

  # Matches #
  @matches = [

    # Made in Vertigo Studios text and logo
    { text: '    <td width="10%"><div align="right"><a href="http://www.vertigostudios.com" target="_blank"><img src="images/vs_white.gif" alt="Made in Vertigo Studios" width="48" height="21" hspace="3" vspace="3" border="0" /></a></div></td>' },

    # Default logo
    { md5: '54ab59aeb78202bc2ec96abb0c6cff7c', url: 'images/vs_white.gif' },

    # Version Detection # < 10 # Powered by text
    { version: /&copy; [0-9]{4} \| Powered by VS PANEL v.([\d\.]+)<\/div><\/td>/ },

    # Version detection # 10.x # Powered by text
    { version: /&copy; [0-9]{4} \| Powered by VS PANEL v.([\d\.]+)(<\/span>)<\/div><\/td>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/vs-panel.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/vs-panel.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/vs-panel.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/vs-panel.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/vs-panel.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/vs-panel.rb