mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
60 lines
1.8 KiB
Ruby
60 lines
1.8 KiB
Ruby
##
|
|
# Version 0.2 # 2011-08-18 # Brendan Coles <bcoles@gmail.com> #
|
|
# Added a few matches
|
|
##
|
|
|
|
|
|
##
|
|
# 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 "PHP-Fusion"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-06-04
|
|
# v0.2 # 2011-08-18 # Added a few matches.
|
|
]
|
|
version "0.2"
|
|
description "PHP-Fusion, a light-weight open-source content management system (CMS) - Requires: PHP and MySQL"
|
|
website "http://www.php-fusion.co.uk/"
|
|
|
|
# ShodanHQ results as at 2011-08-18 #
|
|
# 1,668 for fusion_visited=yes
|
|
# 4 for fusion_visited= -yes
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Powered by PHP-Fusion copyright" intitle:News'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# GHDB # "Powered by PHP-Fusion copyright" +intitle:News'
|
|
{ :certainty=>75, :ghdb=>'"Powered by PHP-Fusion copyright" +intitle:News' },
|
|
|
|
# Year Detection # powered by text
|
|
{ :string=>/Powered by <a href='http:\/\/www\.php-fusion\.co\.uk'>PHP-Fusion<\/a> copyright © 2002 - ([\d]{4})/ },
|
|
|
|
# Profile page # profile.php
|
|
{ :text=>"<td align='right' class='tbl1 profile_user_level'><!--profile_user_level-->" },
|
|
{ :text=>"<td align='right' class='profile_user_level tbl1'><!--profile_user_level-->" },
|
|
{ :text=>"class='tbl profile_user_avatar'><!--profile_user_avatar--><img src='images/avatars/" },
|
|
{ :text=>"<td align='right' class='tbl1 profile_user_name'><!--profile_user_name-->" },
|
|
{ :text=>"<td align='right' class='profile_user_name tbl1'><!--profile_user_name-->" },
|
|
|
|
# HTML Comment
|
|
{ :certainty=>75, :regexp=>/<!--counter-->[\d,]+ unique visits</ },
|
|
|
|
# fusion_visited Cookie
|
|
{ :search=>"headers[set-cookie]", :name=>"fusion_visited Cookie", :regexp=>/fusion_visited=/ },
|
|
|
|
]
|
|
|
|
end
|
|
|