mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
43 lines
1.3 KiB
Ruby
43 lines
1.3 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 "activeCollab"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-05-02
|
|
"Andrew Horton" # Version 0.2 by Andrew Horton # Added acpowered.gif logo, and powered by footer
|
|
]
|
|
version "0.2"
|
|
description "activeCollab - project management & collaboration tool - Requires PHP and MySQL"
|
|
website "http://www.activecollab.com/"
|
|
|
|
# Google results as at 2012-05-02 #
|
|
# 569 for "powered by activeCollab" "Forgot password" intitle:"Login"
|
|
# 109 for inurl:"index.php?path_info=login" intitle:"Login"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by activeCollab" "Forgot password" intitle:"Login"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Login Page # Form
|
|
{ :text=>'<form method="post" id="system_form_2" class="uniForm focusFirstField">' },
|
|
|
|
# Login Page # JavaScript # Version Detection
|
|
{ :version=>/if\(\!App\.data\) \{ App\.data = \{\}; \}\s+App\.data\.quick_search_url = "[^"]+";\s+App\.data\.ac_version = "([^"]+)";/ },
|
|
|
|
{:name=>"acpowered.gif", :url=>'/public/assets/images/acpowered.gif', :md5=>"ad6152c96454d96f7b8ec78c08bb789b"},
|
|
{:name=>"powered by footer", :text=>'<p id="powered_by"><a href="http://www.activecollab.com/"'}
|
|
]
|
|
|
|
end
|
|
|