mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
40 lines
1.1 KiB
Ruby
40 lines
1.1 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 "PHPEasyData"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-16
|
|
# v0.2 # Updated regex and version detection.
|
|
"Andrew Horton", # v0.3 # 2016-04-17 # Added website parameter and description.
|
|
]
|
|
version "0.3"
|
|
description "PHPEasyData is a French Content Management System"
|
|
website "http://www.phpeasydata.com/"
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by PHPEasyData"'
|
|
]
|
|
|
|
# 12 results for "powered by PHPEasyData" @ 2010-08-15
|
|
|
|
|
|
|
|
matches [
|
|
|
|
# Admin page
|
|
{ :text=>"<div id='phpeasydata_container' >" },
|
|
{ :text=>' <head><title>PhpEasyData login page</title>' },
|
|
|
|
# Version detection # Powered by text
|
|
{ :version=>/<a[^>]*href="http:\/\/www.(phpeasydata.com|freewebmaster-scripts.com\/phpeasydata)[^>]*>PHPEasyData[\s]*([^<]+)<\/a>/ },
|
|
{ :version=>/n main de pages dynamiques. " target="_blank"[\s]*>PhpEasyData[\s]*([^<]+)<\/a><\/b>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|