Sha256: ebd64eba30856d75651921de74fbb66d9fb7b15d908e83848da2409ae0d8fb69

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 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 # 2016-04-23 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "PRTG-Network-Monitor" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-30
  @version = "0.2"
  @description = "PRTG Network Monitor - Availability and Bandwidth Monitoring"
  @website = "http://www.paessler.com/prtg"

  # ShodanHQ results as at 2011-05-30 #
  # 1,687 for PRTG

  # Google results as at 2011-05-30 #
  # 36 for "PRTG Network Monitor" intitle:"PRTG Network Monitor" "Password" "Login Name "GUI" inurl:"install_the_windows_gui"

  # Dorks
  @dorks = [
    '"PRTG Network Monitor" intitle:"PRTG Network Monitor" "Password" "Login Name "GUI" inurl:"install_the_windows_gui"'
  ]

  # Matches #
  @matches = [

    # Server Name Detection
    { string: /<title>PRTG Network Monitor \(([^\)]+)\)&nbsp;\|&nbsp;Welcome<\/title>/ },

    # Version Detection
    { version: /<link rel="stylesheet" type="text\/css" href="\/css\/prtgmini\.css\?prtgversion=([^"]+)" media="print,screen,projection" \/>/ },

    #  HTTP Server Header
    { version: /^PRTG/, search: "headers[server]" },

    # Version Detection # HTTP Server Header
    { version: /^PRTG\/([^\s]+)$/, search: "headers[server]" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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