# 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-02-25 # # Updated version detection ## WhatWeb::Plugin.define "EZCMS" do @author = "Brendan Coles " # 2010-08-28 @version = "0.2" @description = "Building your own website is easy with the EZ Websites Builder" @website = "http://www.ezwebsites.com.au" # Google results as at 2010-08-28 # # 20 for "powered by EZCMS" -Vulnerabilities # Dorks # @dorks = [ '"powered by EZCMS" -Vulnerabilities' ] # Matches # @matches = [ # Powered by text { text: ' Site Powered by EZCMS' }, # Admin page html { text: '
' }, # Admin logo { md5: '3f9861ab3124420694f663c82bf770ab', url: 'admin/images/headerright.png' }, # Default title { text: 'EZCMS Content Management System' }, # Version Detection # Admin page { version: /
EZCMS ([\d\.]+) / }, # Version Detection # Powered by text { version: /Powered by EZCMS ([\d\.]+)<\/a>/ }, ] end