Sha256: 5ff6e72959256a44dce1a4e18e9807fb33f0c97149fe580ed549315c0c2c0698
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 ## WhatWeb::Plugin.define "Zikula" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-06-12 @version = "0.1" @description = "Zikula is a Web Application Toolkit, which allows you to run impressive websites and build powerful online applications." @website = "http://zikula.org" # Dorks # @dorks = [ '"Powered by Zikula"' ] # Matches # @matches = [ # <meta name="Generator" content="Zikula - www.zikula.org" /> # <meta name="generator" content="Zikula Application Framework - http://zikula.de" /> # <meta name="Generator" content="Zikula - http://zikula.de" /> { name: 'meta generator', text: '<meta name="Generator" content="Zikula - www.zikula.org" />' }, { name: 'meta generator de', text: '<meta name="Generator" content="Zikula - http://zikula.de" />' }, { name: 'meta generator - full', text: '<meta name="generator" content="Zikula Application Framework - http://zikula.de" />' }, # Powered by <a href="http://www.zikula.org">Zikula</a> # <a href="http://community.zikula.org/" title="Powered by Zikula">Zikula</a> { name: 'powered by community text', text: '<a href="http://community.zikula.org/" title="Powered by Zikula">Zikula</a>' }, { name: 'powered by text', text: 'Powered by <a href="http://www.zikula.org">Zikula</a>' } ] end
Version data entries
6 entries across 6 versions & 1 rubygems