Sha256: b57e76e7412551330cfc30d53a3d3dec4efdc31e416ff1822ad7089af168063a
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 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 "IBM-Web-Traffic-Express-Caching-Proxy" do @author = "Brendan Coles <bcoles@gmail.com>" # 2012-08-12 @version = "0.1" @description = "IBM Web Traffic Express - proxy, caching and filtering" @website = "http://www.software.ibm.com/webservers/wte/" # ShodanHQ results as at 2012-08-12 # # 755 for IBM-PROXY-WTE # Matches # @matches = [ # Version Detection # HTTP Server Header { search: "headers[server]", version: /^IBM-PROXY-WTE\/([^\s]+)/ }, # /admin-bin/webexec/wte.html # Hostname Detection { url: "/admin-bin/webexec/wte.html", string: /<a href="https?:\/\/([^\/^"]+)(:\d+)?\/"><img src="https?:\/\/([^\/^"]+)(:\d+)?\/Docs\/docmast\.gif" alt="Caching Proxy Version ([^"]+)"><\/a>/ }, # /admin-bin/webexec/wte.html # Version Detection { url: "/admin-bin/webexec/wte.html", version: /<a href="https?:\/\/([^\/^"]+)(:\d+)?\/"><img src="https?:\/\/([^\/^"]+)(:\d+)?\/Docs\/docmast\.gif" alt="Caching Proxy Version ([^"]+)"><\/a>/, offset: 4 }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems