Sha256: 69f53a34c7f6b884ea058286e830965f78b40a20d3539cd4fee9555d01cd14c5
Contents?: true
Size: 1.75 KB
Versions: 6
Compression:
Stored size: 1.75 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 "Zabbix" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-11-25 @version = "0.1" @description = "Zabbix is an enterprise-class open source distributed monitoring solution for networks and applications." @website = "http://www.zabbix.com/" # Google results as at 2011-11-25 # # 229 for "Zabbix * Copyright * by SIA Zabbix" # 196 for inurl:"tr_status.php?sid=" intitle:"refreshed every" # 122 for inurl:"srv_status.php?sid=" intitle:"refreshed every" # Dorks # @dorks = [ '"Zabbix * Copyright * by SIA Zabbix"', 'inurl:"tr_status.php?sid=" intitle:"refreshed every"' ] # Matches # @matches = [ # Version Detection # JavaScript { version: /<script type="text\/javascript" src="jsLoader\.php\?ver=([^\s&]+)&lang=en_[a-zA-Z]{2}"><\/script>/ }, # Version Detection # Powered by footer # 1.8.x { version: /<td class="page_footer_l">[\s]*<a class="highlight" href="http:\/\/www\.zabbix\.com">Zabbix ([^\s&]+) Copyright 2001-20[\d]{2} by SIA Zabbix<\/a><\/td>/ }, # Version Detection # Powered by footer # 1.9.x+ { version: /<a class="highlight" href="http:\/\/www\.zabbix\.com">Zabbix ([^\s]+) Copyright 2001-20[\d]{2} by Zabbix SIA<\/a>/ }, # Version Detection # Powered by footer # early versions { version: /<a href="http:\/\/www\.zabbix\.com" class="highlight">ZABBIX ([^\s<]+)<\/a> Copyright 2001-20[\d]{2} by <a href="http:\/\/www\.zabbix\.com" class="highlight">SIA Zabbix<\/a>/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems