# frozen_string_literal: true ## # 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. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "Musicbox" do @author = "Brendan Coles " # 2011-07-27 @version = "0.1" @description = "Musicbox is a web application for managing a songs database." @website = "http://www.musicboxv2.com/" # Google results as at 2011-07-27 # # 111 for inurl:genre_artists.php # 5 for "Welcome to Musicbox Version" "Administration Control Panel" # Dorks # @dorks = [ 'inurl:genre_artists.php' ] # Matches # @matches = [ # HTML Comment { text: '' }, # CSS { text: '' }, # HTML Comment { text: '' }, # Version Detection # Footer { version: / Musicbox<\/a> Version ([^\s]+)© 20[\d]{2}/ }, # Admin Page # My Account Link { text: "My Account" }, # Admin Page # Version Detection # Heading { version: /
Welcome to Musicbox Version ([^\s]+) Administration Control Panel<\/div>/ }, # Admin Page # Version Detection # Footer { version: /

Musicbox Version ([^\s]+) @ 20[\d]{2} - MusicboxV2\.com<\/a> - Shalwan Entperises<\/div>

/ }, ] end