1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
##
# 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 #
# Updated GHDB match and version detection
##
Plugin.define "phpFreeChat" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-06-12
version "0.2"
description "phpFreeChat is a free, simple to install, fast, customizable and multi languages chat that uses a simple filesystem for message and nickname storage. - homepage: http://www.phpfreechat.net/"
# About 434,000 results for "powered by phpfreechat" @ 2010-06-12
# Dorks #
dorks [
'"powered by phpfreechat"'
]
# Examples #
examples %w|
www.phpfreechat.net/demo/
www.radioambientalfm.com/chat/
www.tvacapulco.com/chat/phpfreechat/
fr.lookotel.com/chat/phpfreechat-1.2/
makina.webou.net/phpfreechat-1.2/
www.fbinjapan.net/chat/
www.anarchywars.com/livechat/
www.nazarenoitatiba.org/chat/
fbc.hearhiscall.com/chat/
www.esam64.com/chat/
helppayit.com/chat/
dynamicenergies.com/phpfreechat/
sultanboys.com/chat/
midsouthweb.com/phpfreechat-1.0-beta9/
www.eskandani.com/chat/
www.kamiedownen.com/chat/
realestate-saltlakecityutah.net
|
matches [
# GHDB Match
{ :ghdb=>'"powered by phpfreechat"', :certainty=>75 },
# Version detection # Default logo HTML
{ :version=>/<img src="http:\/\/www.phpfreechat.net\/pub\/logo[2]*_80x15.gif" alt="PHP FREE CHAT \[powered by phpFreeChat-([\d\.\-a-z]*)\]"/ },
]
end
# An aggressive plugin could check for the existance of a /demo folder.
# The demos still exist on many phpFreeChat isntallations, for example:
# www.radioambientalfm.com/chat/demo/
# www.tvacapulco.com/chat/phpfreechat/demo/
# files.ttr.net.au/demo/
# www.sahl-tec.com/demo/
# This plugin will also detect these demos as instances of phpFreeChat
|