mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
56 lines
1.6 KiB
Ruby
56 lines
1.6 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "PluXml"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-10-14
|
|
# v0.2 # 2012-05-18 # Added a couple of matches, google dorks and example urls.
|
|
]
|
|
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é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énéré par <a href="http://pluxml.org" title="Blog ou Cms sans base de données">PluXml</a>' },
|
|
|
|
# ./admin/auth.php?p=/core/admin/ # Login Page # Footer Link
|
|
{ :text=>'Généré par <a href="http://pluxml.org">PluXml</a></p>' },
|
|
|
|
]
|
|
|
|
end
|
|
|