mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
38 lines
1.4 KiB
Ruby
38 lines
1.4 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Traffic-Inspector"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-10-30
|
|
"Andrew Horton", # v0.2 # changed a match so it doens't use both url and status as this is leading to false positives because of a bug in the core in 0.4.8-dev
|
|
]
|
|
version "0.2"
|
|
description "An integrated gateway solution for controlling access to the Internet and for providing data transmission services."
|
|
website "http://www.trafinsp.com/products/Traffic-Inspector/"
|
|
|
|
# ShodanHQ results as at 2011-10-30 #
|
|
# 141 for Traffic inspector
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Version Detection # HTTP Server Header
|
|
{ :search=>"headers[server]", :version=>/^Traffic [Ii]nspector HTTP\/FTP\/Proxy server \(([^\)]+)\)$/ },
|
|
|
|
# 403 Page # Hostname (?)
|
|
|
|
#{ :url=>"/", :status=>403, :string=>/<title>Error<\/title><\/head><body><h1>403 - Forbidden<\/h1><hr( class="footer")?>Traffic [Ii]nspector HTTP\/FTP\/Proxy server \([^\)]+\)<br>([^<^\/]+)\s*\/?\s*[\d]{2}\.[\d]{2}\.[\d]{2}/, :offset=>1 },
|
|
|
|
{ :url=>"/", :string=>/<title>Error<\/title><\/head><body><h1>403 - Forbidden<\/h1><hr( class="footer")?>Traffic [Ii]nspector HTTP\/FTP\/Proxy server \([^\)]+\)<br>([^<^\/]+)\s*\/?\s*[\d]{2}\.[\d]{2}\.[\d]{2}/, :offset=>1 },
|
|
|
|
]
|
|
|
|
end
|
|
|