mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
48 lines
1.5 KiB
Ruby
48 lines
1.5 KiB
Ruby
##
|
|
# 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "iDVR"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-07-20
|
|
# v0.2 # Fixed regex.
|
|
# v0.3 # 2011-02-25 # Updated version detection.
|
|
]
|
|
version "0.3"
|
|
description "iDVR (formerly Devloution Security System) is a video surveillance system for the Linux/X11 platform."
|
|
website "http://code.google.com/p/idvr/"
|
|
# default login: administrator/blank
|
|
|
|
# Google results as at 2010-07-20 #
|
|
# 247 for intitle:iDVR -intitle:"com | net | shop" -inurl:"asp | htm | pdf | html | php | shtml | com | at | cgi | tv"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:iDVR -intitle:"com | net | shop" -inurl:"asp | htm | pdf | html | php | shtml | com | at | cgi | tv"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default Title
|
|
{ :text=>'<title>iDVR</title>' },
|
|
|
|
# Default JavaScript
|
|
{ :regexp=>/ ' codebase="http:\/\/' + szDomainFull + '\/NSIDVRCtrlX.ocx#version=[\d]{1},[\d]{1},[\d]{1},[\d]{1}"\n'\+/ },
|
|
{ :text=>' \' classid="clsid:16A017B9-6CB4-47C7-8E81-6E9396FAC2B6"\\n\' +' },
|
|
{ :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>";/ },
|
|
|
|
# Version Detection # Default Title
|
|
{ :version=>/<title>iDVR (.*)[\d\.]+ \(Build ([\d\.]+)\)<\/title>/, :offset=>1 },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|