File: TangoCMS.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (56 lines) | stat: -rw-r--r-- 1,461 bytes parent folder | download
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
##
# 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
##
Plugin.define "TangoCMS" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-07-27
version "0.1"
description "TangoCMS is an open source (GNU/GPL 2.1) PHP Content Management System (CMS). - Homepage: http://tangocms.org/"

# ShodanHQ results as at 2011-07-27 #
# 75 for ZULA_6666cd76f96956469e7be39d750cc7d9

# Google results as at 2011-07-27 #
# 154 for "Powered by TangoCMS"

# Dorks #
dorks [
'"Powered by TangoCMS"'
]

# Examples #
examples %w|
demo.tangocms.org
nilsander.com
milnix.org
212.38.88.221
213.210.4.6
77.107.81.237
|

# Matches #
matches [

# Powered by text
{ :regexp=>/Powered by <a href="http:\/\/(www\.)?tangocms\.org" title="(Open Source CMS|TangoCMS)">TangoCMS<\/a>\./ },

# Login input
{ :text=>'<input type="checkbox" id="sessionRemember" name="session[remember]" value="1" checked="checked"> <label class="horizontal" for="sessionRemember">Remember me?</label>' },

]

# Passive #
def passive
	m=[]

	# ZULA_6666cd76f96956469e7be39d750cc7d9 Cookie
	# 6666cd76f96956469e7be39d750cc7d9 is the md5 hash for "/"
	m << { :name=>"ZULA_6666cd76f96956469e7be39d750cc7d9 Cookie" } if @headers["set-cookie"] =~ /ZULA_6666cd76f96956469e7be39d750cc7d9=[^;^\s]+;/

	# Return passive matches
	m
end
end