Sha256: 64a0af6d2ecd9b0e0a29687c109d3ebf3497c247fc0e56c8e7994f44934fce38
Contents?: true
Size: 1.78 KB
Versions: 6
Compression:
Stored size: 1.78 KB
Contents
# 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 "Acidcat-CMS" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-06 @version = "0.1" @description = "Acidcat ASP CMS" @website = "http://www.acidcat.com/" # Google results as at 2011-03-06 # # 167 for "Powered by Acidcat CMS" # Dorks # @dorks = [ '"Powered by Acidcat CMS"' ] # Matches # @matches = [ # HTML Comment { text: '<!-- Start Acidcat CMS footer information. Note: this code is not to be edited or removed in the free version. -->' }, # Default footer table HTML { text: '<tr><td colspan="2" valign="top" class="ac_menuleftbg" ><table width="100%" cellspacing="0" border="0"><tr>' }, { text: '<tr><td colspan="2" valign="top" class="ac_menuleftbg" ><table cellspacing="0" border="0"><tr>' }, { text: '<td class="ac_footer_menu"> <br /><br /></td></tr></table></td>' }, { text: '<td class="ac_footer_menu"> <br /></td></tr></table></td>' }, # Admin Page # Table CSS class { certainty: 75, text: '<table cellspacing="0" class="ac_admin_main">' }, # Admin Page # Default StyleSheet HTML { text: '<link href="admin/css/admin_import.css" rel="stylesheet" type="text/css" />' }, # Error Page { text: "<br><center><table border=1 class=errorTable><tr><td class='login_view'><img src=images/acidcat_logo.gif><td colspan=1 class='login_view'><b>Acidcat CMS Error" }, # Version Detection # Powered by footer { version: /<a href="http:\/\/www.acidcat.com">Powered by Acidcat CMS v ([\d\.a-z]+)<\/a>/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems