Sha256: 144ad493fce6f8a82111e5f98c81bae493893cb777392b74bdf40ebf9e71f6d6

Contents?: true

Size: 1.56 KB

Versions: 6

Compression:

Stored size: 1.56 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.3 # 2016-04-17 # Andrew Horton
# Added website parameter
##
# Version 0.2 # 2011-02-19 #
# Updated version detection
##
WhatWeb::Plugin.define "File-Upload-Manager" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-06-05
  @version = "0.3"
  @description = "Web based file upload manager written in PHP."
  @website = "http://www.mtnpeak.net"

  # Google results as at 2010-06-05 #
  # 559 for +intitle:"File Upload Manager" "rename to" "file types allowed"

  # Dorks #
  @dorks = [
    'intitle:"File Upload Manager" "rename to" "file types allowed"'
  ]

  # Matches #
  @matches = [

    # GHDB Match # http://johnny.ihackstuff.com/ghdb/?function=detail&id=734
    { certainty: 75, ghdb: '+intitle:"File Upload Manager" "rename to" "file types allowed"' },

    # Default title
    { certainty: 75, text: '<title>File Upload Manager</title>' },

    # Default HTML copyright comment
    { text: '<!-- Copyright (c) 2003 thepeak. Get your own copy of this free PHP script from www.mtnpeak.net -->' },

    # Default copyright text
    { text: '<a href="http://www.mtnpeak.net" style="text-decoration: none; color: #C0C0C0; font-size: 9px; cursor: default";>&copy; thepeak</a>' },

    # Version Detection # Default HTML Comment
    { version: /<!-- File Upload Manager v([\d\.]+[^>]+) -->/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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