Sha256: 6d413801a74834befae6e9e3f69708e80bcfd541948816a94fb8463176d47410

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 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 "Cacti" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-11-22
  @version = "0.1"
  @description = "Cacti is a complete network graphing solution designed to harness the power of RRDTool's data storage and graphing functionality."
  @website = "http://www.cacti.net/"

  # Google results as at 2011-11-22 #
  # 86 for inurl:"cacti/graph_view.php?action="
  # 49 for "Please enter your Cacti user name and password below:" intitle:"Login to Cacti"

  # Dorks #
  @dorks = [
    'inurl:"cacti/graph_view.php?action="'
  ]

  # Matches #
  @matches = [

    # Login Page # title
    { text: '<title>Login to Cacti</title>' },

    # Login Page # body tag
    { text: '<body bgcolor="#FFFFFF" onload="document.login.login_username.focus()">' },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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