1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "ChiliProject" do
8author "Brendan Coles <bcoles@gmail.com>" # 2012-07-24
9version "0.1"
10description "ChiliProject is a web based project management system."
11website "https://www.chiliproject.org/"
12
13# ShodanHQ results as at 2012-07-24 #
14# 25 for _chiliproject_session
15
16# Google results as at 2012-07-24 #
17# 113 for "Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org
18
19# Dorks #
20dorks [
21'"Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org'
22]
23
24
25
26# Matches #
27matches [
28
29# Powered by link
30{ :text=>'Powered by <a href="https://www.chiliproject.org/">ChiliProject</a>' },
31
32# Meta Description
33{ :text=>'<meta name="description" content="ChiliProject" />' },
34
35# HTML Comment
36{ :text=>'<!-- page specific tags -->' },
37
38# Help Link # Version Detection
39{ :version=>/<li><a href="https:\/\/www\.chiliproject\.org\/help\/v([^\s^"]+)" class="help">/ },
40
41# Set-Cookie # _chiliproject_session
42{ :search=>"headers[set-cookie]", :regexp=>/_chiliproject_session=/ },
43
44]
45
46end
47
48