forked from urbanadventurer/WhatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivecollab.rb
42 lines (32 loc) · 1.34 KB
/
activecollab.rb
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
##
# 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 <[email protected]>", # 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