# 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 # 2012-05-18 # # Added a couple of matches, google dorks and example urls ## WhatWeb::Plugin.define "PluXml" do @author = "Brendan Coles " # 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: /Pluxml<\/a>[\s]+([\d\.]+)/ }, # Login page # Powered by text { text: 'par Pluxml

' }, { regexp: /Powered by PluXml - Page d'authentification" }, # Login page # Default HTML { text: '

Retour au site' }, # Footer Link { text: 'Généré par PluXml' }, # ./admin/auth.php?p=/core/admin/ # Login Page # Footer Link { text: 'Généré par PluXml

' }, ] end