Sha256: e0643bf7ba4672400c0b5b78b45381b942814b8355f3710327f30789e60ce5d2
Contents?: true
Size: 1.52 KB
Versions: 6
Compression:
Stored size: 1.52 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 ## # Version 0.3 # 2016-04-23 # Andrew Horton # Moved patterns from passive function to matches[] ## # Version 0.2 # 2011-03-06 # # Updated OS detection ## WhatWeb::Plugin.define "RackCorp-CDN" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-01-30 @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
Version data entries
6 entries across 6 versions & 1 rubygems