Sha256: 7167ac0137c4a4b74ac1c27cc177a449b6c0b4582bd21a4bbfa33fff7779639c

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 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 "error_log" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-12-28
  @version = "0.1"
  @description = "This plugin identifies PHP error_logs and and extracts the local file path."

  # Google results as at 2011-02-12 #
  # 847,000 for warning|error inurl:error_log +PHP "on line"
  # 269 for warning|error inurl:error_log +PHP "on line" inurl:".gov"

  # Dorks #
  @dorks = [
    'warning|error inurl:error_log "PHP" "on line"'
  ]

  # Matches #
  @matches = [

    # Extract local file path
    { filepath: /\[[\d]{2}\-[A-Za-z]{3,4}\-[\d]{4} [\d]{2}:[\d]{2}:[\d]{2}\] PHP .{1,50}: .* in (.*) on line [0-9]+/ },

    # Extract username
    { account: /\[[\d]{2}\-[A-Za-z]{3,4}\-[\d]{4} [\d]{2}:[\d]{2}:[\d]{2}\] PHP .{1,50}: .* in \/home\/([^\/]{1,32})\/.* on line [0-9]+/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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