# 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-30 # # Updated regex ## WhatWeb::Plugin.define "Zimplit-CMS" do @author = "Brendan Coles " # 2010-10-11 @version = "0.2" @description = "Zimplit CMS: The easiest Open Source Content Management System for small web- and minisites" @website = "http://www.zimplit.com/" # Google results as at 2010-10-11 # # 187 for "powered by Zimplit CMS" # Dorks # @dorks = [ '"powered by Zimplit CMS"' ] # Matches # @matches = [ # Javascript { regexp: /]+src="http:\/\/(client\.zimplit|www\.zimplit|zimplit)\.(org|com)\/(users\/publicUser|editor)\/(jquery|ZimgZoomer|ZZMenu)\.js"[^>]*><\/script>/i }, # Version Detection # Javascript { version: /]+src="http:\/\/(client\.zimplit|www\.zimplit|zimplit)\.(org|com)\/users\/publicUser_v([\d\._]+)\/(jquery|ZimgZoomer|ZZMenu)\.js"[^>]*><\/script>/i, offset: 2 }, # HTML Comment { text: '' }, # HTML Comment { text: "" }, # Powered by text { regexp: /]+href="http:\/\/(www\.)?zimplit\.org\/?"[^>]*>Powered( | )by( | )Zimplit( | )CMS<\/a>/i }, # Powered by text { regexp: /Powered( | )by( | )]+href="http:\/\/(www\.)?zimplit\.org\/?"[^>]*>Zimplit( | )CMS<\/A>/i }, ] end