Sha256: e6e3d5a8f8e0205f4b6e2972e38d15830472d53ca7139b7ca8984e044a4dc4c6

Contents?: true

Size: 1.91 KB

Versions: 6

Compression:

Stored size: 1.91 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 "InverseFlow-Help-Desk-System" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-10-24
  @version = "0.1"
  @description = "InverseFlow Help Desk System"
  @website = "http://www.inverseflow.com/products/helpdesk/index.php"

  # Google results as at 2011-10-24 #
  # 76 for inurl:"ticket.php?cmd=lost"
  # 37 for inurl:"ticketview.php" "To view a ticket, please enter your email address and ticket ID."
  #  9 for "InverseFlow Help Desk User Login" intitle:"Help Desk"
  #  7 for "Powered by InverseFlow Help Desk"

  # Dorks #
  @dorks = [
    'for inurl:"ticket.php?cmd=lost"',
    'inurl:"ticketview.php" "To view a ticket, please enter your email address and ticket ID."'
  ]

  # Matches #
  @matches = [

    # Footer
    { certainty: 25, text: '<table width="100%" bgcolor="#FFAD4D" border="0"><tr><td><div class="infobar_01">' },

    # Version Detection # Footer
    { version: /<table width="100%" bgcolor="#FFAD4D" border="0"><tr><td><div class="infobar_01">InverseFlow Help Desk ([^<]+)<\/td><\/tr><\/table>/ },

    # ./ticketview.php # English
    { text: '<div class="normal">To view a ticket, please enter your email address and ticket ID.  If you forgot your ticket ID, you can use the <a href="ticket.php?cmd=lost">ticket lookup</a>.</div>' },

    # ./ticketview.php # All Languages
    { certainty: 25, regexp: /<div class="normal">[^<]+<a href="ticket\.php\?cmd=lost">/ },

    # ./ticketview.php # Form
    { certainty: 25, text: '<form action="ticketview.php" method="get">' },

    # ./ticket.php # Form
    { regexp: /<form action="ticket\.php" method="get">[\s]+<input type="hidden" name="cmd" value="lost" \/>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/inverseflow-help-desk-system.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/inverseflow-help-desk-system.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/inverseflow-help-desk-system.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/inverseflow-help-desk-system.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/inverseflow-help-desk-system.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/inverseflow-help-desk-system.rb