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 "Reinvigorate" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-07-20
9version "0.1"
10description "Reinvigorate measures your influence on the web in real-time. Simple, real-time web analytics + heatmaps."
11website "http://www.reinvigorate.net/"
12
13
14
15# Matches #
16matches [
17
18# HTML Comment
19{ :certainty=>10, :text=>"<!-- Reinvigorate -->" },
20
21# JavaScript src
22{ :text=>'<script type="text/javascript" src="http://include.reinvigorate.net/re_.js"></script>' },
23
24# Extract Account # JavaScript
25{ :certainty=>25, :string=>/reinvigorate\.track\("([a-z\d]{5}-[a-z\d]{10})"\);/ },
26{ :certainty=>10, :string=>/re_\("([a-z\d]{5}-[a-z\d]{10})"\);/ },
27
28]
29
30end
31
32