Sha256: a9b45059388259eb558d94a102e3138daf34c8108b9c6f321bf01dc287fdb420
Contents?: true
Size: 1.02 KB
Versions: 6
Compression:
Stored size: 1.02 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 "Russian-Apache" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-04 @version = "0.1" @description = "Russian Apache is based on the popular HTTP server Apache, with additional functionality required for simultaneous support of several cyrillic encodings. Some changes were introduced into the Apache source code as this functionality cannot be ensured by a fully independent module." @website = "http://apache.lexa.ru/english/" # ShodanHQ results as at 2011-08-04 # # 10,842 for rus/PL # Passive # def passive(target) m = [] # Version Detection # HTTP Server Header if target.headers["server"] =~ / rus\/(PL[^\s]+)/ m << { version: $1.to_s } end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems