"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/activecollab.rb" (15 Jan 2021, 1378 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
The requested HTML page contains a <FORM> tag that is unusable on "Fossies" in "automatic" (rendered) mode so that page is shown as HTML source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
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 # https://www.morningstarsecurity.com/research/whatweb
6 ##
7 Plugin.define do
8 name "activeCollab"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2012-05-02
11 "Andrew Horton" # Version 0.2 by Andrew Horton # Added acpowered.gif logo, and powered by footer
12 ]
13 version "0.2"
14 description "activeCollab - project management & collaboration tool - Requires PHP and MySQL"
15 website "http://www.activecollab.com/"
16
17 # Google results as at 2012-05-02 #
18 # 569 for "powered by activeCollab" "Forgot password" intitle:"Login"
19 # 109 for inurl:"index.php?path_info=login" intitle:"Login"
20
21 # Dorks #
22 dorks [
23 '"powered by activeCollab" "Forgot password" intitle:"Login"'
24 ]
25
26
27
28 # Matches #
29 matches [
30
31 # Login Page # Form
32 { :text=>'<form method="post" id="system_form_2" class="uniForm focusFirstField">' },
33
34 # Login Page # JavaScript # Version Detection
35 { :version=>/if\(\!App\.data\) \{ App\.data = \{\}; \}\s+App\.data\.quick_search_url = "[^"]+";\s+App\.data\.ac_version = "([^"]+)";/ },
36
37 {:name=>"acpowered.gif", :url=>'/public/assets/images/acpowered.gif', :md5=>"ad6152c96454d96f7b8ec78c08bb789b"},
38 {:name=>"powered by footer", :text=>'<p id="powered_by"><a href="http://www.activecollab.com/"'}
39 ]
40
41 end
42