Sha256: 2646a3ed8fea1aa47f4f27c8810ee87d65cc4f8f47db3671cda0c6f3fe5db5bb

Contents?: true

Size: 990 Bytes

Versions: 6

Compression:

Stored size: 990 Bytes

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 "PHP-XMLRPC" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-17
  @version = "0.1"
  @description = "XML-RPC for PHP is a library implementing the XML-RPC protocol, written in PHP. It is also known as PHPXMLRPC."
  @website = "http://phpxmlrpc.sourceforge.net/"

  # Google results as at 2011-05-17 #
  # 8 for "Generated using PHP-XMLRPC" ext:php

  # Dorks #
  @dorks = [
    '"Generated using PHP-XMLRPC" ext:php'
  ]

  # Matches #
  @matches = [

    # Meta Generator
    { text: '<meta name="generator" content="XML-RPC for PHP" />' },

    # Version Detection # Generated footer
    { version: /<div class="footer">Generated using PHP-XMLRPC ([\d\.]+)<\/div>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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