Sha256: 63a60d4771e8efac73433ced131fa1ea7f29f4eb9ea2d689610b7c025a686b79
Contents?: true
Size: 1.58 KB
Versions: 6
Compression:
Stored size: 1.58 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 ## # Version 0.2 # 2011-02-24 # # Updated version detection ## WhatWeb::Plugin.define "SyndeoCMS" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-08-06 @version = "0.2" @description = "A Content Management System (CMS) for primary schools, which helps you manage and maintain your website. It can also be a very usefull CMS for small companies or non profit organizations. " @website = "http://www.syndeocms.org" # Google results as at 2010-08-06 # # 117 for "powered by SyndeoCMS" # Dorks # @dorks = [ '"powered by SyndeoCMS"' ] # Matches # @matches = [ # Powered by text { regexp: /Powered by <a href="http:\/\/www.syndeocms.org[\/]?" target="_blank">/i }, { regexp: /Powered by <a href="http:\/\/www.syndeocms.org[\/]?" title="SyndeoCMS">/i }, { regexp: /Powered by <a href="http:\/\/www.syndeocms.org[\/]?"[^>]*>SyndeoCMS<\/a>/i }, # Site created with text { regexp: /Site created with <a href="http:\/\/www.syndeocms.org[\/]?">SyndeoCMS<\/a>/ }, # Version Detection # Powered by text { version: /<div class="meta"><center>Powered by <a href="http:\/\/www.syndeoCMS.org\/" target="_blank">SyndeoCMS ([\d\.]+)<\/a>/ }, # HTML Comment { text: "<!-- Please don't remove my credits! I worked hard to create this theme and distribute it freely. Thanks! -->" }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems