Sha256: 88ad0dce30e54c2b4a4f8aff36cfe7067b5d9f283334c33a22c974cee136b5c6

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 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
##
WhatWeb::Plugin.define "Scrutinizer" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2012-07-10
  @version = "0.1"
  @description = "Scrutinizer NetFlow - monitoring solution"
  @website = "http://www.plixer.com/products/netflow-sflow/scrutinizer-netflow-sflow.php"

  # Google results as at 2012-07-10 #
  # 1 for intitle:"Scrutinizer" "For the best Scrutinizer experience possible, please address the issues below"

  # Dorks #
  @dorks = [
    'intitle:"Scrutinizer" "For the best Scrutinizer experience possible, please address the issues below"'
  ]

  # Matches #
  @matches = [

    # div id='testAlertDivTitle' # Version Detection
    { version: /<div id='testAlertDivTitle'>Scrutinizer ([^<]+)<\/div>/ },

    # link id='scrutStyle'
    { regexp: /<link id='scrutStyle' rel="stylesheet" href="\/css\/classic\.css/ },

    # div id='testAlertHdrMsg'
    { regexp: /<div id='testAlertHdrMsg'>For the best Scrutinizer experience possible, please address the issues below:<\/div>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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