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##
7# Version 0.3 # 2011-02-25 #
8# Updated version detection
9##
10# Version 0.2 #
11# Fixed regex
12##
13Plugin.define "iDVR" do
14author "Brendan Coles <bcoles@gmail.com>" # 2010-07-20
15version "0.3"
16description "iDVR (formerly Devloution Security System) is a video surveillance system for the Linux/X11 platform."
17website "http://code.google.com/p/idvr/"
18# default login: administrator/blank
19
20# Google results as at 2010-07-20 #
21# 247 for intitle:iDVR -intitle:"com | net | shop" -inurl:"asp | htm | pdf | html | php | shtml | com | at | cgi | tv"
22
23# Dorks #
24dorks [
25'intitle:iDVR -intitle:"com | net | shop" -inurl:"asp | htm | pdf | html | php | shtml | com | at | cgi | tv"'
26]
27
28
29
30# Matches #
31matches [
32
33# Default Title
34{ :text=>'<title>iDVR</title>' },
35
36# Default JavaScript
37{ :regexp=>/	  	'	  codebase="http:\/\/' + szDomainFull + '\/NSIDVRCtrlX.ocx#version=[\d]{1},[\d]{1},[\d]{1},[\d]{1}"\n'\+/ },
38{ :text=>'		\'	  classid="clsid:16A017B9-6CB4-47C7-8E81-6E9396FAC2B6"\\n\' +' },
39{ :regexp=>/		monitorDiv.innerHTML = "<object id='monitorObject' style='display:none' classid='clsid:574B47E8-A366-4AB9-B2EA-57F145CA3780' codebase='lib\/monitor.cab#version=[\d]{1},[\d]{1},[\d]{1},[\d]{1}' VIEWASTEXT><\/object>";/ },
40
41# Version Detection # Default Title
42{ :version=>/<title>iDVR (.*)[\d\.]+ \(Build ([\d\.]+)\)<\/title>/, :offset=>1 },
43
44]
45
46end
47
48
49