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 "StatusNet" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-04-21
9version "0.1"
10description "StatusNet's Open Source social software enables organizations to collaborate, share insights and build relationships in real time."
11website "http://status.net/"
12
13# 104 for "powered by StatusNet version" inurl:"/main/version" -filetype:html
14# 231 for inurl:"index.php" "It runs the StatusNet microblogging software, version *, available under the GNU Affero General Public License. Site content license"
15
16# Dorks #
17dorks [
18'"powered by StatusNet version" inurl:"/main/version" -filetype:html'
19]
20
21
22
23# Matches #
24matches [
25
26# Version detection # Powered by footer
27{ :version=>/<p>This site is powered by <a href="http:\/\/status\.net\/">StatusNet<\/a> version ([^\s]+),/ },
28
29# Version detection # GPL footer
30{ :version=>/It runs the <a href="http:\/\/status\.net\/">StatusNet<\/a> microblogging software, version ([^\s]+), available under the <a / },
31
32]
33
34end
35
36
37