Sha256: d84235dd77caf3e0515ae33459513286b2b52f8e21c2de5b4e33d68905e68a51
Contents?: true
Size: 976 Bytes
Versions: 6
Compression:
Stored size: 976 Bytes
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 # 2016-04-23 # Andrew Horton # Moved patterns from passive function to matches[] ## WhatWeb::Plugin.define "xproxy" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-13 @version = "0.2" @description = "xproxy" # ShodanHQ results as at 2011-03-13 # # 94 for xproxy -apache -IIS -nginx port:80 # Most results are from Japan @matches = [ # HTTP Server Header { regexp: /^xproxy/, search: "headers[server]" }, # Version Detection # HTTP Server Header { version: /^xproxy\/([^\(]+)\([\d]+\)$/, search: "headers[server]" }, # Date Detection # HTTP Server Header { string: /^xproxy\/[^\(]+\(([\d]+)\)$/, search: "headers[server]" }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems