# 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 # removed :probability & :name WhatWeb::Plugin.define "Index-Of" do @author = "Andrew Horton" @version = "0.2" @description = "Index of" # Dorks # @dorks = [ 'name "last modified" size description' ] # Apache2 http://www.ibiblio.org/pub/ # Name Last modified # Apache2.2 #
Name Last modified Size
# Apache/2.0.52 (Unix) Server at www.gap-system.org # Name Last modified # Apache/1.3.26 Server at www.czyborra.com # Name Last modified # Matches # @matches = [ { text: 'Index of /' }, { certainty: 75, ghdb: 'name "last modified" size description' }, { text: 'Name Last modified' }, { regexp: /Name<\/a>[\s]*Last modified<\/a>/ }, { regexp: / Name[\s]+Last modified[\s]+Size[\s]+
/ }, { regexp: /Name<\/A>[\s]+Last modified<\/A>/ }, { name: "minimal apache listing", regexp: /Index of \/[^<]*<\/title>[\s]*<\/head>[\s]* [\s]*Index of / } ] end