mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
35 lines
1.4 KiB
Ruby
35 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 "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
|
|
|