mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
51 lines
1.2 KiB
Ruby
51 lines
1.2 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "ChiliProject"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-07-24
|
|
]
|
|
version "0.1"
|
|
description "ChiliProject is a web based project management system."
|
|
website "https://www.chiliproject.org/"
|
|
|
|
# ShodanHQ results as at 2012-07-24 #
|
|
# 25 for _chiliproject_session
|
|
|
|
# Google results as at 2012-07-24 #
|
|
# 113 for "Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by link
|
|
{ :text=>'Powered by <a href="https://www.chiliproject.org/">ChiliProject</a>' },
|
|
|
|
# Meta Description
|
|
{ :text=>'<meta name="description" content="ChiliProject" />' },
|
|
|
|
# HTML Comment
|
|
{ :text=>'<!-- page specific tags -->' },
|
|
|
|
# Help Link # Version Detection
|
|
{ :version=>/<li><a href="https:\/\/www\.chiliproject\.org\/help\/v([^\s^"]+)" class="help">/ },
|
|
|
|
# Set-Cookie # _chiliproject_session
|
|
{ :search=>"headers[set-cookie]", :regexp=>/_chiliproject_session=/ },
|
|
|
|
]
|
|
|
|
end
|
|
|