Method: #PluXml

Defined in:
lib/whatweb/plugins/pluxml.rb

#PluXmlObject

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. www.morningstarsecurity.com/research/whatweb

Version 0.2 # 2012-05-18 # Added a couple of matches, google dorks and example urls



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/whatweb/plugins/pluxml.rb', line 12

WhatWeb::Plugin.define "PluXml" do
  @author = "Brendan Coles <[email protected]>" # 2010-10-14
  @version = "0.2"
  @description = "PluXml - PHP powered CMS [French]"
  @website = "http://pluxml.org/"

  # Google results as at 2012-05-18 #
  # 150 results for "powered by PluXml" @ 2010-10-14
  #  72 for "par Pluxml en" "Valide xHTML"
  #   5 for intitle:"PluXml - Page d'authentification" inurl:"auth.php"

  # Dorks #
  @dorks = [
    '"powered by PluXml"',
    '"par Pluxml en" "Valide xHTML"'
  ]

  # Matches #
  @matches = [

    # Version detection
    { version: /<a href="http:\/\/pluxml.org" title="Blog ou Cms sans base de donn&eacute;es">Pluxml<\/a>[\s]+([\d\.]+)/ },

    # Login page # Powered by text
    { text: 'par <a href="http://pluxml.org">Pluxml</a></p>' },
    { regexp: /Powered by <a href="http:\/\/pluxml\.org/ },

    # Login page # Default title
    { text: "<title>PluXml - Page d'authentification</title>" },

    # Login page # Default HTML
    { text: '<p class="auth_return"><a href="../../">Retour au site</a>' },

    # Footer Link
    { text: 'G&eacute;n&eacute;r&eacute; par <a href="http://pluxml.org" title="Blog ou Cms sans base de donn&eacute;es">PluXml</a>' },

    # ./admin/auth.php?p=/core/admin/ # Login Page # Footer Link
    { text: 'G&eacute;n&eacute;r&eacute; par <a href="http://pluxml.org">PluXml</a></p>' },

  ]
end