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 "ACTi-Web-Configurator" 9 authors [ 10 "Brendan Coles <bcoles@gmail.com>", # 2012-04-27 11 ] 12 version "0.1" 13 description "ACTi Web Configurator - camera web interface" 14 website "http://www.acti.com/home/index.asp" 15 16 # Google results as at 2012-04-27 # 17 # 69 for intitle:"Web Configurator" "ACTi Corporation All Rights Reserved" 18 # 28 for inurl:"cgi-bin/videoconfiguration.cgi" 19 20 # Dorks # 21 dorks [ 22 'intitle:"Web Configurator" "ACTi Corporation All Rights Reserved"' 23 ] 24 25 26 27 # Matches # 28 matches [ 29 30 # Login Page # Title # Version Detection 31 { :version=>/<title>Web Configurator - Version ([^\s]*\s?v[^<]+)<\/title>/ }, 32 33 # Login Page # Login Form 34 { :regexp=>/<form name="frm(LOGIN|Config)" method="POST" enctype="multipart\/form-data" action="videoconfiguration\.cgi">/ }, 35 36 # Login Page # Year Detetcion # Footer 37 { :string=>/<tr class="layout_footer_bgcolor">\s*<td width="776"[^>]*>\s+Copyright@2003-(20[\d]{2}) ACTi Corporation All Rights Reserved/ }, 38 39 ] 40 41 end 42