1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
##
# 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 "RackCorp-CDN"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-01-30
# v0.2 # 2011-03-06 # Updated OS detection.
"Andrew Horton", # v0.3 # 2016-04-23 # Moved patterns from passive function to matches[].
]
version "0.2"
description "RackCorp Content Delivery Network - RackCorp is the preferred hosting provider for critical websites around the world. They specialise in high-uptime, high-reliability, and fast hosting services. Their systems serve some very large content delivery networks (CDN's), allowing them to serve Over a Petabyte of data every month globally from a variety of locations including Australia, US, UK, Germany, and Canada."
website "http://www.rackcorp.com/"
# ShodanHQ results as at 2011-01-30 #
# 50 for rackcorpcdn
# Australia 21 # United States 14 # Germany 10 # United Kingdom 4 # India 1 #
matches [
# HTTP Server Header # Server
{ :regexp=>/^[\s]*rackcorpcdn/, :search=>"headers[server]" },
# HTTP Server Header # Server and OS Detection #
# Web servers are Apache or Nginx # OS is Linux
# As per : http://blog.rackcorp.com/?p=31
{ :version=>/^[\s]*rackcorpcdn\/([\d\.]{3,6})/, :search=>"headers[server]", :string=>"Apache or Nginx", :os=>"Linux" },
]
end
|