mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
37 lines
883 B
Ruby
37 lines
883 B
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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "My-PHP-Indexer"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-01
|
|
# v0.2 # 2011-02-18 # Updated version detection.
|
|
]
|
|
version "0.2"
|
|
description "PHP file indexer"
|
|
website "http://www.mafiatic.com"
|
|
|
|
# Google results as at 2010-08-01 #
|
|
# 34 for "powered by My PHP Indexer"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by My PHP Indexer"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Version Detectioon # Powered by text
|
|
{ :version=>/<!--Copyright--><a target="_blank" class="l" href="http:\/\/www.mafiatic.com">Powered by My PHP Indexer ([\d\.]+) \| Copyright © [0-9]{4}\-[0-9]{4} Mafiatic Inc.<\/a><!--Copyright-->/ },
|
|
|
|
]
|
|
|
|
end
|
|
|