Files
2021-02-05 01:58:26 +11:00

54 lines
1.5 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 "TCMS"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2010-08-29
"Andrew Horton", # v0.2 # 2016-04-17 # Added website parameter and description.
]
version "0.2"
description "Content management system by Tanzarine Technology Ltd"
website "http://www.tanzarine.co.uk/Articles/cms.html"
# 26 results for "powered by TCMS" @ 2010-08-28
# Dorks #
dorks [
'"powered by TCMS"'
]
matches [
{ :ghdb=>'"powered by TCMS"', :certainty=>75 },
]
passive do
m=[]
# TCMS_SESS_ID cookie
m << {:name=>"TCMS_SESS_ID Cookie" } if @headers["set-cookie"] =~ /TCMS_SESS_ID=/
# 2.0+ powered by text
if @body =~ / <a style="color:#999;" href="http:\/\/www.arsmedia-nidda.de">arsmedia<\/a>/
if @body =~ /powered by TCMS v[0-9\.]+ &copy; [0-9]{4} by/
version=@body.scan(/powered by TCMS v([\d\.]+) &copy; [0-9]{4} by/).flatten
m << {:version=>version}
end
end
# 3.0+ Powered by text
if @body =~ /<span class="copyright">Powered by tCMS v[\d\.]+ &copy;[0-9]{4} Tanzarine Technology Ltd<\/span>/
version=@body.scan(/<span class="copyright">Powered by tCMS v([\d\.]+) &copy;[0-9]{4} Tanzarine Technology Ltd<\/span>/)[0][0]
m << {:version=>version}
end
m
end
end