# 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 ## # Version 0.2 # 2011-03-02 # # Updated version detection ## WhatWeb::Plugin.define "X10media-MP3-Search-Engine" do @author = "Brendan Coles " # 2010-08-01 @version = "0.2" @description = "X10media MP3 search engine" @website = "http://www.x10media.com/mp3-script.php" # Google results as at 2010-08-01 # # 134 for "powered by x10media.com a MP3 Search Script" # 196 for "This search engine is in no way intended for illegal downloads. " # Dorks # @dorks = [ '"powered by x10media.com a MP3 Search Script"', '"This search engine is in no way intended for illegal downloads. "' ] # Matches # @matches = [ # Meta Tags { text: ' ', certainty: 75 }, { text: ' ', certainty: 75 }, # Default Title { text: "x10media Mp3 Search Engine" }, # Powered by text { text: 'Powered by x10media.com a MP3 Search Script' }, # Database Error { text: 'Cannot connect to the database. Possibly, the X10Media Mp3 Search engine is not installed. Click here, to install it.' }, # Version Detection { version: // }, { version: // }, { version: // }, { version: // }, { version: /x10media`s Mp3 Search Engine V\.([\d\.]+)[\ Installer]*<\/title>/ }, ] end